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

se93 program of the t-code

Former Member
0 Likes
4,697

Hello Everyone ,

I need to find the program that is used for the custom t-code .

I have tried all the methods mentioned in this link

http://wiki.scn.sap.com/wiki/display/BI/How+to+see+the+Underlying+Program+of+any+Transaction+Code

But I want to know the name of the program only from SE93 .

In se93 , there is no mention of the program name .how do i find what program is used .

Thanks

pooja

Hello Everyone ,

I need to find the program that is used for the custom t-code .

I have tried all the methods mentioned in this link

http://wiki.scn.sap.com/wiki/display/BI/How+to+see+the+Underlying+Program+of+any+Transaction+Code

But I want to know the name of the program only from SE93 .

In se93 , there is no mention of the program name .how do i find what program is used .

Thanks

pooja

12 REPLIES 12
Read only

FredericGirod
Active Contributor
0 Likes
3,041

Hi,

did you try ST05 ?  did you try Technical information ?

it's a basic question, did you search a little bit ?

regards

Fred

Read only

0 Likes
3,041

Thank you for the reply . Unable to find from ST05 also .

Read only

Former Member
0 Likes
3,041

Enter Transaction SE93 in transaction SE93

Read only

Chintu6august
Contributor
0 Likes
3,041

hi,

use table TSTC and Give tcode it will give you all the details related to that Tcode

thanks!!

Read only

Former Member
0 Likes
3,041

It's an object transaction so you are not running a program,  but calling a method of a class.  Since it's in chinese or whatever it doesn't help,  but the values are displayed right in front of you.

Rich

Read only

0 Likes
3,041

Thank you Richard for the response . So you mean there is no program for this T-code .

If I have to make a change in this t-code , how do i do it .

Pooja

Read only

0 Likes
3,041

SE80,  Select Class/Interface,  enter the class name,  right click on the relevant method,  select change.

Rich

Read only

Former Member
0 Likes
3,041

Hi,

I think to get the program name for a particular transaction code, you can check in the table TSTC.

But if the transaction code is assigned to a method, then the field PGMNA field in table TSTC will be blank. The class name is mentioned in the table TSTCP.

Regards,

Naveen Kumar.

Read only

Former Member
0 Likes
3,041

Hi ,

This is transaction for local or global class ,usually "Local in program " should contain the program name if this method is used locally in program . But this is not the case here so go to Se24 with the class name and try to search .

Regards,

Manish

Read only

Former Member
0 Likes
3,041

If you don't find the class in  SE24  then go to  SE38 and enter program RPR_ABAP_SOURCE_SCAN  then enter the name of the class in "String Searched  for" then in "Program name " as "*"  . Then  execute. You will find all the place where this class has been used ,

Regards,

Manish .

Read only

0 Likes
3,041

Hello Manish,

Thank you for the reply.

It is a custom t-code that is a message editor . It has text messages attached . I have to edit those text messages . I thought if i find a program i will be able to make changes .

But in this case , there is no program attached to the t-code . Then how do i make chnages in the texts that are in the text editor .

Pooja

Read only

0 Likes
3,041

hi,

if there is no program assigned in SE93,  it can be a class and all the methods will be called in the main method, which is declared as MAIN() This transaction type is called "OO transaction model".

put break point in the  method mentioned in SE93 and execute the TCode.. in debugger ABAP and stack flow screen you can get some details related to program. or use sy-cprog variable it will give name of the program.

thanks!!