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: 

Get the report name

Former Member
0 Kudos

Hi,

If suppose I want to get all the reports developed by me or say some other user is there a way I can know that other than z* or y*. Thanks in advance.

1 ACCEPTED SOLUTION

former_member386202
Active Contributor
0 Kudos

Hi,

You can check it in table TADIR.

Regards,

Prashant

6 REPLIES 6

former_member386202
Active Contributor
0 Kudos

Hi,

You can check it in table TADIR.

Regards,

Prashant

Former Member
0 Kudos

sap allowed only z and y letter. all the developed report must be z and y.

Former Member
0 Kudos

go to TRDIR view and click in the extension button

now in single value give

Y*

Z*

in two different line and execute

regards

shiba dutta

harimanjesh_an
Active Participant
0 Kudos

Hi shaheen,

1) Goto SE84

2) Select Program Library

3) Then select Programs

4) Then u can select PROGRAMS based on Program author, Description, Last changed, Changed on, Program type, Status, Application and Package.

U can also use TADIR table .

Reward me if useful..........

Harimanjesh AN

Former Member
0 Kudos

hi

GOTO se11 - ENTER

TADIR-Directory of Repository Objects

EXECUTE IT AND THERE YOU WILL FIND PERSON RESPONSIBLE FOR OBJECT

ENTER PERSON NAME THEN IT WILL SHOW ALL THE PROGRAM NAMES

Former Member
0 Kudos

U can approach this from Transport point of view.

select TRKORR into table t_trs

from e070

where AS4USER = 'USER1'.

if t_trs[] is not initial.

select TRKORR OBJ_NAME

into ltable t_object

from e071 where

for all entries in t_trs

where trkorr = t_trs trkorr and

pgmid = 'LIMU' and

object = 'REPS'.

endif.

reward if answered