2016 Jan 15 8:14 AM
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
2016 Jan 15 8:19 AM
Hi,
did you try ST05 ? did you try Technical information ?
it's a basic question, did you search a little bit ?
regards
Fred
2016 Jan 15 8:32 AM
2016 Jan 15 8:29 AM
2016 Jan 15 8:30 AM
hi,
use table TSTC and Give tcode it will give you all the details related to that Tcode
thanks!!
2016 Jan 15 8:37 AM
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
2016 Jan 15 8:41 AM
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
2016 Jan 15 8:46 AM
SE80, Select Class/Interface, enter the class name, right click on the relevant method, select change.
Rich
2016 Jan 15 8:42 AM
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.
2016 Jan 15 9:02 AM
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
2016 Jan 15 9:32 AM
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 .
2016 Jan 15 9:49 AM
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
2016 Jan 15 10:00 AM
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!!