cancel
Showing results for 
Search instead for 
Did you mean: 

EOIO in sender ABAP proxy

former_member206760
Active Contributor
0 Kudos

Hi

I am referring to /people/arulraja.ma/blog/2006/08/18/xi-reliable-messaging-150-eoio-in-abap-proxies for EOIO in sender abap proxy

There is a code like

Data: queueid type SXMSQIDAPP.

data : prxy type ref to zco_sales data.

create obect prxy.

queueid = 'ORD4200000214'.

*get protocol & set the queue id

prxy_async_messaging ?= prxy->get_protocol(

if_wsprotocol=>async_messaging ).

prxy_async_messaging->set_serialization_context(

queueid ).

CALL METHOD prxy->execute_asynchronous

EXPORTING

output = it

COMMIT WORK.

CATCH cx_ai_system_fault .

ENDTRY.

but i am getting error in syntax chk like " prxy_async_messaging " is unknown

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

I believe this code is replicated for SAP Help of PI.

The given code may help you in this case.

http://help.sap.com/saphelp_nw04/helpdata/EN/65/40c9a4a1fa476288ac61b5fcc6bbde/frameset.htm

thanks

Swarup

0 Kudos

the link is no longer available

Answers (1)

Answers (1)

former_member181985
Active Contributor
0 Kudos

data : prxy_async_messaging ref to zco_sales data.

create obect prxy_async_messaging.