cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hello experts,

I am a ABAP developer and I am developing a program to send XML strings to a legacy system using an ABAP PROXY but I have run into a roadblock as follows:

My PI colleagues who know PI but not ABAP have created a ABAP PROXY data type with the structure that I need to be populated from my program but cannot tell me how to get the data into this structure. They have directed me to SERVICE INTERFACES where there is a class and method EXECUTE_ASYNCHRONOUS but this is where we all have a road block. I am not sure whether I have to just use this class and method in my program to populate the data type proxy previously created or whether a completely new proxy has to be created under service interfaces.

Any help would be appreciated.

regards

0 Likes
View Entire Topic
Former Member
0 Likes

Hello David,

Yes you have to use the method EXECUTE_ASYNCHRONOUS.

Here you will do the implementation.

METHOD Z***i_<MessageInterface>~execute_asynchronous.

      • **** INSERT IMPLEMENTATION HERE **** ***

INCLUDE Z**GL***.

ENDMETHOD.

Inside of the INCLUDE, will be your actual implementation.

Hope this helps.

Regards,

Neetesh

Edited by: Neetesh Raj on Aug 20, 2009 11:41 AM