Application Development 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: 

can we get all tables for particular to code

Former Member
0 Kudos
353

Hi all

*how can we know all tables for particular T code.*

suppose for fs10n for thi st code from which tables the data can be flow

MANY THANKS

RAJU

1 ACCEPTED SOLUTION

Former Member
0 Kudos
311

Hi,

Goto SE80 and provide program name for transaction code. Click on display and expand the tables folder.

Thanks,

Vinay

14 REPLIES 14

Former Member
0 Kudos
311

Goto ST05, activate SQL trace. Come to your transaction, run it completely. After finishing, goto ST05, deactivate trace and view the trace records. You will see all tables that were involved in read and write during your running of your transaction.

Former Member
0 Kudos
311

hi,

Tables are SKC1A,

SKC1C,

RF42B,

SSCRFIELDS.

Former Member
0 Kudos
311

Hi,

You can try function module

GET_TABLES

Program for FS10N is RFGLBALANCE. Give this as input.

Regards

0 Kudos
311

PLEASE MY QUESTION IS

how can we know all tables for particular T code

Mnaythanks

raju

Former Member
0 Kudos
312

Hi,

Goto SE80 and provide program name for transaction code. Click on display and expand the tables folder.

Thanks,

Vinay

0 Kudos
311

thank q

i am trying now

0 Kudos
311

ye s can u explain me more clearly just i am unable to findout

thanks

raju

0 Kudos
311

Hello,

You need to use FM GET_TABLES

Get the program name from table TSTC for the required transaction and call the above function passing the program name.

Regards,

Shailaja

0 Kudos
311

Hi

Goto SE15. Click on Other Objects->Transactions. Specify your tcode. Hit F8.

Now click on Detailed Info button. You can obtain the program name.

Double click on the name and find out the tables mentioned in TABLES statement in code. OR

Goto SE80. Specify program name. Now select Dictionary Structures drop down. It gives the list of tables.

Hope this helps

Regards,

Jayanthi.K

uwe_schieferstein
Active Contributor
0 Kudos
311

Hello Raju

You may give fm RS_PROGRAM_TABLES a try:

- Object type of transactions = 'TRAN'

Regards

Uwe

Former Member
0 Kudos
311

Hi,

By sql trace (st05) you can find all the tables

Former Member
0 Kudos
311

Hi,

Get the program name from t-code from System -> Status.. Program Name or se93

Use the table D010TAB to find all the tables used or

Use FM GET_TABLES ....

Former Member
0 Kudos
311

Refer to the threads below:

With luck,

Pritam.

Former Member
0 Kudos
311

answ

thanks