cancel
Showing results for 
Search instead for 
Did you mean: 

Finding all Z objects in the system including CI Includes in HR

Former Member
0 Kudos

Hi All.

I know this question has been asked before, and most of the times the reply is SE80.

But this is the requirement by my managers wherein they just want to run a transaction and see all the objects made by us, i.e., all Z objects including Data dict objects, classes, programs --- anything customized !

Modifications can be seen via SE95. But finding out CI includes (technique used in HR infotypes to enhance them) is also another thing. I know we can go to TRDIR table, and write CI* there in object list.

But any simpler tool or existing transaction which gives this info?

Thanks in adv.

Samant

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello,

Sometimes I browse TADIR where originating system SRCSYSTEM NE 'SAP'.

It gives all kinds of objects, so it takes some time to analyze.

But everything created on your system should be there.

Regards Lars

former_member181962
Active Contributor
0 Kudos

Hi Samant,

I think there is no readymade tool.

YOu can write this code in a report.

tables: tadir.

data: begin of it_tadir_fin occurs 0.

include structure tadir.

data: end of it_tadir_fin.

SELECT OBJECT

OBJ_NAME

SRCSYSTEM

FROM TADIR

INTO TABLE IT_TADIR_FIN

WHERE AND ( OBJ_NAME LIKE 'Y%'

OR OBJ_NAME LIKE 'Z%' ).

loop at it_tadir_fin.

write:/ it_tadir_fin.

endloop.

Regards,

Ravi

Former Member
0 Kudos

Thanks Ravi.

But as i said before I know about TADIR.

But it cannot give me CI includes in HR.

Similarly customized infotypes names starts with MP*.

There can be many other exceptions wherein name does not start with Z or Y.

Any clues?

former_member181962
Active Contributor
0 Kudos

HI Samant,

How about writing the slect based on the author??

For all custom stuff, the Author will not be 'SAP'

Write a select based on that condition.

Regards,

Ravi