‎2008 Jan 24 12:06 PM
with compilation of z-objects, can obsolete functions be identified?
‎2008 Jan 24 12:09 PM
‎2008 Jan 24 12:16 PM
‎2008 Feb 06 1:47 PM
where can u find the replacements of obselete func modules??????????????????
‎2008 Feb 06 2:04 PM
I think the poster here hasn't understood the basic principle of what is meant by "Obsolete".
You need to look at what the old function module was doing and how it fits into your business process.
There might not be a replacement -- for example there might be new functionality added to the SAP system which means that the ABAP code where you called the old function module is now no longer required as standard SAP will handle the function.
User exits for example with function module calls are also being phased out - the replacement method of choice is by using Badi's with calls to classes instead - and from rel 6.0 you can call these from a standard ABAP as well.
Other old function modules have been replaced by calls to OO classes which is definitely the future trend. You will soon see that gradually the BOR (business objects - transaction SWO1) will be replaced by classes performing enhanced functionality of the BOR.
There is no simple answer to this question. If a function module is really obsolete then you should try and recode your application (where necessary) because you can guarantee with 100% certainty that it will stop working within a few upgrades.
It is actually more necessary than ever now for "Abappers" to have some understanding at least of the business processes they are involved in. This is NOT to say they have to become fully fledged functional consultants -- but the days of the 100% pure abapper are definitely numbered now.
Cheers
jimbo
‎2008 Jan 24 12:10 PM
Hi Divya,
Execute the transaction SLIN and give the program name. There one check box Obsolete statements is there, check it and uncheck all the check boxes. and excute it.
u can get what are the Obsolete statements that are in the program.
regards,
ravi shankar reddy
Edited by: Ravi Shankar Reddy S on Jan 24, 2008 5:41 PM
‎2008 Jan 24 12:16 PM