‎2007 May 15 9:22 AM
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
‎2007 May 15 9:24 AM
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
‎2007 May 15 9:24 AM
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
‎2007 May 15 9:25 AM
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)
‎2007 May 15 9:49 AM
‎2007 May 15 9:27 AM
or try this
OBJECT_TYPE = 'TRAN' (= transaction)
- OBJECT_NAME = 'XD01'
‎2007 May 15 9:30 AM
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