I want to find out 'last changed on/by' for a large number of elements going in 'se11' and checking it's attribute value . So instead of copying each elements name and checking it's attribute for the same value, is there any table or database in which i can get the values for multiple entries at once? Picture is attached in the question for the reference.
Asked
Active
Viewed 1,094 times
1
-
5...what ever happened to screen shot software...??? – vwegert Oct 11 '17 at 11:26
1 Answers
4
With the cursor placed in the field you're interested in, press F1, then select the technical info. This will show you the table name or - as in this case - a structure named RSDXX
, which is not what you're looking for - but it is the fastest way in some cases.
Alternatively, start transaction ST05
, enable the SQL trace and navigate to the display in a separate window. Then stop the trace and examine it - you will find a list of all tables accessed for the process. Very near the top of the trace list, you will find a table named DD02L
which is the one you're looking for in this case.

vwegert
- 18,371
- 3
- 37
- 55
-
Thank you. Solved my query for table names.. other elements like 'data type' , 'table type' etc. are not there in DD02L, still need to be found out.. anyway thank you so much, helped a lot. – Oct 12 '17 at 15:53