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

Tables used

Former Member
0 Likes
1,206

How to list all the tables used in a ABAP program.

For example if an ABAP program uses 10 SAP talbes , and these tables are not declared in the beining of the program , how can we list all the tables used.

How to list all the tables used in a ABAP program.

For example if an ABAP program uses 10 SAP talbes , and these tables are not declared in the beining of the program , how can we list all the tables used.

10 REPLIES 10
Read only

Former Member
0 Likes
1,168

You mean, do you like to see all the list of tables which are used in one program ?

  • By searching the below words you can see ...

1) Tables

2) From

3) Like

if want to see all the SAP tables then you can check DD02L table.

regards,

  • Dj

reward for all useful answers.

Read only

Former Member
0 Likes
1,168

Do the <b> SQL trace so that it will list all the table used in the Program</b> .

the tcode for <b>SQL trace is ST05</b> .. <b>do active</b> of your trace ... <b>goto SE30 .. run your Program ...</b>

Then <b>come to ST05 ...deactivate the trace</b> ..<b> Display the trace</b> ...

<b>YOU WILL get the list of the Tables in the Program in the Second Column </b> .

reward points if it is usefull...

Girish

Read only

Former Member
0 Likes
1,168

Use SE49 Transaction -> it will show list of tables for partcular program or Transaction

Thanks

Seshu

Read only

0 Likes
1,168

se49 doesnt exists.

Read only

0 Likes
1,168

there didn't exit the Transaction SE49.

Rajiv Gupta did said GO TO SE38 -> Key in your program name

Menu - UTILITIES -> Enviroment Analysis (SHIFT F4).

is the creact answer.

Read only

Former Member
0 Likes
1,168

clear ur requirement, there is no use of sql trace its for the performance issue.

also se49 doesnt exits.

use normal search for tables.

also its better to declare the tables at the beginning of the program coz its one

of the form of standarad coding

thnkx

bhanu

Read only

Former Member
0 Likes
1,168

Hi,

To find the table which are used in the program or transaction u can go to

<b>Tcode SE49</b>

Thanks,

Madhukar

Read only

Former Member
0 Likes
1,168

Se49 doesnt exist and SQL trace is also not very helpful , so I guess the standard search is the only alternative

Read only

Former Member
0 Likes
1,168

Did u get any solution for your question

then mail to [email protected]

Read only

0 Likes
1,168

GO TO SE38 -> Key in your program name

Menu - UTILITIES -> Enviroment Analysis (SHIFT F4).

This sud help you ...