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: 

need to get table names related to execution of a tcode

former_member699400
Active Participant
0 Kudos

Hi!

I have a name of tcode and via se93 it gives something like this:

...

Transaction START_REPORT

...

- D_SREPOVARI-REPORTTYPE = <b>RW</b>

- D_SREPOVARI-REPORT = <b>7E2A</b> "

my task is to get table names related to execution of this tcode, how could I do this?

Will reward,

Mindaugas

1 ACCEPTED SOLUTION

uwe_schieferstein
Active Contributor
0 Kudos

Hello Mindaugas

Unfortunately you did not tell us the most important piece of information (😞

<i>Which transaction you are looking for???</i>

Anyway, call function module <b>RS_PROGRAM_TABLES</b> using parameter values

  OBJECT_TYPE = 'TRAN'  " transaction
  OBJECT_NAME = '<name of your transaction>'

As result you will see a list of all tables "touched" by this transaction.

Regards

Uwe

5 REPLIES 5

Former Member
0 Kudos

Please see at Table name called TSTCP

Thanks

Seshu

ferry_lianto
Active Contributor
0 Kudos

Hi,

Please check these tables.

TSTCP

TSTC

TSTCT

Regards,

Ferry Lianto

former_member194669
Active Contributor
0 Kudos

Hi,

Tcode : GRR3 ..

from the library select your form .... executed ... from the selection System ->status program name .

Took the program screen name....

se93

new trascation code type report type

former_member189059
Active Contributor
0 Kudos

Hi,

Go to transaction ST05

make sure only 'SQL Trace' is checked on the left side

Click on 'Activate Trace' on the right side

Then, run your transaction

Come back to the ST05 screen and click on 'Deactivate Trace' and then 'Display Trace'

uwe_schieferstein
Active Contributor
0 Kudos

Hello Mindaugas

Unfortunately you did not tell us the most important piece of information (😞

<i>Which transaction you are looking for???</i>

Anyway, call function module <b>RS_PROGRAM_TABLES</b> using parameter values

  OBJECT_TYPE = 'TRAN'  " transaction
  OBJECT_NAME = '<name of your transaction>'

As result you will see a list of all tables "touched" by this transaction.

Regards

Uwe