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

Debugging tip:

Former Member
0 Likes
805

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

7 REPLIES 7
Read only

Former Member
0 Likes
783

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.

Read only

0 Likes
783

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

Read only

0 Likes
783

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.

Read only

Former Member
0 Likes
783

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

Read only

0 Likes
783

So how to go the screen scope area that u r saying ! it is huge program and seeing even more lines while debugging

Raj

Read only

0 Likes
783

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

Read only

0 Likes
783

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.