Hi,
The ABAP debugger does not give the actual name of the table type in the variable list.
Lets say I have the following report:
REPORT zspoil.
" Test Program -> no logic intended
DATA : lt_flight TYPE TABLE OF sflight,
ls_flight TYPE sflight.
SELECT * FROM sflightUP TO 2 ROWS
INTO TABLE lt_flight.
LOOP AT lt_flight INTO ls_flight.
ENDLOOP.
* REFRESH lt_flight.
WRITE ls_flight-carrid.
Now when I debug this and open lt_flight in the variable list, the absolute type field has a value %_T00004S00000000O0000012016
Is there any way I can make sense of this field. This value remains the same if I run the program, again.
I was hoping to deduce the actual DDIC name from this value. I need it for a script I am building.
Any thoughts, anyone?
Regards,
Setu