Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How is it possible to debug system call in sap?

former_member525851
Participant
0 Kudos

Trying to read data from URL. Below is the code which returns code = 302 instead of 200(Success).

system-call ict
did
ihttp_scid_get_status
parameters
m_c_msg " > c handle
code " < status code
reason " < status reason

m_last_error.

The above code gets executed even with F5 while debugging. Requesting experts to please throw some light on this.

Gone through some articles where it mentions, it is C code written at Kernel level so it is not possible to debug in ABAP editor.

1 ACCEPTED SOLUTION
6 REPLIES 6

former_member525851
Participant
0 Kudos

Hi Folks,

So no one got any answer how to resolve the issue?

pokrakam
Active Contributor

Your last paragraph is the correct answer.

former_member525851
Participant
0 Kudos

Thanks for your advice. I will surely take care of it from next time.

Sandra_Rossi
Active Contributor

You'd like to debug SAP, but the problem is not in SAP.

So, take the HTTP status code (302), and try to understand what's going on: https://en.wikipedia.org/wiki/HTTP_302

hagit
Active Participant
0 Kudos

sandra.rossi thank you for your answer. It helped me to understand our problem.