‎2007 Mar 08 5:17 PM
Hi Eeperts,
Is there any way to find the transactions if we know the Package.
**points will be rewarded
Thanks in advance,
Arun
‎2007 Mar 08 5:22 PM
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
‎2007 Mar 08 5:22 PM
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
‎2007 Mar 08 5:23 PM
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.
‎2007 Mar 08 5:25 PM
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.
‎2007 Mar 08 5:28 PM
Hi,
Please check the following database view using SE16/SE16N.
APPL_MENU
INFO_MENU
INFO_TRAN
INFO_TRANT
Regards,
Ferry Lianto
‎2007 Mar 08 5:34 PM
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