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

0 Likes
1,153

Hi,

I have to make a release change. Before making this relase change, i want to delete all not used Z-Abaps, which have not been used(started) for the last 2 years.

My problem is how to find these Z-Programs.

Do you have any good ideas ?

Thanks

John

I do not want to list all Z-Prgramms. I want know if a Z-Programm has been used for the last 2 years. Or which z_prgramms has been started the last 2 years.

Message was edited by: John Martinussen

6 REPLIES 6
Read only

Former Member
0 Likes
1,066

Hai John,

Go to SE80 transaction,and there you enter the object name you have used for those programs.then you will get the list of programs from where you can delete them.

Regards,

Srikanth.

Read only

Former Member
0 Likes
1,066

hello John,

u can go with se38 and in the program box u can type z*

and go with f4 u can get the list of the z programs

i think this is helpful for u

Regards

naveen

Read only

Former Member
0 Likes
1,066

TRDIR has all the program names.

You can write a select statement to get all the programs that start with 'z'.

Read only

Former Member
0 Likes
1,066

Hi,

all programs will be in TRDIR table, but you can get the info of used or not used programs from your SAP team, they may be tracking them.

Regards

vijay

Read only

vinod_gunaware2
Active Contributor
0 Likes
1,066

Hi u can use table

<b>TRDIR</b> Table of programs

and u give filter like username or create date

and Z*.

Or u can go to <b>SE38</b> put Z* then press <b>F4</b>

if u get popup then press <b>all selection</b> shift + f7

and give filter criterai.

regards

vinod

Read only

Former Member
0 Likes
1,066

Hi John,

I don't know how to get the programs that are being used, but we do have the change date and create date fields in TRDIR table to tell you whether the program has been created in the last two years or not.

TRDIR-CDAT = Create date

TRDIR-UDAT = Last Changed Date

YOu can wrire a select statement in abap to get all the programs which fall/doesn't fall in the date range you specify.

Regards,

ravi