cancel
Showing results for 
Search instead for 
Did you mean: 

removeContexts & SplitBy Value?

Former Member
0 Kudos

What do these XI functions mean exactly?

Is there a place I can find these function's logic explanation anywhere in XI?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Tom -

Online help has some good info on the <a href="http://help.sap.com/saphelp_nw04/helpdata/en/43/c4cdfc334824478090739c04c4a249/frameset.htm">Standard Functions</a>

As well, check the <a href="http://help.sap.com/saphelp_nw04/helpdata/en/d9/cea942ad920c31e10000000a1550b0/frameset.htm">Example Message Mappings</a>. You can find these in the SWCV SAP Basis XX.

Regards,

Jin

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Tom !

I recommend to first read about contexts and then you would understand when to use RemoveContexts and when SplitByValue

Introduction to Context Handling in Message Mapping

/people/riyaz.sayyad/blog/2006/04/23/introduction-to-context-handling-in-message-mapping

Mapping Context Changes in XI

/people/harrison.holland5/blog/2006/12/08/mapping-context-changes-in-xi

Message Mapping Simplified

/people/sravya.talanki2/blog/2005/12/08/message-mapping-simplified-150-part-ii

RemoveContext

http://help.sap.com/saphelp_nw04/helpdata/en/1f/ea0fb12403844bbb6c4cbc8a00cda9/frameset.htm

Hope it helps !

Good luck,

Matias

Former Member
0 Kudos

Hi Tom

suppose you have an XML Like

<root>
<node>1</node> 
<node>2</node>
</root>

split by value(node) returns:

<root>
<node>1</node> 
</root>
<root>
<node>2</node>
</root>

Instead remove context does the opposite.

You can find all the function explanations here

<a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/43/c4cdfc334824478090739c04c4a249/frameset.htm">Standard Functions</a>

Kind Regards,

Sergio

Former Member
0 Kudos