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 Data Set

Former Member
0 Likes
289

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
259

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.

1 REPLY 1
Read only

Former Member
0 Likes
260

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.