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

Z*Programs - Custom Objects List

Former Member
0 Likes
3,771

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

4 REPLIES 4
Read only

Former Member
0 Likes
1,202

Hello Subbu,

Please refer to the Transactions ST03 and STAT to begin with.

Regards,

Anand Mandalika.

Read only

Former Member
0 Likes
1,202

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

Read only

Former Member
0 Likes
1,202

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

Read only

0 Likes
1,202

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.