‎2009 Dec 22 9:38 AM
Hi Experts,
Where can I take methods of a corresponding class( BAdi classes ). I am not asking about SE19.
In which table I can find class Vs method. or Is there any function module which will return all the methods for
a class.
Thanks and regards,
Venkat
‎2009 Dec 22 9:43 AM
Use Funtion module SAUNIT_GET_CLASS_METHODS
pass your class name and you will get methods assigned to class.
‎2009 Dec 22 10:53 AM
Transp. Table SEOCOMPO
With CLSNAME = <Class name>
CMPTYPE = 1 (For method)
Function Module SEO_METHOD_READ_ALL
CIFKEY = <Class name>
Will get you the list of methods
Explore package "SEO" for more methods, function modules and tables for class data.
Edited by: mrugesh phatak on Dec 22, 2009 11:53 AM
Edited by: mrugesh phatak on Dec 22, 2009 12:11 PM
‎2009 Dec 22 2:22 PM
HAI Venkat,
Use this FM: F4_OBJECTS_CLASS_METHOD, it returns all the methods of a particular class.
Best Regards,
rama