Hi,
We have an XML which can have a repeating structure. The repeating structure looks like:
<orderLu><orderLineNumber>1</orderLineNumber><productId>123456</productId><orderTuId>1</orderTuId><quantity>20</quantity><attributeValue><name>barcode</name><value>NONE</value></attributeValue><attributeValue><name>lotCode</name><value>85</value></attributeValue><attributeValue><name>stockOwner</name><value>05</value></attributeValue><attributeValue><name>stockStatus</name><value>V</value></attributeValue><attributeValue><name>warehouse</name><value>VRO</value></attributeValue></orderLu>
Now i linked it with a stored procedure which only has the elements productid, lotcode, stockstatus,warehouse and quantity.
How can i achieve that for every repeating element a new record in the database will be written?
Gr,
Ronald