cancel
Showing results for 
Search instead for 
Did you mean: 

Execution Type

Former Member
0 Kudos

What is the difference between,

Execution Type: "All Values of a Context" and "All Values of Queue" in Functions tab of Message Mapping in PI 7.1

answers are highly appreciated.

Accepted Solutions (0)

Answers (1)

Answers (1)

Shabarish_Nair
Active Contributor
0 Kudos

/people/rohit.kalugade/blog/2008/12/08/context-and-queue-in-message-mapping-udf - read through to understand

Former Member
0 Kudos

Shabarish,

thanks for sharing the blog. I got some Idea, but I'm still not that clear.

Former Member
0 Kudos

Hi ,

I thgough, I could explain it to you with a simple exaple.

For example in the following message


<message>
<Person>
          <name>First1</name>
          <name>Last1</name>
          <name>Middle1</name>
</Person>
<Person>
          <name> First2 </name>
          <name>Last2</name>
          <name>Middle2</name>
</Person>
</message>

"All values in Context" for element <name> when you are looking at the 1st <Person>

should be


First1
Last1
Middle1

"All values in queue" for element <name> represents


First1
Last1
Middle1
First2
Last2
Middle2

I hope this clarifies ...

Thanks,

Kalyan

VijayKonam
Active Contributor
0 Kudos

Same context elements would always have same parent..!! Treat context as parent.. it will be easier to understand..!! A Q contains all the contexts of an element.

VJ