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

all Z reports list

Former Member
0 Likes
10,621

hi

Pl tell me how to take list of ALL Z REPORTS WITH SHORT DESCRIPTION .

Regards

sree hari

5 REPLIES 5
Read only

Former Member
3,951

You an get the details fron table TRDIRT pass the

NAME as Z*.

List of Z progams will get displayed based on language with teh text.

Hope this solves your query.

Read only

Former Member
0 Likes
3,951

Hi,

Go with TSTC table and execute the table. In the transaction code just z* and execute the table, u will find all the program name, short description.

Regards,

Srinivas

Read only

Former Member
0 Likes
3,951

Se80>program>Z*>enter

Read only

0 Likes
3,951

Great it works !

Read only

Former Member
0 Likes
3,951

Hi sreehari,

Write a report with the select query as below;

DATA : it_trdirt TYPE STANDARD TABLE OF trdirt.

SELECT * FROM trdirt into CORRESPONDING FIELDS OF TABLE it_trdirt
  WHERE Name LIKE 'Z%'.

Otherswise Goto Tcode SE16N, give table name as TRDIRT, then in Program give Z* , Language Give EN and execute. All Z programs will be displayed in a ALV list, you can export that to any local file with the help of the export option.

Regards

Karthik D