You can try something like
data: lv_tabix TYPE string,
lv_struct TYPE string.
loop.
lv_tabix = sy-tabix.
CLEAR lv_struct.
CONCATENATE 'wa' lv_tabix INTO lv_struct.
ASSIGN COMPONENT x OF struct (lv_struct) INTO <fs>.
endloop.
Vlad, to set one watchpoint, during the debugger, select one variable and in the menu bar click in Run > Toggle Watchpoint.
You can chose the values condition in Variables Box.
Hello Saurabh,
it's not a watchpoint, it's only a breakpoint.
Vlad, to set one watchpoint, during the debugger, select one variable and in the menu bar click in Run > Toggle Watchpoint.
You can chose the values condition in Variables Box.