Unable to populate data, please check if mandatory value is entered correctly #4401

Unable to populate data, please check if mandatory value is entered correctly #4401

I am getting an error while inserting Sales Order in to CRM using API. The problem doesn't occur everytime but only when the order includes a discount/adjustment. Following is the xml that I am sending with request-
  1. <SalesOrders>
  2.     <row no="1">
  3.         <FL val="Subject">XXXXX Order# 123 - ABC XYZ</FL>
  4.         <FL val="CONTACTID">1094327000000211001</FL>
  5.         <FL val="ECWID ID">123</FL>
  6.         <FL val="Status">QUEUED</FL>
  7.         <FL val="Email">example@mailinator.com</FL>
  8.         <FL val="Billing Street">xxx Nautical Dr</FL>
  9.         <FL val="Billing City">Columbus</FL>
  10.         <FL val="Billing State">Ohio</FL>
  11.         <FL val="Billing Code">43207</FL>
  12.         <FL val="Billing Country">United States</FL>
  13.         <FL val="Shipping Street">xxx Gibbard Ave</FL>
  14.         <FL val="Shipping City">Columbus</FL>
  15.         <FL val="Shipping State">Ohio</FL>
  16.         <FL val="Shipping Code">43201</FL>
  17.         <FL val="Shipping Country">United States</FL>
  18.         <FL val="Grand Total">48.4</FL>
  19.         <FL val="Adjustments">-9.6</FL>
  20.         <FL val="Sub Total">58</FL>
  21.         <FL val="Flyer/Pamphlet">Yes</FL>
  22.         <FL val="The Book">No</FL>
  23.         <FL val="Product Details">
  24.             <product no="1">
  25.                 <FL val="Product Id">1094327000000121003</FL>
  26.                 <FL val="Quantity">1</FL>
  27.                 <FL val="Total">24</FL>
  28.                 <FL val="Discount">0</FL>
  29.                 <FL val="Total After Discount">24</FL>
  30.                 <FL val="List Price">24</FL>
  31.                 <FL val="Tax">0</FL>
  32.                 <FL val="Net Total">24</FL>
  33.             </product>
  34.             <product no="2">
  35.                 <FL val="Product Id">1094327000000124001</FL>
  36.                 <FL val="Quantity">1</FL>
  37.                 <FL val="Total">24</FL>
  38.                 <FL val="Discount">0</FL>
  39.                 <FL val="Total After Discount">24</FL>
  40.                 <FL val="List Price">24</FL>
  41.                 <FL val="Tax">0</FL>
  42.                 <FL val="Net Total">24</FL>
  43.             </product>
  44.             <product no="3">
  45.                 <FL val="Product Id">1094327000000143019</FL>
  46.                 <FL val="Quantity">1</FL>
  47.                 <FL val="Total">10</FL>
  48.                 <FL val="Discount">0</FL>
  49.                 <FL val="Total After Discount">10</FL>
  50.                 <FL val="List Price">10</FL>
  51.                 <FL val="Tax">0</FL>
  52.                 <FL val="Net Total">10</FL>
  53.             </product>
  54.         </FL>
  55.         <FL val="Carrier">UPS Ground</FL>
  56.         <FL val="Description"></FL>
  57.     </row>
  58. </SalesOrders>