‎2006 Dec 04 5:44 AM
Trying to use interface IF_EX_ME_PROCESS_PO_CUST with the parameter IM_HEADER & methods SET_DATA. What is the syntax to apply this method.
‎2006 Dec 04 5:50 AM
I don't see any method by name SET_DATA in the Interface IF_EX_ME_PROCESS_PO_CUST.
However, Interface methods are not implemented in the interfaces. They need to be implemented in the class in which the interface has been included in.
After implementing the methods in your class, you can use the same syntax for calling the method as you would call a normal method.
Call method obj1->set_data
exporting..
importing..
exceptions.
‎2006 Dec 04 5:50 AM
I don't see any method by name SET_DATA in the Interface IF_EX_ME_PROCESS_PO_CUST.
However, Interface methods are not implemented in the interfaces. They need to be implemented in the class in which the interface has been included in.
After implementing the methods in your class, you can use the same syntax for calling the method as you would call a normal method.
Call method obj1->set_data
exporting..
importing..
exceptions.