‎2007 Sep 19 10:07 AM
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
‎2007 Sep 19 10:12 AM
Hi,
You can use table D010SINF where program name starts with Y or Z.
Enjoy SAP.
Pankaj Singh.
‎2007 Sep 19 10:12 AM
Hi,
You can use table D010SINF where program name starts with Y or Z.
Enjoy SAP.
Pankaj Singh.
‎2007 Sep 19 10:17 AM
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>
‎2007 Sep 19 10:58 AM
‎2007 Sep 19 10:19 AM
hi mahesh,
you can get all objects (starting with Z* or Y*) from table TADIR.
hope this helps
ec