‎2008 Mar 17 10:34 AM
‎2008 Mar 17 10:40 AM
Hi,
I think u r askng for Internal table.
To debug the itab set a break point on select stmt.
Then while executing it, that 'll reach that point and select Tables option on the top push button... it 'll shw a space to enter the tablle name there u enter the itab name and press enter....
then press F5 it will process step by step.... like this u hav to debug.
Thanks,
Arunprasad.P
<REMOVED BY MODERATOR>
Edited by: Alvaro Tejada Galindo on Mar 18, 2008 6:04 PM
‎2008 Mar 17 10:40 AM
Hi,
I think u r askng for Internal table.
To debug the itab set a break point on select stmt.
Then while executing it, that 'll reach that point and select Tables option on the top push button... it 'll shw a space to enter the tablle name there u enter the itab name and press enter....
then press F5 it will process step by step.... like this u hav to debug.
Thanks,
Arunprasad.P
<REMOVED BY MODERATOR>
Edited by: Alvaro Tejada Galindo on Mar 18, 2008 6:04 PM
‎2008 Mar 17 10:40 AM
‎2008 Mar 17 10:42 AM
harsha meka
Can you be a little more specfic please.
The screen table that contains the fields and attributes?
A table that you have on the screen? as in ranges for a selection screen? or a data table as in a table control?
What is it you are trying to debug?
or is this the info you're asking for?
LOOP AT SCREEN.
IF screen-group1 EQ 'ALL'
OR screen-group1 EQ 'FIN'.
screen-input = 0.
screen-invisible = 1.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Put a break point in here somewhere perhaps.
‎2008 Mar 18 2:36 PM
Hi Harsha,
If you are talking about the SCREEN table that controls the screen attributes, while in the debugger screen try the following path,
GOTO-> System Areas-> SCREEN table.
There you will be able to check the values of the screen table you are using in the program.
For debugging a normal internal table, you already have the replies from the experts