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

Method call inside another method

Former Member
0 Likes
679

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...

3 REPLIES 3
Read only

former_member242255
Active Contributor
0 Likes
486

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//

Read only

Former Member
0 Likes
486

Click on IF_HANDLER~FINALIZE entry, and then get the where-used list (CtrlShiftF3)

Read only

Former Member
0 Likes
486

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...