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 in debug mode

FredericGirod
Active Contributor
0 Likes
359

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

2 REPLIES 2
Read only

FredericGirod
Active Contributor
0 Likes
336

ITAB in the Field System ..

but little hard to understand

Read only

Former Member
0 Likes
336

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.