cancel
Showing results for 
Search instead for 
Did you mean: 

how to use Message.getCorrelationId()

Former Member
0 Kudos

Hi Experts

I'm interested in setting the correlationID using the API Message.getCorrelationId() mentioned on help.sap.com:

http://help.sap.com/saphelp_nw04s/helpdata/en/17/50d440e14f8431e10000000a1550b0/frameset.htm

However i'm having difficulties understanding how and where to do this. Is it in a mapping using af java function or..?

Has someone experience in using this API.

Kind regards

Martin

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi !

for deatils have a look on these links

/people/philip.kisloff/blog/2007/09/11/correlations-in-sap-business-workflow

Check this blog of Sravya on it:

/people/sravya.talanki2/blog/2005/08/24/do-you-like-to-understand-147correlation148-in-xi

Check this for more:

http://help.sap.com/saphelp_nw04s/helpdata/en/3c/831620a4f1044dba38b370f77835cc/frameset.htm

http://help.sap.com/saphelp_nw04/helpdata/en/a5/64373f7853494fe10000000a114084/frameset.htm

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5059f110-0d01-0010-7c8b-fdc983be...

Regds

Abhishek

Former Member
0 Kudos

Hi Martin.

That Object represents a Message in the messaging system of the AFW.

You can get hold of it in an Adapter module if you want to set the correlID.

Something like this:

com.sap.aii.af.ra.ms.api.Message theMessage = (Message) inputModuleData.getPrincipalData();

Hope it helps.

Rod