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

table for tcode Y... created with se43

Former Member
0 Likes
1,270

Hi,

i change the sap-menu with se43 and insert an own abap.

The system creates a new tcode Y... .

When i look into table TSTC i find the tcode wich is created with SE43 with the text of the menu,

but not with the abap-name.

Where can i find the relation between tcode Y... and the abap?

Does anyone knows the table?

thanks.

Regards, Dieter

Hi,

i change the sap-menu with se43 and insert an own abap.

The system creates a new tcode Y... .

When i look into table TSTC i find the tcode wich is created with SE43 with the text of the menu,

but not with the abap-name.

Where can i find the relation between tcode Y... and the abap?

Does anyone knows the table?

thanks.

Regards, Dieter

7 REPLIES 7
Read only

Former Member
0 Likes
1,076

try SE93 with the Y TCODE to see first it is created with the required program

Edited by: Senthil Nattamai Sekar on Feb 9, 2010 11:36 PM

Read only

0 Likes
1,076

Hi,

thanks for your answer.

i take se93 and see the abap, but i want to know in wich table i found this information.

Table TSTC doesn't show the abap-name only the menu-text.

Regards, Dieter

Read only

0 Likes
1,076

Have you checked TMENU* tables ?

Read only

0 Likes
1,076

Hi,

thanks for your answer.

i checked tables TMENU* but no result. I found the tcode but not the abap.

Regards, Dieter

Read only

0 Likes
1,076

Hi

U should check your Y transaction by SE93.

In generally when the system generates an Y transaction, it generates a transaction runs the standard transaction START_REPORT having as default parameter the report it needs to run.

So it means the system generates a "Transactions with parameters", the parameters can be got from table TSTCP

Max

Read only

0 Likes
1,076

Hello

Try this way:

Goto table TSTCP. Enter t-code and run. You will have record.

Look at field PARAM.

It looks as '/*START_REPORT D_SREPOVARI-REPORTTYPE=;D_SREPOVARI-REPORT=ZTEST;D_SREPOVARI-EXTDREPORT=;D_SREPOVARI-VARIANT=;D_SREPOVARI-NOS'

D_SREPOVARI-REPORT=ZTEST -> ZTEST - it is your ABAP name for this transaction.

Read only

Former Member
0 Likes
1,076

Hi,

solve by using table TSTCP / TSTPVT

Regards, Dieter