‎2007 Oct 12 8:22 AM
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.
‎2007 Oct 12 8:26 AM
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
‎2007 Oct 12 8:26 AM
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
‎2007 Oct 12 8:41 AM
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
‎2007 Oct 12 8:47 AM
Hi,
try like this
put the cursor on i_itab in the program and press on tables button and see..
Regards,
Nagaraj