Hi all,
I have a generic BOF module that reads an Excel spread sheet and generates an XML file of the format
<Content>
<Row>
<Cell>
<Cell_Value>TestValue1</Cell_Value>
<Cell_Position>$A$1</Cell_Position>
</Cell>
</Row>
<Row>
<Cell>
<Cell_Value>TestValue2</Cell_Value>
<Cell_Position>$B$1</Cell_Position>
</Cell>
</Row>
</Content>
The number of rows will be dependant on the SpreadSheet being read.
Im storing the resultant XML doc as a package in my Process. What I need to do is read every row individually and create objects based on the information.
Is it possible to cycle through the rows using the Process Data Mapping activity?
Thanks
Hoo