ankur sample input file, xslt xml to csv convertion xslt1 and xslt2 to avoid trimming , normalize function.
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"
xmlns:ns0="http://firmenich/MAKE/MES/ProcessOrder/Request">
<xsl:output method="text" encoding="UTF-8"/>
<!-- Pad/truncate helper (default: trims spaces) -->
<xsl:template name="fix">
<xsl:param name="val"/>
<xsl:param name="len"/>
<xsl:variable name="v" select="normalize-space($val)"/>
<xsl:variable name="pad"
select="substring(concat($v,' '),1,$len)"/>
<xsl:value-of select="$pad"/>
</xsl:template>
<!-- Pad/truncate helper (raw: keep spaces) -->
<xsl:template name="fix-raw">
<xsl:param name="val"/>
<xsl:param name="len"/>
<!-- do not normalize-space -->
<xsl:variable name="pad"
select="substring(concat($val,' '),1,$len)"/>
<xsl:value-of select="$pad"/>
</xsl:template>
<!-- Root template -->
<xsl:template match="/">
<!-- Header -->
<xsl:apply-templates select="ns0:ProcessOrder/PO_HEADER"/>
<!-- Details -->
<xsl:apply-templates select="ns0:ProcessOrder/PO_COMP_DATA"/>
</xsl:template>
<!-- Header row -->
<xsl:template match="PO_HEADER">
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Site"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="BMSId"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Order_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Product_Id"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Product_Name"/><xsl:with-param name="len" select="48"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Lot_No"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Status"/><xsl:with-param name="len" select="1"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Weight_Total"/><xsl:with-param name="len" select="20"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Unit_Of_Measure"/><xsl:with-param name="len" select="2"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:text> </xsl:text>
</xsl:template>
<!-- Detail rows -->
<xsl:template match="PO_COMP_DATA">
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Order_Pos_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Site"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Lot_No"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Lot_Ref"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Product_Id"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Product_Name"/><xsl:with-param name="len" select="48"/></xsl:call-template><xsl:text>@</xsl:text>
<!-- Use fix-raw here -->
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Weight_Target"/><xsl:with-param name="len" select="20"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Unit_Of_Measure"/><xsl:with-param name="len" select="2"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Automate_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Storage_Location_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Family_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Category"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Address"/><xsl:with-param name="len" select="12"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Confirmation"/><xsl:with-param name="len" select="10"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>
---
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"
xmlns:ns0="http://firmenich/MAKE/MES/ProcessOrder/Request">
<xsl:output method="text" encoding="UTF-8"/>
<!-- Pad/truncate helper -->
<xsl:template name="fix">
<xsl:param name="val"/>
<xsl:param name="len"/>
<xsl:variable name="v" select="normalize-space($val)"/>
<xsl:variable name="pad"
select="substring(concat($v,' '),1,$len)"/>
<xsl:value-of select="$pad"/>
</xsl:template>
<!-- Root template -->
<xsl:template match="/">
<!-- Header -->
<xsl:apply-templates select="ns0:ProcessOrder/PO_HEADER"/>
<!-- Details -->
<xsl:apply-templates select="ns0:ProcessOrder/PO_COMP_DATA"/>
</xsl:template>
<!-- Header row -->
<xsl:template match="PO_HEADER">
<xsl:call-template name="fix"><xsl:with-param name="val" select="Site"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="BMSId"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Order_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Product_Id"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Product_Name"/><xsl:with-param name="len" select="48"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Lot_No"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Status"/><xsl:with-param name="len" select="1"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Weight_Total"/><xsl:with-param name="len" select="20"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Unit_Of_Measure"/><xsl:with-param name="len" select="2"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:text> </xsl:text>
</xsl:template>
<!-- Detail rows -->
<xsl:template match="PO_COMP_DATA">
<xsl:call-template name="fix"><xsl:with-param name="val" select="Order_Pos_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Site"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Lot_No"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Lot_Ref"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Product_Id"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Product_Name"/><xsl:with-param name="len" select="48"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Weight_Target"/><xsl:with-param name="len" select="20"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Unit_Of_Measure"/><xsl:with-param name="len" select="2"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Automate_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Storage_Location_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Family_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Category"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Address"/><xsl:with-param name="len" select="12"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Confirmation"/><xsl:with-param name="len" select="10"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>
----
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"
xmlns:ns0="http://firmenich/MAKE/MES/ProcessOrder/Request">
<xsl:output method="text" encoding="UTF-8"/>
<!-- Pad/truncate helper (default: trims spaces) -->
<xsl:template name="fix">
<xsl:param name="val"/>
<xsl:param name="len"/>
<xsl:variable name="v" select="normalize-space($val)"/>
<xsl:variable name="pad"
select="substring(concat($v,' '),1,$len)"/>
<xsl:value-of select="$pad"/>
</xsl:template>
<!-- Pad/truncate helper (raw: keep spaces) -->
<xsl:template name="fix-raw">
<xsl:param name="val"/>
<xsl:param name="len"/>
<!-- do not normalize-space -->
<xsl:variable name="pad"
select="substring(concat($val,' '),1,$len)"/>
<xsl:value-of select="$pad"/>
</xsl:template>
<!-- Root template -->
<xsl:template match="/">
<!-- Header -->
<xsl:apply-templates select="ns0:ProcessOrder/PO_HEADER"/>
<!-- Details -->
<xsl:apply-templates select="ns0:ProcessOrder/PO_COMP_DATA"/>
</xsl:template>
<!-- Header row -->
<xsl:template match="PO_HEADER">
<xsl:call-template name="fix"><xsl:with-param name="val" select="Site"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="BMSId"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Order_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Product_Id"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Product_Name"/><xsl:with-param name="len" select="48"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Lot_No"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Status"/><xsl:with-param name="len" select="1"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Weight_Total"/><xsl:with-param name="len" select="20"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Unit_Of_Measure"/><xsl:with-param name="len" select="2"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:text> </xsl:text>
</xsl:template>
<!-- Detail rows -->
<xsl:template match="PO_COMP_DATA">
<xsl:call-template name="fix"><xsl:with-param name="val" select="Order_Pos_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Site"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Lot_No"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Lot_Ref"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Product_Id"/><xsl:with-param name="len" select="18"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Product_Name"/><xsl:with-param name="len" select="48"/></xsl:call-template><xsl:text>@</xsl:text>
<!-- Use fix-raw here -->
<xsl:call-template name="fix-raw"><xsl:with-param name="val" select="Weight_Target"/><xsl:with-param name="len" select="20"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Unit_Of_Measure"/><xsl:with-param name="len" select="2"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Automate_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Storage_Location_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Family_Id"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Category"/><xsl:with-param name="len" select="8"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Address"/><xsl:with-param name="len" select="12"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:call-template name="fix"><xsl:with-param name="val" select="Confirmation"/><xsl:with-param name="len" select="10"/></xsl:call-template><xsl:text>@</xsl:text>
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>
-----------
<?xml version="1.0" encoding="UTF-8"?>
<ns0:ProcessOrder xmlns:ns0="http://firmenich/MAKE/MES/ProcessOrder/Request">
<PO_HEADER>
<Site>BRC</Site>
<BMSId>BRC</BMSId>
<Order_Id>10002838</Order_Id>
<Product_Id>278128 DB</Product_Id>
<Product_Name>TROPICAL SNACK MOC</Product_Name>
<Lot_No> </Lot_No>
<Status>R</Status>
<Weight_Total>180.000000000</Weight_Total>
<Unit_Of_Measure>KG</Unit_Of_Measure>
</PO_HEADER>
<PO_COMP_DATA>
<Order_Pos_Id>00000001</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id/>
<Product_Name/>
<Weight_Target/>
<Unit_Of_Measure/>
<Automate_Id/>
<Storage_Location_Id/>
<Family_Id/>
<Category/>
<Address/>
<Confirmation>0133851663</Confirmation>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000002</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id/>
<Product_Name/>
<Weight_Target/>
<Unit_Of_Measure/>
<Automate_Id/>
<Storage_Location_Id/>
<Family_Id/>
<Category/>
<Address/>
<Confirmation>0133851665</Confirmation>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000003</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id/>
<Product_Name/>
<Weight_Target/>
<Unit_Of_Measure/>
<Automate_Id/>
<Storage_Location_Id/>
<Family_Id/>
<Category/>
<Address/>
<Confirmation>0133851667</Confirmation>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000004</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>902679</Product_Id>
<Product_Name>ACETYLMETHYLCARBINOL</Product_Name>
<Weight_Target> 0.027000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>HM</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000005</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>906800</Product_Id>
<Product_Name>ALDEHYDE C 6 FC</Product_Name>
<Weight_Target> 0.137000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>B-08</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000006</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>941468</Product_Id>
<Product_Name>EUCALYPTUS GLOBULUS EO</Product_Name>
<Weight_Target> 0.027000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-07</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000007</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>957415</Product_Id>
<Product_Name>MELONAL</Product_Name>
<Weight_Target> 0.137000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-09</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000008</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>965765</Product_Id>
<Product_Name>MANDARIN ALDEHYDE 10 TEC</Product_Name>
<Weight_Target> 0.137000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>B-15</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000009</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>258273 D</Product_Id>
<Product_Name>DEODECLYX R PAT</Product_Name>
<Weight_Target> 0.192000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category/>
<Address>CF-04</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000010</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>982169</Product_Id>
<Product_Name>DREAMWOOD®</Product_Name>
<Weight_Target> 0.027000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category/>
<Address>C-14</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000011</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>258273 D</Product_Id>
<Product_Name>DEODECLYX R PAT</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category/>
<Address>CF-04</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000012</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>949135</Product_Id>
<Product_Name>INDOMETHYLENE</Product_Name>
<Weight_Target> 0.083000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>PO</Category>
<Address>D-12</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000013</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>940121</Product_Id>
<Product_Name>ETASPIRENE</Product_Name>
<Weight_Target> 0.007000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIST</Category>
<Address>D-07</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000014</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>906800</Product_Id>
<Product_Name>ALDEHYDE C 6 FC</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>B-08</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000015</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>984212</Product_Id>
<Product_Name>SULFUROL</Product_Name>
<Weight_Target> 0.137000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>ST</Category>
<Address>CF-06</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000016</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>908630</Product_Id>
<Product_Name>ALMOND SWEET VEGETAL OIL</Product_Name>
<Weight_Target> 0.027000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>C-12</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000017</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>984212</Product_Id>
<Product_Name>SULFUROL</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>ST</Category>
<Address>CF-06</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000018</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>957415</Product_Id>
<Product_Name>MELONAL</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-09</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000019</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>965765</Product_Id>
<Product_Name>MANDARIN ALDEHYDE 10 TEC</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>B-15</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000020</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>039395</Product_Id>
<Product_Name>DIACETYLE SUBST</Product_Name>
<Weight_Target> 0.027000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000021</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>951750</Product_Id>
<Product_Name>ISOSPIRENE</Product_Name>
<Weight_Target> 0.007000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIST</Category>
<Address>C-12</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000022</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>949135</Product_Id>
<Product_Name>INDOMETHYLENE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>PO</Category>
<Address>D-12</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000023</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>908630</Product_Id>
<Product_Name>ALMOND SWEET VEGETAL OIL</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>C-12</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000024</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>941468</Product_Id>
<Product_Name>EUCALYPTUS GLOBULUS EO</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-07</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000025</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>039395</Product_Id>
<Product_Name>DIACETYLE SUBST</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000026</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>902755</Product_Id>
<Product_Name>ACETYLPROPIONYLE</Product_Name>
<Weight_Target> 0.007000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIST</Category>
<Address>CF-01</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000027</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>982169</Product_Id>
<Product_Name>DREAMWOOD®</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category/>
<Address>C-14</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000028</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>902679</Product_Id>
<Product_Name>ACETYLMETHYLCARBINOL</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>HM</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000029</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>940121</Product_Id>
<Product_Name>ETASPIRENE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIST</Category>
<Address>D-07</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000030</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>951750</Product_Id>
<Product_Name>ISOSPIRENE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIST</Category>
<Address>C-12</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000031</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>902755</Product_Id>
<Product_Name>ACETYLPROPIONYLE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE2</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIST</Category>
<Address>CF-01</Address>
<Confirmation>0133851669</Confirmation>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000032</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>980790</Product_Id>
<Product_Name>AMYL SALICYLATE FIRINC</Product_Name>
<Weight_Target> 8.245000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-11</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000033</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>908290</Product_Id>
<Product_Name>ALLYL AMYL GLYCOLATE</Product_Name>
<Weight_Target> 1.375000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-02</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000034</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>989615</Product_Id>
<Product_Name>UNDECAVERTOL</Product_Name>
<Weight_Target> 0.548000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-09</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000035</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>907125</Product_Id>
<Product_Name>ALDEHYDE C 11 UNDECYLENIC</Product_Name>
<Weight_Target> 0.547000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>B-13</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000036</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>980916</Product_Id>
<Product_Name>HEXYL SALICYLATE</Product_Name>
<Weight_Target> 6.202000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-01</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000037</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>939745</Product_Id>
<Product_Name>DYNASCONE®</Product_Name>
<Weight_Target> 0.276000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-13</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000038</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>918244</Product_Id>
<Product_Name>ISOAMYL BUTYRATE RC</Product_Name>
<Weight_Target> 3.408000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-22</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000039</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>951177</Product_Id>
<Product_Name>PHENOXYETHYL ISOBUTYRATE</Product_Name>
<Weight_Target> 1.374000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-13</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000040</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>902451</Product_Id>
<Product_Name>ETHYL ACETOACETATE</Product_Name>
<Weight_Target> 6.872000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-14</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000041</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>989710</Product_Id>
<Product_Name>AMYL VALERIANATE</Product_Name>
<Weight_Target> 2.749000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-17</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000042</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>919479</Product_Id>
<Product_Name>ALLYL CAPROATE</Product_Name>
<Weight_Target> 0.549000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-20</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000043</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>918244</Product_Id>
<Product_Name>ISOAMYL BUTYRATE RC</Product_Name>
<Weight_Target> 2.099000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-22</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000044</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>974325</Product_Id>
<Product_Name>CIS-3-HEXENOL</Product_Name>
<Weight_Target> 1.375000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-15</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000045</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>965027</Product_Id>
<Product_Name>TRANS 2 HEXENYL ACETATE</Product_Name>
<Weight_Target> 0.275000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>CF-02</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000046</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>910932</Product_Id>
<Product_Name>APPLINATE</Product_Name>
<Weight_Target> 0.275000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>CF-01</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000047</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>918320</Product_Id>
<Product_Name>ETHYL BUTYRATE</Product_Name>
<Weight_Target> 0.685000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>CF-01</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000048</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>958477</Product_Id>
<Product_Name>ISOPROPYL METHYLBUTYRATE</Product_Name>
<Weight_Target> 1.374000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>CF-01</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000049</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>900608</Product_Id>
<Product_Name>BUTYL ACETATE</Product_Name>
<Weight_Target> 1.378000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000050</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>907258</Product_Id>
<Product_Name>ALDEHYDE C 12</Product_Name>
<Weight_Target> 0.687000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CQP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>HM</Category>
<Address>CQ-02</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000051</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>910868</Product_Id>
<Product_Name>METHYL ANTHRANILATE DIST</Product_Name>
<Weight_Target> 1.374000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CQP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>HMDE</Category>
<Address>CQ-02</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000052</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>900019</Product_Id>
<Product_Name>HERCOLYN® D</Product_Name>
<Weight_Target> 3.220000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CQP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>HM</Category>
<Address>CQ-02</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000053</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>900019</Product_Id>
<Product_Name>HERCOLYN® D</Product_Name>
<Weight_Target> 0.916000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CQP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>HM</Category>
<Address>CQ-02</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000054</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>950106</Product_Id>
<Product_Name>IRGANOX 1010</Product_Name>
<Weight_Target> 4.125000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>PO</Category>
<Address>D-13</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000055</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>964898</Product_Id>
<Product_Name>HEDIONE®</Product_Name>
<Weight_Target> 5.496000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>SO</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000056</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>902014</Product_Id>
<Product_Name>CIS-3-HEXENYL ACETATE</Product_Name>
<Weight_Target> 1.375000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-63</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000057</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>941126</Product_Id>
<Product_Name>ETHYL PRALINE</Product_Name>
<Weight_Target> 3.434000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>PO</Category>
<Address>D-13</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000058</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>991705</Product_Id>
<Product_Name>VIOLET BC</Product_Name>
<Weight_Target> 1.374000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-58</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000059</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>941297</Product_Id>
<Product_Name>ETHYL VANILLIN</Product_Name>
<Weight_Target> 0.824000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>PO</Category>
<Address>E-08</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000060</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>934975</Product_Id>
<Product_Name>VERDYL ACETATE</Product_Name>
<Weight_Target> 8.252000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-28</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000061</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>987277</Product_Id>
<Product_Name>TETRALINOL PUR</Product_Name>
<Weight_Target> 9.616000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-21</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000062</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>947303</Product_Id>
<Product_Name>HABANOLIDE®</Product_Name>
<Weight_Target> 2.061000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-45</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000063</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>937706</Product_Id>
<Product_Name>DECALACTONE CP</Product_Name>
<Weight_Target> 1.375000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-46</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000064</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>993135</Product_Id>
<Product_Name>TRIVERTAL</Product_Name>
<Weight_Target> 1.374000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>H-47</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000065</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>939701</Product_Id>
<Product_Name>DORISYL</Product_Name>
<Weight_Target> 6.189000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-48</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000066</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>951310</Product_Id>
<Product_Name>ANTHAMBER</Product_Name>
<Weight_Target> 6.887000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-19</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000067</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>902242</Product_Id>
<Product_Name>STYRALLYL ACETATE</Product_Name>
<Weight_Target> 0.274000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-30</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000068</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>912784</Product_Id>
<Product_Name>UNDECALACTONE GAMMA</Product_Name>
<Weight_Target> 4.124000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-27</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000069</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>907049</Product_Id>
<Product_Name>ALDEHYDE C 10</Product_Name>
<Weight_Target> 1.375000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>H-23</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000070</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>906688</Product_Id>
<Product_Name>ANISALDEHYDE SPECIAL REDIST</Product_Name>
<Weight_Target> 0.549000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>H-17</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000071</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>902014</Product_Id>
<Product_Name>CIS-3-HEXENYL ACETATE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-63</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000072</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>900608</Product_Id>
<Product_Name>BUTYL ACETATE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000073</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>951177</Product_Id>
<Product_Name>PHENOXYETHYL ISOBUTYRATE</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-13</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000074</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>974325</Product_Id>
<Product_Name>CIS-3-HEXENOL</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-15</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000075</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>958477</Product_Id>
<Product_Name>ISOPROPYL METHYLBUTYRATE</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>CF-01</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000076</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>908290</Product_Id>
<Product_Name>ALLYL AMYL GLYCOLATE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-02</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000077</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>907049</Product_Id>
<Product_Name>ALDEHYDE C 10</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>H-23</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000078</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>991705</Product_Id>
<Product_Name>VIOLET BC</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-58</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000079</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>910868</Product_Id>
<Product_Name>METHYL ANTHRANILATE DIST</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CQP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>HMDE</Category>
<Address>CQ-02</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000080</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>947303</Product_Id>
<Product_Name>HABANOLIDE®</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-45</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000081</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>989710</Product_Id>
<Product_Name>AMYL VALERIANATE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-17</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000082</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>950106</Product_Id>
<Product_Name>IRGANOX 1010</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>PO</Category>
<Address>D-13</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000083</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>941126</Product_Id>
<Product_Name>ETHYL PRALINE</Product_Name>
<Weight_Target> 0.002000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>PO</Category>
<Address>D-13</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000084</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>912784</Product_Id>
<Product_Name>UNDECALACTONE GAMMA</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-27</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000085</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>900019</Product_Id>
<Product_Name>HERCOLYN® D</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CQP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>HM</Category>
<Address>CQ-02</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000086</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>964898</Product_Id>
<Product_Name>HEDIONE®</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>SO</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000087</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>918244</Product_Id>
<Product_Name>ISOAMYL BUTYRATE RC</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-22</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000088</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>939701</Product_Id>
<Product_Name>DORISYL</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-48</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000089</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>980916</Product_Id>
<Product_Name>HEXYL SALICYLATE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-01</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000090</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>902451</Product_Id>
<Product_Name>ETHYL ACETOACETATE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-14</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000091</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>951310</Product_Id>
<Product_Name>ANTHAMBER</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-19</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000092</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>934975</Product_Id>
<Product_Name>VERDYL ACETATE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-28</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000093</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>980790</Product_Id>
<Product_Name>AMYL SALICYLATE FIRINC</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-11</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000094</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>935018</Product_Id>
<Product_Name>VERDYL PROPIONATE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-06</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000095</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>987277</Product_Id>
<Product_Name>TETRALINOL PUR</Product_Name>
<Weight_Target> 0.003000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-21</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000096</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>906897</Product_Id>
<Product_Name>ALDEHYDE C 8</Product_Name>
<Weight_Target> 0.275000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>B-09</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000097</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>992510</Product_Id>
<Product_Name>WILLIAMS ESTER</Product_Name>
<Weight_Target> 0.275000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-08</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000098</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>912913</Product_Id>
<Product_Name>NONALACTONE GAMMA</Product_Name>
<Weight_Target> 0.688000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-08</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000099</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>937856</Product_Id>
<Product_Name>DAMASCONE DELTA</Product_Name>
<Weight_Target> 0.549000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>B-07</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000100</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>935018</Product_Id>
<Product_Name>VERDYL PROPIONATE</Product_Name>
<Weight_Target> 8.258000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-06</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000101</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>969376</Product_Id>
<Product_Name>OXANE 10 DIPG</Product_Name>
<Weight_Target> 0.688000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIST</Category>
<Address>B-06</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000102</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>965027</Product_Id>
<Product_Name>TRANS 2 HEXENYL ACETATE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>CF-02</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000103</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>992510</Product_Id>
<Product_Name>WILLIAMS ESTER</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-08</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000104</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>902242</Product_Id>
<Product_Name>STYRALLYL ACETATE</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-30</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000105</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>906897</Product_Id>
<Product_Name>ALDEHYDE C 8</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>B-09</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000106</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>910932</Product_Id>
<Product_Name>APPLINATE</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>CF-01</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000107</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>939745</Product_Id>
<Product_Name>DYNASCONE®</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-13</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000108</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>907125</Product_Id>
<Product_Name>ALDEHYDE C 11 UNDECYLENIC</Product_Name>
<Weight_Target> 0.003000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>B-13</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000109</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>937856</Product_Id>
<Product_Name>DAMASCONE DELTA</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>B-07</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000110</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>906688</Product_Id>
<Product_Name>ANISALDEHYDE SPECIAL REDIST</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>H-17</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000111</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>989615</Product_Id>
<Product_Name>UNDECAVERTOL</Product_Name>
<Weight_Target> 0.002000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-09</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000112</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>919479</Product_Id>
<Product_Name>ALLYL CAPROATE</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-20</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000113</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>907258</Product_Id>
<Product_Name>ALDEHYDE C 12</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CQP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>HM</Category>
<Address>CQ-02</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000114</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>912913</Product_Id>
<Product_Name>NONALACTONE GAMMA</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>B-08</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000115</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>969376</Product_Id>
<Product_Name>OXANE 10 DIPG</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIST</Category>
<Address>B-06</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000116</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>918320</Product_Id>
<Product_Name>ETHYL BUTYRATE</Product_Name>
<Weight_Target> 0.003000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>CFP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>CF-01</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000117</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>941297</Product_Id>
<Product_Name>ETHYL VANILLIN</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>SMP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>PO</Category>
<Address>E-08</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000118</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>937706</Product_Id>
<Product_Name>DECALACTONE CP</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>H-46</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000119</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>993135</Product_Id>
<Product_Name>TRIVERTAL</Product_Name>
<Weight_Target> 0.001000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE3</Automate_Id>
<Storage_Location_Id>ETP</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LIDE</Category>
<Address>H-47</Address>
<Confirmation>0133851671</Confirmation>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000120</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>939416</Product_Id>
<Product_Name>DIPROPYLENE GLYCOL</Product_Name>
<Weight_Target> 19.240000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE4</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>SO</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000121</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>944246</Product_Id>
<Product_Name>GALAXOLIDE 70 DIPG</Product_Name>
<Weight_Target> 17.225000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE4</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>HM</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000122</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>944246</Product_Id>
<Product_Name>GALAXOLIDE 70 DIPG</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE4</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>HM</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000123</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>939416</Product_Id>
<Product_Name>DIPROPYLENE GLYCOL</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE4</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>SO</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000124</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>900361</Product_Id>
<Product_Name>ISOAMYL ACETATE RC</Product_Name>
<Weight_Target> 0.000000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE4</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>RACK</Address>
<Confirmation/>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000125</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id>900361</Product_Id>
<Product_Name>ISOAMYL ACETATE RC</Product_Name>
<Weight_Target> 27.579000000</Weight_Target>
<Unit_Of_Measure>KG</Unit_Of_Measure>
<Automate_Id>PE4</Automate_Id>
<Storage_Location_Id>RPE</Storage_Location_Id>
<Family_Id>PE100</Family_Id>
<Category>LI</Category>
<Address>RACK</Address>
<Confirmation>0133851673</Confirmation>
</PO_COMP_DATA>
<PO_COMP_DATA>
<Order_Pos_Id>00000126</Order_Pos_Id>
<Site>BRC</Site>
<Lot_No/>
<Lot_Ref> </Lot_Ref>
<Product_Id/>
<Product_Name/>
<Weight_Target/>
<Unit_Of_Measure/>
<Automate_Id/>
<Storage_Location_Id/>
<Family_Id/>
<Category/>
<Address/>
<Confirmation>0133851685</Confirmation>
</PO_COMP_DATA>
</ns0:ProcessOrder>