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?

.