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

report::Custom developed objects

Former Member
0 Likes
631

Hi experts!!!

i have to develop the report which reads all the <b>Custom developed objects</b> in all the SAP versions which the report runs. and it shuld display all the detils regarding the custom delevloped obejcts.

PLZZZ tell me how to do the same..

is there any table which i need to look for the same..

plz help mee

mahesh

1 ACCEPTED SOLUTION
Read only

messier31
Active Contributor
0 Likes
605

Hi,

You can use table D010SINF where program name starts with Y or Z.

Enjoy SAP.

Pankaj Singh.

4 REPLIES 4
Read only

messier31
Active Contributor
0 Likes
606

Hi,

You can use table D010SINF where program name starts with Y or Z.

Enjoy SAP.

Pankaj Singh.

Read only

varma_narayana
Active Contributor
0 Likes
605

Hi Mahesh.

Table TADIR - contains all the Repository Objects in SAP.

To find out the Custom Developed Objects check for the Object names starting with Y or Z.

SELECT * FROM TADIR

WHERE objname LIKE 'Z%' OR objename LIKE 'Y%'.

<b>reward if Helpful.</b>

Read only

0 Likes
605

THANK YOU.

I THINK I GOT CLERED

THANK YOUM

MAHESH

Read only

JozsefSzikszai
Active Contributor
0 Likes
605

hi mahesh,

you can get all objects (starting with Z* or Y*) from table TADIR.

hope this helps

ec