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

Finding Transaction

Former Member
0 Likes
612

Hi Eeperts,

Is there any way to find the transactions if we know the Package.

**points will be rewarded

Thanks in advance,

Arun

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
579

Yes.

CHeck in Tcode SE93.

Press F4 and click Infosystem. It will show a popup where u can enter the Dev. Class. It will list all the Tcode associated to that Dev. Class.

Regards,

Vasanth

5 REPLIES 5
Read only

Former Member
0 Likes
580

Yes.

CHeck in Tcode SE93.

Press F4 and click Infosystem. It will show a popup where u can enter the Dev. Class. It will list all the Tcode associated to that Dev. Class.

Regards,

Vasanth

Read only

Former Member
0 Likes
579

Hi,

Go to SE80 ->select Package from dropdown button -> give ur package name ->go to Transactions.

Then you can find out Tcodes.

If helps pls award points.

Thanks.

Read only

Former Member
0 Likes
579

hi arun,

just check by doing this...

goto se80..select package and give ur package name...

and press enter...

under the Transactions node...u will see the transactions in that package.

hope this helps,

priya.

Read only

Former Member
0 Likes
579

Hi,

Please check the following database view using SE16/SE16N.

APPL_MENU

INFO_MENU

INFO_TRAN

INFO_TRANT

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
579

Hi Arun,

Query on TADIR table and to get the transactions for a development class.

SELECT OBJ_NAME
   FROM TADIR
   INTO TABLE IT_TRAN
WHERE  PGMID = 'R3TR'
      AND OBJECT = 'TRAN'
      AND DEVCLASS = <PACKAGE-NAME>.

Thanks,

Vinay