Hi all,
I have two transactions.
In my first transaction, I am creating a multi-rowset XML document using couple of repeaters and XML Output actions block from BLS such as Rowset and Row.
In my second transaction, I am loading my first transactions multi-rowset XML document output and doing some processing on it. Since its multi-rowset document, in the second transaction I need to provide my rowset number as shown below..
Rowsets/Rowset[1]/Row
and
Rowsets/Rowset[2]/Row
I would like to assign some names to these Rowsets in my first transactions and refer those names in my second transaction.
see below what I want
Rowsets/Rowset[testname1]/Row
and
Rowsets/Rowset[testname2]/Row
So the question is, Can I assign a name to the Rowset, while its being created in BLS.
Reference :-
I am sure that, name attribute is possible in XML rowset, as shown below.
<Rowsets>
<Rowset name="testname1">
<Row>
</Row>
</Rowset>
<Rowset name="testname2">
<Row>
</Row>
</Rowset>
</Rowsets>
Many thanks in advance for suggestions.
Edited by: Vijay Aundhekar on Sep 10, 2009 12:05 PM
Edited by: Vijay Aundhekar on Sep 10, 2009 12:06 PM