Urgent Bug with Inserting Sales Orders in Batch

Urgent Bug with Inserting Sales Orders in Batch

Hi,

When I calls "SalesOrders/insertRecords" to insert more than 1 orders, the products will be attached to orders in a wrong way.

For example:

Request:
https://crm.zoho.com/crm/private/xml/SalesOrders/insertRecords?authtoken=...&scope=crmapi&newFormat=1&xmlData=
<SalesOrders>
      <row no="1">
            <FL val="Subject">SO - 1</FL>
            ...
            <FL val="Product Details">
                  <product no="1">
                        <FL val="Product Id">111111</FL>
                        ...
                  </product>
            </FL>
      </row>
      <row no="2">
            <FL val="Subject">SO - 2</FL>
            ...
            <FL val="Product Details">
                  <product no="2">
                        <FL val="Product Id">222222</FL>
                        ...
                  </product>
            </FL>
      </row>
</SalesOrders>

Result:
"SO - 1" and "SO - 2" will be inserted into CRM's SalesOrders module, but both have the same product "222222". It should be "SO - 1" has product "111111" and "SO - 2" has product "222222".

This API used to work properly. And our CRM integration application has to be stopped. It's urgent, please check it!

Regards,
Sun Yu