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 used by sap in a program

0 Likes
905

Hi,

I want to know the list of internal tables used in a program (including sap program).

while debugging i want to view the data stored in it.

I know the internal tables used by me. Before loading the program sap will load some information into internal table. How to know that.

Advance Thanks.

Hi,

I want to know the list of internal tables used in a program (including sap program).

while debugging i want to view the data stored in it.

I know the internal tables used by me. Before loading the program sap will load some information into internal table. How to know that.

Advance Thanks.

5 REPLIES 5
Read only

GauthamV
Active Contributor
0 Likes
764

hi,

use this function module.

GET_TABLES.

This will give u all structures and tables used in a program .

Read only

Former Member
0 Likes
764

Bala,

check table D010TAB

Amit.

Read only

Former Member
0 Likes
764

Hello

1. SE80 - Syntax list of tables

2. ST05 - Dynamic list of tables

Read only

matt
Active Contributor
0 Likes
764

Internal tables, not transparent ones.

In the old debugger, goto->system areas->internal information and look ITAB_HEADS. This will show you the name of the tables in the system. SYMBDATANM will show you all variables in memory.

In the new debugger, it's even easier. There's a global tab in the variables area, that tells you all variables in memory. And you can see the variable type - i.e. if it is a table.

matt

Read only

0 Likes
764

Dear Amit and Ghautham,

Thro your reply I can find tables and strutures used in a program.

My question is , what are the internal tables used by Sap.

ie Internal table using DATA . SAP will declare a Internal table to load some data.

BM