‎2007 Dec 05 4:39 PM
Hi,
I am debugging ABAP program !
i wish to enter the Internal table name in debug and want to see what values it have!
But when ever i enter the table name it says specified table not found!
I tried ( F5, F6, F7 and so on ) but i never i get what i want!
am i missing something?
Raj
‎2007 Dec 05 4:45 PM
Hi raj,
Instead of type the Internal Table try to double click the Internal table when the system is in Debugging mode.
I think you typed Internal table name wrongly.
Thanks,
Reward If Helpful.
‎2007 Dec 05 4:50 PM
Hello,
I am not even seeing the internal table name in the debugging screen!
i just went to debug mode for the program and exceuted and run several times the F5. i never seen the internal table i am looking for
Raj
‎2007 Dec 05 4:53 PM
Hi Raj,
So you declared one Internal table in SE38 and you couldn't see the Internal table at Debugging.
You do One thing. Put Break-point before the Internal table,
For Ex :
Append wa to Itab.
break-point.
Thanks,
Reward If Helpful.
‎2007 Dec 05 4:47 PM
Hi,
Only those data structures and data variables including internal table will be visible in debugging which is active in the current debugging session or whos visibility is in scope of the program being debugged.
If you enter a table name which is not in scope of the program you will get that message.
Cheers
VJ
‎2007 Dec 05 5:08 PM
So how to go the screen scope area that u r saying ! it is huge program and seeing even more lines while debugging
Raj
‎2007 Dec 05 5:31 PM
Hi ,
Let put it this way:
I actually want to debug a subroutine which is present as include in my original program!
we won't get include program code in debug screen?
Raj
‎2007 Dec 05 5:39 PM
Put a break-point in the subroutine and then you will be able to see all the contents. Make sure your internal table is defined before the INCLUDE statement.