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

T-code

Former Member
0 Likes
678

Hi ,

Is there any T-code available in ECC version to find the all tables used for a given transaction?For example...for T-code XK01 i want to find waht are all tables updated during XK01?

Regards

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
629

Hi,

You can do a TRACE using transaction ST05. Set the trace on & run your transaction. Once you are through, STOP the trace & list it.

Best regards,

Prashant

5 REPLIES 5
Read only

Former Member
0 Likes
630

Hi,

You can do a TRACE using transaction ST05. Set the trace on & run your transaction. Once you are through, STOP the trace & list it.

Best regards,

Prashant

Read only

Former Member
0 Likes
629

use FM <b>RS_PROGRAM_TABLES</b>

Give OBJECT_TYPE as PROG and

PROGRAM as Program name(check in SE93 the program name for XK01)

Read only

0 Likes
629

Hi All,

Thanks

Read only

Former Member
0 Likes
629

or try this

 OBJECT_TYPE = 'TRAN' (= transaction)
- OBJECT_NAME = 'XD01'

Read only

santhosh_patil
Contributor
0 Likes
629

Hi,

I think there is no T-code.

1. One way u can do is go to XK01 transaction and get the

Program name(SAPMF02K) by system-->status

Then go to se38

--- specify the program name

- go to utilities-->environment analysis.

here u can get the all the tables used in this program which is same as tables used in the T-code XK01

2. Go to table <b>D010TAB</b>

here u give the master the name of the program (SAPMF02K)

u will get all the tables used.

-


Patil