2006 Mar 16 9:34 AM
Hi,
there is a way to find all the internal tables open by each program (or globaly) in debug mode ? Like the System Field -> Memories that give you the list of the EXPORT to mem that the programs have done.
The goal is to have the list of data into the memory of the Abap program.
Rgd
Frédéric
2006 Mar 16 9:40 AM
2006 Mar 16 11:35 AM
Hello,
If you are looking for just informaiton then u need to go into GoTo->System Areas->ITAB-HEADS. In this lookout for lines with DATA. These are all the list of tables which are accessed in the program. The name of the program is also associated with it.
For e.g
\PROGRAM=SAPMM06E\DATA=POT[] indicates internal table POT available in the program SAPMM06E.
\PROGRAM=SAPMSSY3\DATA=ITAB_TABLE_HISTORY[] indicates internal table ITAB_TABLE_HISTORY in the porgram SAPMSSY3.