Application Development 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: 

all Z reports list

Former Member
0 Kudos

hi

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

Regards

sree hari

5 REPLIES 5

Former Member

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.

Former Member
0 Kudos

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

former_member181995
Active Contributor
0 Kudos

Se80>program>Z*>enter

0 Kudos

Great it works !

Former Member
0 Kudos

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