cancel
Showing results for 
Search instead for 
Did you mean: 

How to get Messageid in Inbound ABAP Proxy ?

Former Member
0 Kudos

Hi,

Please advise how to get messageid in Inbound ABAP Proxy, so far i could not find anythings most of the forum discuss about "How to get messageid for Outbound Proxy).

Thank You and Best Regards

FL

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Please go through the link below. Hope it helps.

[Protocols|http://help.sap.com/saphelp_nwpi71/helpdata/en/51/d5cd16235e4643ae8ec92395c4ad97/content.htm]

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Fernad,

By using below code you can take message id.

java.util.Map map = container.getTransformationParameters();

return ((String) map.get(StreamTransformationConstants.MESSAGE_ID));

Create one simple UDF by using above code and map this to one field (you may create one dummy field for this). Then at runtime the mapped field contains the message id.

Regards,

Venkata Ramesh