Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
umairnawazish
Starting Member
4 Posts |
Posted - 2014-07-12 : 09:23:30
|
Hi guys needs your support and expert openion, i have make a cursor which itrates and store values in variable, further I have insert that variable value into table which is perfectly working.. now the issue is i have 6000 rows curor start fetching rows and insert them into table one by one but after inserting some rows its get out form while loop and execute those statements which are written out side cursor and then after that gets back to Cursors while loop and insert rest of the lines, i dont know why it happes and also dont know how to fix it..Umair Nawazish |
|
umairnawazish
Starting Member
4 Posts |
Posted - 2014-07-12 : 09:24:41
|
CLOSE XMLCursorDistProdAtribDEALLOCATE XMLCursorDistProdAtribINSERT INTO tblXML VALUES ('</DistributorProductAttributes>')INSERT INTO tblXML VALUES ('</DMS>')Umair Nawazish |
|
|
umairnawazish
Starting Member
4 Posts |
Posted - 2014-07-12 : 09:25:57
|
DECLARE @XMLDistProdAttrib XMLDECLARE @DPADistributorProductAttributeID NVARCHAR(25)DECLARE @DPAProductID NVARCHAR(25)DECLARE @DPADistributorID NVARCHAR(25)DECLARE @DPALocationID NVARCHAR(25)DECLARE @DPAProductNumber NVARCHAR(25)DECLARE @DPAProductCode NVARCHAR(25)DECLARE @DPAProductAlias NVARCHAR(max)DECLARE @DPADistributorAllowance NVARCHAR(25)DECLARE @DPADistributorAllowancePercentage NVARCHAR(25)DECLARE @DPASellingAllowance NVARCHAR(25)DECLARE @DPAFMR NVARCHAR(25)DECLARE @DPAValidFrom NVARCHAR(25)DECLARE @DPAValidTo NVARCHAR(25)DECLARE @DPAPassOnFMR NVARCHAR(25)DECLARE @DPAProductSegment NVARCHAR(25)DECLARE XMLCursorDistProdAtrib CURSOR SCROLL FOR SELECT top 10 dpa.DistributorProductAttributeID, dpa.ProductID, dpa.DistributorID, dpa.LocationID, dpa.ProductNumber, dpa.ProductCode, dpa.ProductAlias, dpa.DistributorAllowance, dpa.DistributorAllowancePercentage, dpa.SellingAllowance, dpa.FMR, dpa.ValidFrom, dpa.ValidTo, dpa.PassOnFMR, dpa.ProductSegment FROM DistributorProductAttributes dpa WHERE dpa.DistributorID = 21 AND dpa.LocationID=33OPEN XMLCursorDistProdAtribINSERT INTO tblXML VALUES ('<DistributorProductAttributes>') FETCH NEXT FROM XMLCursorDistProdAtrib INTO @DPADistributorProductAttributeID, @DPAProductID, @DPADistributorID, @DPALocationID, @DPAProductNumber, @DPAProductCode, @DPAProductAlias, @DPADistributorAllowance, @DPADistributorAllowancePercentage, @DPASellingAllowance, @DPAFMR, @DPAValidFrom, @DPAValidTo, @DPAPassOnFMR, @DPAProductSegment WHILE @@FETCH_STATUS =0 BEGIN BEGIN TRY FETCH NEXT FROM XMLCursorDistProdAtrib INTO @DPADistributorProductAttributeID, @DPAProductID, @DPADistributorID, @DPALocationID, @DPAProductNumber, @DPAProductCode, @DPAProductAlias, @DPADistributorAllowance, @DPADistributorAllowancePercentage, @DPASellingAllowance, @DPAFMR, @DPAValidFrom, @DPAValidTo, @DPAPassOnFMR, @DPAProductSegment SET @XMLDistProdAttrib = '<DistributorProductAttributeID><![CDATA['+ CASE WHEN @DPADistributorProductAttributeID IS NULL THEN '' ELSE @DPADistributorProductAttributeID END +']]></DistributorProductAttributeID> <ProductID><![CDATA['+ CASE WHEN @DPAProductID IS NULL THEN '' ELSE @DPAProductID END +']]></ProductID> <DistributorID><![CDATA['+ CASE WHEN @DPADistributorID IS NULL THEN '' ELSE @DPADistributorID END +']]></DistributorID> <LocationID><![CDATA['+ CASE WHEN @DPALocationID IS NULL THEN '' ELSE @DPALocationID END +']]></LocationID> <ProductNumber><![CDATA['+ CASE WHEN @DPAProductNumber IS NULL THEN '' ELSE @DPAProductNumber END +']]></ProductNumber> <ProductCode><![CDATA['+ CASE WHEN @DPAProductCode IS NULL THEN '' ELSE @DPAProductCode END +']]></ProductCode> <ProductAlias><![CDATA['+ CASE WHEN @DPAProductAlias IS NULL THEN '' ELSE @DPAProductAlias END +']]></ProductAlias> <DistributorAllowance><![CDATA['+ CASE WHEN @DPADistributorAllowance IS NULL THEN '' ELSE @DPADistributorAllowance END +']]></DistributorAllowance> <DistributorAllowancePercentage><![CDATA['+ CASE WHEN @DPADistributorAllowancePercentage IS NULL THEN '' ELSE @DPADistributorAllowancePercentage END +']]></DistributorAllowancePercentage> <SellingAllowance><![CDATA['+ CASE WHEN @DPASellingAllowance IS NULL THEN '' ELSE @DPASellingAllowance END +']]></SellingAllowance> <FMR><![CDATA['+ CASE WHEN @DPAFMR IS NULL THEN '' ELSE @DPAFMR END +']]></FMR> <ValidFrom><![CDATA['+ CASE WHEN @DPAValidFrom IS NULL THEN '' ELSE @DPAValidFrom END +']]></ValidFrom> <ValidTo><![CDATA['+ CASE WHEN @DPAValidTo IS NULL THEN '' ELSE @DPAValidTo END +']]></ValidTo> <PassOnFMR><![CDATA['+ CASE WHEN @DPAPassOnFMR IS NULL THEN '' ELSE @DPAPassOnFMR END +']]></PassOnFMR> <ProductSegment><![CDATA['+ CASE WHEN @DPAProductSegment IS NULL THEN '' ELSE @DPAProductSegment END +']]></ProductSegment>' INSERT INTO tblXML VALUES (CAST(@XMLDistProdAttrib AS vARCHAR(MAX))) END TRY BEGIN CATCH SELECT ERROR_NUMBER() AS ErrorNumber, ERROR_SEVERITY() AS ErrorSeverity, ERROR_STATE() AS ErrorState, ERROR_PROCEDURE() AS ErrorProcedure, ERROR_LINE() AS ErrorLine, ERROR_MESSAGE() AS ErrorMessage END CATCH END CLOSE XMLCursorDistProdAtribDEALLOCATE XMLCursorDistProdAtribINSERT INTO tblXML VALUES ('</DistributorProductAttributes>')INSERT INTO tblXML VALUES ('</DMS>')Umair Nawazish |
|
|
umairnawazish
Starting Member
4 Posts |
Posted - 2014-07-12 : 09:33:10
|
is exits at line no 119 and execute statements which are written after cursor and again return to cursor while loop below is the out put of query.<DistributorProductAttributes><DistributorProductAttributeID>1635</DistributorProductAttributeID><ProductID>2</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>2</ProductNumber><ProductCode>11430251</ProductCode><ProductAlias>NIDO 12X750G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1636</DistributorProductAttributeID><ProductID>3</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>3</ProductNumber><ProductCode>11430248</ProductCode><ProductAlias>NIDO 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1637</DistributorProductAttributeID><ProductID>4</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>4</ProductNumber><ProductCode>12017795</ProductCode><ProductAlias>NIDO 192X65G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1638</DistributorProductAttributeID><ProductID>5</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>5</ProductNumber><ProductCode>12026276</ProductCode><ProductAlias>NIDO 192X26G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1639</DistributorProductAttributeID><ProductID>6</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>6</ProductNumber><ProductCode>11430238</ProductCode><ProductAlias>NIDO 1 PLUS 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1640</DistributorProductAttributeID><ProductID>7</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>7</ProductNumber><ProductCode>12008922</ProductCode><ProductAlias>NIDO 3 PLUS 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1641</DistributorProductAttributeID><ProductID>8</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>8</ProductNumber><ProductCode>142013</ProductCode><ProductAlias>NIDO 6X1800G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1642</DistributorProductAttributeID><ProductID>9</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>9</ProductNumber><ProductCode>12048620</ProductCode><ProductAlias>NIDO BUNYAD 48X130G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1643</DistributorProductAttributeID><ProductID>10</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>10</ProductNumber><ProductCode>12048621</ProductCode><ProductAlias>NIDO BUNYAD 192X26G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1644</DistributorProductAttributeID><ProductID>11</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>11</ProductNumber><ProductCode>12076101</ProductCode><ProductAlias>EVERYDAY 12X1KG</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1645</DistributorProductAttributeID><ProductID>12</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>12</ProductNumber><ProductCode>12031772</ProductCode><ProductAlias>EVERYDAY 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1646</DistributorProductAttributeID><ProductID>13</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>13</ProductNumber><ProductCode>12031771</ProductCode><ProductAlias>EVERYDAY 192X40G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1647</DistributorProductAttributeID><ProductID>14</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>14</ProductNumber><ProductCode>12097547</ProductCode><ProductAlias>EVERYDAY 288X25G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1648</DistributorProductAttributeID><ProductID>15</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>15</ProductNumber><ProductCode>12066599</ProductCode><ProductAlias>MAGGI CHICKEN 72X65G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.335</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1649</DistributorProductAttributeID><ProductID>16</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>16</ProductNumber><ProductCode>12066598</ProductCode><ProductAlias>MAGGI CHKR 72X65G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.335</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1650</DistributorProductAttributeID><ProductID>17</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>17</ProductNumber><ProductCode>12066596</ProductCode><ProductAlias>MAGGILMNCHASKA72X65G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.335</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1651</DistributorProductAttributeID><ProductID>19</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>19</ProductNumber><ProductCode>12057588</ProductCode><ProductAlias>LACTOGEN 1 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment>LACTOGEN 400G</ProductSegment><DistributorProductAttributeID>1652</DistributorProductAttributeID><ProductID>20</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>20</ProductNumber><ProductCode>12057587</ProductCode><ProductAlias>LACTOGEN 1 48X200G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment>LACTOGEN 200G</ProductSegment><DistributorProductAttributeID>1653</DistributorProductAttributeID><ProductID>21</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>21</ProductNumber><ProductCode>12057586</ProductCode><ProductAlias>LACTOGEN 2 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment>LACTOGEN 400G</ProductSegment><DistributorProductAttributeID>1654</DistributorProductAttributeID><ProductID>22</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>22</ProductNumber><ProductCode>12057585</ProductCode><ProductAlias>LACTOGEN 2 48X200G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment>LACTOGEN 200G</ProductSegment><DistributorProductAttributeID>1655</DistributorProductAttributeID><ProductID>23</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>23</ProductNumber><ProductCode>12058787</ProductCode><ProductAlias>LACTOGEN 1 GOLD 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment>LACTOGEN 400G</ProductSegment><DistributorProductAttributeID>1656</DistributorProductAttributeID><ProductID>24</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>24</ProductNumber><ProductCode>12058786</ProductCode><ProductAlias>LACTOGEN 2 GOLD 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment>LACTOGEN 400G</ProductSegment><DistributorProductAttributeID>1657</DistributorProductAttributeID><ProductID>25</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>25</ProductNumber><ProductCode>12057564</ProductCode><ProductAlias>LACTOGEN 3 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment>LACTOGEN 400G</ProductSegment><DistributorProductAttributeID>1658</DistributorProductAttributeID><ProductID>26</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>26</ProductNumber><ProductCode>142077</ProductCode><ProductAlias>NAN 1 PS 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1659</DistributorProductAttributeID><ProductID>27</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>27</ProductNumber><ProductCode>12019601</ProductCode><ProductAlias>NAN 2 PS 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1660</DistributorProductAttributeID><ProductID>262</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>262</ProductNumber><ProductCode>12018317</ProductCode><ProductAlias>NAN 1 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.285</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1661</DistributorProductAttributeID><ProductID>263</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>263</ProductNumber><ProductCode>11430183</ProductCode><ProductAlias>NAN 2 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1662</DistributorProductAttributeID><ProductID>28</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>28</ProductNumber><ProductCode>140353</ProductCode><ProductAlias>PRE NAN 12X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1663</DistributorProductAttributeID><ProductID>30</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>30</ProductNumber><ProductCode>12065652</ProductCode><ProductAlias>CER WHEAT24X350G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1664</DistributorProductAttributeID><ProductID>31</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>31</ProductNumber><ProductCode>12065673</ProductCode><ProductAlias>CER WHEAT48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1665</DistributorProductAttributeID><ProductID>32</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>32</ProductNumber><ProductCode>12065651</ProductCode><ProductAlias>CER 3FRUIT24X350G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1666</DistributorProductAttributeID><ProductID>33</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>33</ProductNumber><ProductCode>12065654</ProductCode><ProductAlias>CER 3FRUIT48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1667</DistributorProductAttributeID><ProductID>34</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>34</ProductNumber><ProductCode>12065653</ProductCode><ProductAlias>CER BANANA48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1668</DistributorProductAttributeID><ProductID>35</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>35</ProductNumber><ProductCode>12065803</ProductCode><ProductAlias>CER RICE 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1669</DistributorProductAttributeID><ProductID>36</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>36</ProductNumber><ProductCode>12065769</ProductCode><ProductAlias>CER HONEY 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1670</DistributorProductAttributeID><ProductID>37</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>37</ProductNumber><ProductCode>12065655</ProductCode><ProductAlias>CER SBRY APL PEAR 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1671</DistributorProductAttributeID><ProductID>38</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>38</ProductNumber><ProductCode>12065656</ProductCode><ProductAlias>CER ORG APPLE 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1672</DistributorProductAttributeID><ProductID>39</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>39</ProductNumber><ProductCode>11430111</ProductCode><ProductAlias>CER WHEAT 320X25G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1673</DistributorProductAttributeID><ProductID>40</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>40</ProductNumber><ProductCode>11430110</ProductCode><ProductAlias>CER 3 FRUIT 320X25G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1674</DistributorProductAttributeID><ProductID>41</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>41</ProductNumber><ProductCode>12096647</ProductCode><ProductAlias>CER RICE 320X25G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1675</DistributorProductAttributeID><ProductID>42</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>42</ProductNumber><ProductCode>12072869</ProductCode><ProductAlias>NESQUIK CHOC 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.335</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1676</DistributorProductAttributeID><ProductID>43</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>43</ProductNumber><ProductCode>12072868</ProductCode><ProductAlias>NESQUIK CHOC 48X200G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.335</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1677</DistributorProductAttributeID><ProductID>44</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>44</ProductNumber><ProductCode>12072910</ProductCode><ProductAlias>NESQUIK CHOC 384X12G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.335</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1678</DistributorProductAttributeID><ProductID>45</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>45</ProductNumber><ProductCode>12057511</ProductCode><ProductAlias>NESQUIK SBRY 48X200G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.335</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1679</DistributorProductAttributeID><ProductID>46</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>46</ProductNumber><ProductCode>11430199</ProductCode><ProductAlias>NESCAFE CLAS 24X100G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.335</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1680</DistributorProductAttributeID><ProductID>47</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>47</ProductNumber><ProductCode>11430198</ProductCode><ProductAlias>NESCAFE CLAS 24X50G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.335</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1681</DistributorProductAttributeID><ProductID>48</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>48</ProductNumber><ProductCode>12035246</ProductCode><ProductAlias>NESCAFE 3IN1 576X18G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.33</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1682</DistributorProductAttributeID><ProductID>808</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>264</ProductNumber><ProductCode>11430193</ProductCode><ProductAlias>NESLAC HONEY 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1683</DistributorProductAttributeID><ProductID>811</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>29</ProductNumber><ProductCode>140159</ProductCode><ProductAlias>AL 110 12X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1684</DistributorProductAttributeID><ProductID>812</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>49</ProductNumber><ProductCode>12068757</ProductCode><ProductAlias>AL 110 12X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1685</DistributorProductAttributeID><ProductID>813</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>50</ProductNumber><ProductCode>12113564</ProductCode><ProductAlias>EVERYDAY TEA PROMO 18X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1686</DistributorProductAttributeID><ProductID>814</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>51</ProductNumber><ProductCode>12102281</ProductCode><ProductAlias>CER WHEAT PB 24X350G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1687</DistributorProductAttributeID><ProductID>815</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>52</ProductNumber><ProductCode>12102293</ProductCode><ProductAlias>CER WHEAT PB 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1688</DistributorProductAttributeID><ProductID>816</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>53</ProductNumber><ProductCode>12102423</ProductCode><ProductAlias>CER 3FRUIT PB 24X350G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1689</DistributorProductAttributeID><ProductID>817</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>54</ProductNumber><ProductCode>12102422</ProductCode><ProductAlias>CER 3FRUIT PB 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1690</DistributorProductAttributeID><ProductID>818</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>55</ProductNumber><ProductCode>12102417</ProductCode><ProductAlias>CER BAN PB 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1691</DistributorProductAttributeID><ProductID>819</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>56</ProductNumber><ProductCode>12102418</ProductCode><ProductAlias>CER RICE PB 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1692</DistributorProductAttributeID><ProductID>820</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>57</ProductNumber><ProductCode>12102325</ProductCode><ProductAlias>CER HONEY PB 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1693</DistributorProductAttributeID><ProductID>821</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>58</ProductNumber><ProductCode>12102948</ProductCode><ProductAlias>CER SBRY APL PEAR PB 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1694</DistributorProductAttributeID><ProductID>822</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>59</ProductNumber><ProductCode>12102323</ProductCode><ProductAlias>CER ORG APL PB 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>0</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1695</DistributorProductAttributeID><ProductID>301</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>301</ProductNumber><ProductCode>12073850</ProductCode><ProductAlias>MILKPAK UHT 12X1000 ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.68</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1696</DistributorProductAttributeID><ProductID>302</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>302</ProductNumber><ProductCode>12073809</ProductCode><ProductAlias>MILKPAK UHT 12X500 ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.68</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1697</DistributorProductAttributeID><ProductID>303</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>303</ProductNumber><ProductCode>12073763</ProductCode><ProductAlias>MILKPAK UHT 27X250 ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.68</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1698</DistributorProductAttributeID><ProductID>304</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>304</ProductNumber><ProductCode>12013958</ProductCode><ProductAlias>EVERYDAY UHT 24X200ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.68</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1699</DistributorProductAttributeID><ProductID>305</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>305</ProductNumber><ProductCode>11430319</ProductCode><ProductAlias>NESVITA 12X1000 ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.68</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1700</DistributorProductAttributeID><ProductID>306</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>306</ProductNumber><ProductCode>12018897</ProductCode><ProductAlias>NESVITA 24X200 ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.68</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1701</DistributorProductAttributeID><ProductID>307</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>307</ProductNumber><ProductCode>11430315</ProductCode><ProductAlias>NESTLE APPLE 12X1000ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.572</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1702</DistributorProductAttributeID><ProductID>308</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>308</ProductNumber><ProductCode>12087751</ProductCode><ProductAlias>NESTLE APPLE 24X200ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.569</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1703</DistributorProductAttributeID><ProductID>309</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>309</ProductNumber><ProductCode>12037687</ProductCode><ProductAlias>NESTLE CHAUNSA 12X1000ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.572</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1704</DistributorProductAttributeID><ProductID>310</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>310</ProductNumber><ProductCode>12087760</ProductCode><ProductAlias>NESTLE CHAUNSA 24X200ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.569</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment>JUICES 200ML</ProductSegment><DistributorProductAttributeID>1705</DistributorProductAttributeID><ProductID>311</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>311</ProductNumber><ProductCode>11430317</ProductCode><ProductAlias>NESTLE MANGO 12X1000ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.572</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1706</DistributorProductAttributeID><ProductID>312</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>312</ProductNumber><ProductCode>12087749</ProductCode><ProductAlias>NESTLE MANGO 24X200ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.569</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1707</DistributorProductAttributeID><ProductID>313</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>313</ProductNumber><ProductCode>11430318</ProductCode><ProductAlias>NESTLE MOJ 12X1000ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.572</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1708</DistributorProductAttributeID><ProductID>314</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>314</ProductNumber><ProductCode>12087746</ProductCode><ProductAlias>NESTLE MOJ 24X200ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.569</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1709</DistributorProductAttributeID><ProductID>315</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>315</ProductNumber><ProductCode>11430314</ProductCode><ProductAlias>NESTLE NOJ 12X1000ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.572</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1710</DistributorProductAttributeID><ProductID>316</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>316</ProductNumber><ProductCode>12087678</ProductCode><ProductAlias>NESTLE NOJ 24X200ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.569</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1711</DistributorProductAttributeID><ProductID>317</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>317</ProductNumber><ProductCode>11430316</ProductCode><ProductAlias>NESTLE PINEAPPLE 12X1000ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.572</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1712</DistributorProductAttributeID><ProductID>318</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>318</ProductNumber><ProductCode>12087761</ProductCode><ProductAlias>NESTLE PINEAPPLE 24X200ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.569</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1713</DistributorProductAttributeID><ProductID>319</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>319</ProductNumber><ProductCode>11430309</ProductCode><ProductAlias>NESTLE REDGRAPES 12X1000ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.572</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1714</DistributorProductAttributeID><ProductID>320</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>320</ProductNumber><ProductCode>12087762</ProductCode><ProductAlias>NESTLE REDGRAPES 24X200ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.569</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1715</DistributorProductAttributeID><ProductID>321</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>321</ProductNumber><ProductCode>12075419</ProductCode><ProductAlias>NESTLE GUAVA 12X1000ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.572</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1716</DistributorProductAttributeID><ProductID>322</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>322</ProductNumber><ProductCode>12087748</ProductCode><ProductAlias>NESTLE GUAVA 24X200ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.569</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1717</DistributorProductAttributeID><ProductID>323</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>323</ProductNumber><ProductCode>12087763</ProductCode><ProductAlias>MILO RTD 24X200 ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.956</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1718</DistributorProductAttributeID><ProductID>324</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>324</ProductNumber><ProductCode>11430138</ProductCode><ProductAlias>MILKPAK CREAM 24X200ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.5</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1719</DistributorProductAttributeID><ProductID>325</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>325</ProductNumber><ProductCode>11430259</ProductCode><ProductAlias>MILKPAK DESIGHEE 12X870ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.485</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1720</DistributorProductAttributeID><ProductID>869</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>9001</ProductNumber><ProductCode>12018223</ProductCode><ProductAlias>NPL 1.5x6 S WRAP</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.267</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1721</DistributorProductAttributeID><ProductID>870</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>9002</ProductNumber><ProductCode>11430217</ProductCode><ProductAlias>NPL 1.5x12 CASE</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.267</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1722</DistributorProductAttributeID><ProductID>871</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>9003</ProductNumber><ProductCode>12017497</ProductCode><ProductAlias>NPL 0.5x24 S TRAY</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.267</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1723</DistributorProductAttributeID><ProductID>800</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>800</ProductNumber><ProductCode>11430144</ProductCode><ProductAlias>NESTLE PLAIN YGRT 12X450</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1724</DistributorProductAttributeID><ProductID>801</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>801</ProductNumber><ProductCode>11430146</ProductCode><ProductAlias>NESTLE PLAIN YGRT 20X125</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1725</DistributorProductAttributeID><ProductID>802</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>802</ProductNumber><ProductCode>11430237</ProductCode><ProductAlias>NESVITA YGRT 12X450 G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1726</DistributorProductAttributeID><ProductID>803</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>803</ProductNumber><ProductCode>11430143</ProductCode><ProductAlias>NESTLE FRT PEACH 20X100 G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1727</DistributorProductAttributeID><ProductID>804</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>804</ProductNumber><ProductCode>11430142</ProductCode><ProductAlias>NESTLE FRT STBRY 20X100 G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1728</DistributorProductAttributeID><ProductID>805</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>805</ProductNumber><ProductCode>11430141</ProductCode><ProductAlias>NESTLE FRT MANGO 20X100 G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1729</DistributorProductAttributeID><ProductID>806</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>806</ProductNumber><ProductCode>11430148</ProductCode><ProductAlias>NESTLE RAITA 12X250G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1730</DistributorProductAttributeID><ProductID>807</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>807</ProductNumber><ProductCode>12015114</ProductCode><ProductAlias>NESTLE MINT RAITA 12X250G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1731</DistributorProductAttributeID><ProductID>823</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1001</ProductNumber><ProductCode>12073851</ProductCode><ProductAlias>MILKPAK UHT 12X1L (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.68</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1732</DistributorProductAttributeID><ProductID>824</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1002</ProductNumber><ProductCode>12077161</ProductCode><ProductAlias>MILKPAK UHT 27X250 ML (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.68</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1733</DistributorProductAttributeID><ProductID>825</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1003</ProductNumber><ProductCode>11430241</ProductCode><ProductAlias>NIDO PWDR 12X1KG PK ( NP )</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1734</DistributorProductAttributeID><ProductID>826</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1004</ProductNumber><ProductCode>12077137</ProductCode><ProductAlias>EVERYDAY 12X1KG (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1735</DistributorProductAttributeID><ProductID>827</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1005</ProductNumber><ProductCode>12073066</ProductCode><ProductAlias>EVERYDAY 1344X4g (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1736</DistributorProductAttributeID><ProductID>828</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1006</ProductNumber><ProductCode>11430196</ProductCode><ProductAlias>NESCAFE BIB 12X500g (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.33</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1737</DistributorProductAttributeID><ProductID>829</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1007</ProductNumber><ProductCode>12068723</ProductCode><ProductAlias>NESTEA PD PEACH 12X1KG (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1738</DistributorProductAttributeID><ProductID>830</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1008</ProductNumber><ProductCode>12020185</ProductCode><ProductAlias>NESTLE PD ORANGE 12X1KG (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.327</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1739</DistributorProductAttributeID><ProductID>831</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1009</ProductNumber><ProductCode>12020187</ProductCode><ProductAlias>NESTLE LEMON PD 12X1KG (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.327</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1740</DistributorProductAttributeID><ProductID>832</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1010</ProductNumber><ProductCode>12009306</ProductCode><ProductAlias>NESTLE PLN YGRT 20X80g (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.77</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1741</DistributorProductAttributeID><ProductID>833</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1011</ProductNumber><ProductCode>12014459</ProductCode><ProductAlias>NESTLE RAITA 20X80g (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1742</DistributorProductAttributeID><ProductID>834</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1012</ProductNumber><ProductCode>11430298</ProductCode><ProductAlias>NESTLE EASYWHIP 12X1L (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.28</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1743</DistributorProductAttributeID><ProductID>835</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1013</ProductNumber><ProductCode>11430262</ProductCode><ProductAlias>NESTLE BUTTER 10KG (NP)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1744</DistributorProductAttributeID><ProductID>836</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>61</ProductNumber><ProductCode>12102282</ProductCode><ProductAlias>CER WHEAT 320X25G PROBIO</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1745</DistributorProductAttributeID><ProductID>837</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>62</ProductNumber><ProductCode>12102421</ProductCode><ProductAlias>CER 3 FRUIT 320X25G PROBIO</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1746</DistributorProductAttributeID><ProductID>838</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>63</ProductNumber><ProductCode>12102404</ProductCode><ProductAlias>CER RICE 320X25G PROBIO</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1747</DistributorProductAttributeID><ProductID>839</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>60</ProductNumber><ProductCode>12122581</ProductCode><ProductAlias>NESCAFE CLAS 12X100G MUG</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.335</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1748</DistributorProductAttributeID><ProductID>840</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>326</ProductNumber><ProductCode>12117146</ProductCode><ProductAlias>MP CREAM PROMO 24X200G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.5</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1749</DistributorProductAttributeID><ProductID>841</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>808</ProductNumber><ProductCode>12124289</ProductCode><ProductAlias>NESTLE ZEERA RAITA 12X450G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1750</DistributorProductAttributeID><ProductID>842</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>809</ProductNumber><ProductCode>12124290</ProductCode><ProductAlias>NESTLE PODINA RAITA 12X450G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/></DistributorProductAttributes></DMS><DistributorProductAttributeID>1751</DistributorProductAttributeID><ProductID>843</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>64</ProductNumber><ProductCode>12118305</ProductCode><ProductAlias>EVERYDAY MUG PROMO 8X1KG</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1752</DistributorProductAttributeID><ProductID>850</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>328</ProductNumber><ProductCode>12058784</ProductCode><ProductAlias>NESQUIK RTD 24X200 ML</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.956</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1753</DistributorProductAttributeID><ProductID>851</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>100</ProductNumber><ProductCode>12081929</ProductCode><ProductAlias>CORN FLAKES 18X150g</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.277</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1754</DistributorProductAttributeID><ProductID>852</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>101</ProductNumber><ProductCode>12081957</ProductCode><ProductAlias>CORN FLAKES 18X275g</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.277</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1755</DistributorProductAttributeID><ProductID>853</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>102</ProductNumber><ProductCode>12081926</ProductCode><ProductAlias>KOKO KRUNCH 18X170g</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.277</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1756</DistributorProductAttributeID><ProductID>854</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>103</ProductNumber><ProductCode>12081925</ProductCode><ProductAlias>KOKO KRUNCH 18X330g</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.277</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1757</DistributorProductAttributeID><ProductID>855</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>104</ProductNumber><ProductCode>12088490</ProductCode><ProductAlias>KOKO KRUNCH PROMO 18X330g</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.277</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1758</DistributorProductAttributeID><ProductID>856</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>105</ProductNumber><ProductCode>9803005</ProductCode><ProductAlias>MILO CEREALS 18X170g</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.277</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1759</DistributorProductAttributeID><ProductID>857</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>106</ProductNumber><ProductCode>12082325</ProductCode><ProductAlias>MILO CEREALS 18X330g</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.277</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1760</DistributorProductAttributeID><ProductID>858</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>107</ProductNumber><ProductCode>9803010</ProductCode><ProductAlias>HONEY GOLD 18X220g</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.277</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1761</DistributorProductAttributeID><ProductID>859</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>130</ProductNumber><ProductCode>12014643</ProductCode><ProductAlias>FOXS MINT 24X100g</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1762</DistributorProductAttributeID><ProductID>860</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>131</ProductNumber><ProductCode>12031764</ProductCode><ProductAlias>FOXS BERRIES 24X90g</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1763</DistributorProductAttributeID><ProductID>861</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>132</ProductNumber><ProductCode>9124677</ProductCode><ProductAlias>POLO 12 (24X30g)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1764</DistributorProductAttributeID><ProductID>862</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>133</ProductNumber><ProductCode>9124557</ProductCode><ProductAlias>POLO 48 (30X9g)</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1765</DistributorProductAttributeID><ProductID>864</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>65</ProductNumber><ProductCode>12116764</ProductCode><ProductAlias>EVERYDAY PWDR 48X175G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1766</DistributorProductAttributeID><ProductID>865</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>810</ProductNumber><ProductCode>12118306</ProductCode><ProductAlias>RIWAYATI PLN YGRT 12x400gPK</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1767</DistributorProductAttributeID><ProductID>867</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>90</ProductNumber><ProductCode>12116496</ProductCode><ProductAlias>NIDO 1+ PROBIO 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1768</DistributorProductAttributeID><ProductID>868</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>91</ProductNumber><ProductCode>12116494</ProductCode><ProductAlias>NIDO 3+ PROBIO 24X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1769</DistributorProductAttributeID><ProductID>872</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>200</ProductNumber><ProductCode>12069509</ProductCode><ProductAlias>PRE NAN B 12X400G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.289</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1770</DistributorProductAttributeID><ProductID>880</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1300</ProductNumber><ProductCode>12116637</ProductCode><ProductAlias>EVERYDAY PWDR 9X2KG NP</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1771</DistributorProductAttributeID><ProductID>881</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>1400</ProductNumber><ProductCode>12117269</ProductCode><ProductAlias>LACTOGEN RECOVER 36X180G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>0.288</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1772</DistributorProductAttributeID><ProductID>882</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>820</ProductNumber><ProductCode>12116322</ProductCode><ProductAlias>NESTLE PLAIN YGRT 12X400 G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1773</DistributorProductAttributeID><ProductID>883</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>830</ProductNumber><ProductCode>12118307</ProductCode><ProductAlias>NESVITA YGRT 12X400 G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/><DistributorProductAttributeID>1773</DistributorProductAttributeID><ProductID>883</ProductID><DistributorID>21</DistributorID><LocationID>33</LocationID><ProductNumber>830</ProductNumber><ProductCode>12118307</ProductCode><ProductAlias>NESVITA YGRT 12X400 G</ProductAlias><DistributorAllowance>0</DistributorAllowance><DistributorAllowancePercentage>0</DistributorAllowancePercentage><SellingAllowance>0</SellingAllowance><FMR>1.364</FMR><ValidFrom>Jan 1 2009 12:00AM</ValidFrom><ValidTo>Dec 12 2099 12:00AM</ValidTo><PassOnFMR>1</PassOnFMR><ProductSegment/>Umair Nawazish |
|
|
|
|
|
|
|