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

Internal table data is not displaying in Debug mode. please quickly respond

Former Member
0 Likes
1,363

Hi Guru's,

I have a typical issue. I am using normal debugger.

in the debug mode if I cross the select statement then it shows the internal table

i_itab[] =Table[4x2212]

if I double click on i_itab[] it is not displaying the data.

but if I say i_itab[1] or i_itab[4] i.e. row wise it is displaying the data. why this behaviour in debugging occurs, is that any setting needs to be made.

Thanks in Advance,

Sagar.

4 REPLIES 4
Read only

Former Member
0 Likes
939

In the debug mode, Click on the "Tables" push button and just write your internal table name i_itab or i_itab[].

Otherwise remove [1] or [4] with the i_itab. A grid icon will appear along with the table name and click on it to display all the contents.

If you specify i_itab[1], it will display first record of internal table and i_itab[4] will display 4th record of internal table

Read only

former_member404244
Active Contributor
0 Likes
939

Hi,

i_itab[] means the body of itab..it seems i_itab doesn't have any header line...

in debug mode just gibe i_itab and then double click,u will get a table format icon on the left handside,click on that u will get the entries..

rewrad if helpful.

Regards,

Nagaraj

Read only

0 Likes
939

Hi Nagaraj,

I still not see the data, but if I say i_itab[1] then my first row is visible.

Thanks in Advance,

Sagar

Read only

0 Likes
939

Hi,

try like this

put the cursor on i_itab in the program and press on tables button and see..

Regards,

Nagaraj