‎2006 Mar 24 6:33 AM
Hi,
I wanted to know if there is any standard SAP T-Code for listing all the Z*Programs (ABAP Custom Objects) with Frequency of Use, or Hihgly used order, number of time used etc.
We wanted to take out all the Z programs that are frequently used for the purpose of conversion/upgrade to mySAP ECC 5.0. We wanted to work on the highly used ABAP programs as the first priority.
Anybody with answer, will be hihgly appreciated.
Regards,
Subbu
‎2006 Mar 24 6:35 AM
Hello Subbu,
Please refer to the Transactions ST03 and STAT to begin with.
Regards,
Anand Mandalika.
‎2006 Mar 24 6:40 AM
Hi Subbu,
We don't have any such facility for the wsame , but what max we can do is we can check form <b>STAT</b> transaction which will show you list of the program and lots more which were used very often but again it can't give you the exact status of all Z* custom program.
You need to check manually from se38 for all Z* custom development.
Hope this will help you.
Cheers
Sunny
Rewrd points, if found helpful
‎2006 Mar 24 6:46 AM
Hi,
Besides STAT, you can always check the log to find out which program is highly used in transaction SLG1.
Hope it helps.
Regards,
Shashank
‎2006 Mar 24 7:02 AM
Why don't u use a home made program ?
All info is stored in TADIR just select with this table with name like Z% or Y%...
That is my point of view...
report zlist.
tables : tadir.
select *
from tadir
where obj_name like 'Z%' or obj_name like 'Y%'
order by object.
write : / tadir-OBJECT , tadir-obj_name.
endselect.