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

Obsolete reports

Former Member
0 Likes
1,439

Hi all,

I am doing an upgrade and need to develop a report which gives name of obsolete thing in new upgraded version. Does anybody have any idea...How to make out which things are obsolete in old version when going for new version. SAP provide any help for that.

PLz help on this...

Regards

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,004

RODIR table contains a list of all the obsolete things in the version that u r using. It may be helpful to you.

Best Regards,

Vibha

*Please mark all the helpful answers

3 REPLIES 3
Read only

Former Member
0 Likes
1,005

RODIR table contains a list of all the obsolete things in the version that u r using. It may be helpful to you.

Best Regards,

Vibha

*Please mark all the helpful answers

Read only

Former Member
0 Likes
1,004

Are you looking for the custom objects or the std ones?

Wat are you trying to achieve with the obselete objs...

Let us know in detail...

Regds

Kartik

Read only

Former Member
0 Likes
1,004

goto TADIR table and check the field OBJSTABLTY

if this field is O then the objects are obsolete , u can write one select statement

select * from TADIR into table IT_TADIR where OBJSTABLTY eq 'O'.