‎2007 Sep 04 9:12 AM
Hi all,
My program is written in the OO way and the transaction code is created such that it is a method of a class (OO transactioN). However, when I try to run the program and debug it, the SY-TCODE is returning the value OS_APPLICATION rather than the transaction code being created. THe problem is, the transaction code is created by the client since I do not have the authority to it.
Any idea?
‎2007 Sep 04 9:16 AM
Hi
You can find the Transaction codes in tables TSTC , TSTCT.
Or you can check it in Tcode SE93.
See whether the Name of this OO transaction is OS_APPLICATION.
bcoz SY-Tcode will store the Current Tcode.
<b>reward if Helpful</b>
‎2007 Sep 04 9:46 AM
I have checked in TSTC with my actual tcode (ZTEST). The record exists, but under the program field (PGMNA), it was blank.
‎2007 Sep 04 9:59 AM
Hello Mil
Display your class using transaction SE80 and check whether you can see a transaction node in the hierarchy display of the class.
If you test the class (either using SE80 or SE24) you will not see the transaction code assigned to the '<main>' method of your class.
Regards
Uwe
‎2020 Sep 08 3:49 PM