‎2009 Jun 26 7:17 AM
Hi,
I need to find out, whether a particular method is called inside another method...
For exampel interface
IF_HANDLER has a method FINALIZE
IF_PROVIDER has a method CHECK
I need to findout, whether they are using the IF_HANDLERFINALIZE inside the method IF_PROVIDERCHECK...
any suggestions plz...
‎2009 Jun 26 7:37 AM
if it is in different clases we can guess by looking at the super class or subclass...
else we have to cehk manually..i dont think there is any other way//
‎2009 Jun 26 8:06 AM
Click on IF_HANDLER~FINALIZE entry, and then get the where-used list (CtrlShiftF3)
‎2009 Jun 26 8:27 AM
I want to do thru runtime...
designtime, i can gicve where used list or implementing class...
I want to write a code to do this...