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

SAP Standard objects:modified ones.

Former Member
0 Likes
1,423

Dear all,

my client wants to have a report where in he can see all the modified SAP standard object so that he can analyse his effort for the next upgrade.

there is already a report existing which does this but not sure if the logic is correct.

It is getitng all the entires from table "ADIRACCESS" and displaying.

I understand i can look at the txn SPAU and SPDD but ofr reporting purpose i waould need to get the tables/ FM which gives me the lilst of objects

any pointers to that would be appreciated.

thanks in advance !

6 REPLIES 6
Read only

Former Member
0 Likes
947

In a way, it works as any standard SAP object you touch, you need an access key and all such access keys are stored here.

Read only

0 Likes
947

Srinivas,

but then this would not include the objects, which have been modifed by customer with an append structure, ( for ddic objects )

and the include of few programs which have been modified by customer via user exits / badi's

and durign upgrade there might be a conflict in the new delivered sap object and the modified one.

hope this makes sense.

Read only

0 Likes
947

Hi Dhruv,

As mentioned by Srinivas the ADIRACCESS table is where all access keys used within your system for modification to SAP standard code are stored and hence should be a good indication of what all / how many modifications to standard have taken place.

As to your doubts, append structures do not require access keys, since creating append strcutures is an enhancement to standard DDIC objects and only needs a transport since in actual, it only is creating a Z table structure.

Also, user exits and BAdis certainly dont require access keys. Again they are enhancement and not modifications and when upgrading they will NOT be overwritten. As SAP mentions, during upgrades all enhancements are retained within the system however modifications if not handled are overwritten.

Hope this helps in a way.

Best regards,

Aditya

Read only

RaymondGiuseppi
Active Contributor
0 Likes
947

You can also use SE95 modification browser (<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbac0b35c111d1829f0000e829fbfe/content.htm">The Modification Browser (SAP Library - Changing the SAP Standard)</a>

Regards

Read only

0 Likes
947

Sorry correct link is <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/60/d6ba75ceda11d1953a0000e82de14a/content.htm">The Modification Browser</a>

Regards

Read only

0 Likes
947

Hello Raymond ,

I want to display all the objects which have been modified in a report,

I think the table "SMODILOG" contains the informations.

do you have an idea if this is the only table and all data is stored in only one place ?

thanks in advance