Application Development and Automation 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: 
Read only

Debug an inline expression

vulturas4
Explorer
0 Likes
1,062

Hello dear community,

while having a debugging session I came across the following problem:

itab_hus_to_check = value #( for <fs_hu_in_analysis>
                             in itab_hu_in_analysis
                             where ( labeltyp = abap_true and uevel <> space )
( venum = <fs_hu_in_analysis>-uevel ) ).

Is there any possibility to debug the for-part? I would like to take a look at the interation steps inside the loop.

Thank you in advance.

Kind regards

Jürgen

2 REPLIES 2
Read only

FredericGirod
Active Contributor
987

Did you try to apply the method used for Macro ?

https://blogs.sap.com/2013/11/17/single-step-debugging-on-macro/

Read only

vulturas4
Explorer
0 Likes
987

Thank you, frdric.girod

I am going to give it a try.