cancel
Showing results for 
Search instead for 
Did you mean: 

How to debug a ABAP Routine which is in Infopackage Data selection Tab

Former Member
0 Kudos

Hi ,

Please let me know How to debug a ABAP Routine which is in Infopackage Data selection Tab.

Accepted Solutions (0)

Answers (2)

Answers (2)

andrea_previati
Contributor
0 Kudos

Hi

To debug an abap routine insert in your code this:

DATA WWW.

WHILE WWW = ''.

END WHILE.

After this you can load your infopackage and go on SM50 --> debug program. This will take you to the right breakpoint in the code.

Hope it helps

krzysztof_konitz4
Contributor
0 Kudos

Hi,

You can try to create infinite loop:

DATA: STOP.

WHILE STOP IS INITIAL. ENDWHILE.

Start InfoPackage and then go to SM50 and swich on debugging for your process. Then in debugger you can change value of STOP variable to skip the loop.

Krzys

Former Member
0 Kudos

Hi expert,

it looks worthy for this question. but i din't get it properly.., can you explain it detailly...,

thanks in advance...,

Regards

anil

krzysztof_konitz4
Contributor
0 Kudos

Hi,

But where did you encoutered problem ?

Krzys