How do you actually find the class for a specific method in ABAP? Is this even possible?
EDITED: I was given a method name without the class name from the functional team, so I am wondering if we could find the class with the given method name.
How do you actually find the class for a specific method in ABAP? Is this even possible?
EDITED: I was given a method name without the class name from the functional team, so I am wondering if we could find the class with the given method name.
Basically a method call looks like this:
object_reference->method().
If you look elsewhere in the code, object_reference should have a definition like this:
data: object_reference type ref to class.
If you double click on 'class' it will take you to transaction SE24, where you can see the class definition.
I'm leaving out a lot here (static methods, local classes, old-style method calls) but it's as much as I can do without more in your original question.
I'm not sure what you mean by "finding the class for a specific method in ABAP".