Finding a class for a method

How do you actually find a class for a specific method in ABAP? Is it possible?

EDITED: I was given a method name without a class name from a functional group, so I wonder if we can find a class with the name of this method.

+3
source share
2 answers

I'm not sure what you mean by "finding a class for a specific method in ABAP".

  • If you want to know which class implements a particular interface method at design time, use SE80 to find the implements interface classes. If this does not suit your needs, take a look at the VSEOMETHOD view and filter out REFINTNAME (name of the associated interface) and REFCMPNAME (method name)
  • , FOO , VSEOMETHOD.
  • , , : -)
  • , , - . RTTI - CL_ABAP_TYPEDESCR .
+6

:

se80 ( se84)

, . .

enter image description here

, , , .

+2
source

Source: https://habr.com/ru/post/1723862/


All Articles