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: 

How to find user who deleted an SE80 component of a Package?

Former Member
0 Kudos

I lost items in a package and I believe it to be due to a member going in and deleting.  How can I track or go through a change history of a SE80 package?

SO many thanks!

Chris

3 REPLIES 3

dirk_wittenberg
Contributor
0 Kudos

Hi Chris,

has the package a transport-layer?

If so, then the deletion of objects from this package should generate entries in a transport.

Kind Regards,

Dirk

Former Member
0 Kudos

Hello Chris,

Each component and object is associated with some table like report you can see details in TRDIR, WD component in table WDY* etc. By checking your component and associated table you might get information on who deleted your objects.

regards,

Deepti

adam_krawczyk1
Contributor
0 Kudos

Hi Chris,

As Dirk mentioned, you may find the information from transport system and from versions utility. There is no direct history available for deleted objects. In case if object was not added to any transport request and it had no version created, it may be impossible to retrieve the information about deletion.

There were already many posts about it, try to search by term: "find who deleted program":

http://search.sap.com/ui/scn#query=find+who+deleted+program

If you do not remember program name, you can find deleted objects by this query:

SELECT SINGLE * FROM tadir INTO ls_class_details WHERE devclass = i_package AND delflag = 'X'.

However this table does not keep information about user who deleted object.

Regards,

Adam