|
Home > Archive > BizTalk Server > December 2006 > parameters in a map
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
parameters in a map
|
|
|
| Hi,
I have this input
<Records>
<Record ID="ID1"/>
<Record ID="ID2"/>
<Record ID="ID3"/>
</Records>
and I want to create two outputs, by calling the map twice (please note
that I cannot make
decision about the value of status based on input)
<Records>
<Record ID="ID1" Status="Recieved"/>
<Record ID="ID2" Status="Recieved"/>
<Record ID="ID3" Status="Recieved"/>
</Records>
<Records>
<Record ID="ID1" Status="Posted"/>
<Record ID="ID2" Status="Posted"/>
<Record ID="ID3" Status="Posted"/>
</Records>
is it even possible?
| |
| NISHIL 2006-12-15, 7:25 am |
| It is possbile....U can use 1 input message pointing to input schema and 2
output message pointing to same output schema in the Transform shape in
Orchestration.
--
Regards,
NISHIL
MCTS|Biztalk 2006
Freelance Biztalk Consultant
Http://biztalkblogs.com/nishil/default.aspx
"Billa" wrote:
> Hi,
> I have this input
> <Records>
> <Record ID="ID1"/>
> <Record ID="ID2"/>
> <Record ID="ID3"/>
> </Records>
>
>
> and I want to create two outputs, by calling the map twice (please note
> that I cannot make
> decision about the value of status based on input)
> <Records>
> <Record ID="ID1" Status="Recieved"/>
> <Record ID="ID2" Status="Recieved"/>
> <Record ID="ID3" Status="Recieved"/>
> </Records>
>
>
> <Records>
> <Record ID="ID1" Status="Posted"/>
> <Record ID="ID2" Status="Posted"/>
> <Record ID="ID3" Status="Posted"/>
> </Records>
>
>
> is it even possible?
>
>
|
|
|
|
|