RE: Create drop-ship sales order using econnect schema
I found the solution for this issue.
1. Generate Sales Order for Drop-Ship line items with lot number and non-lot number items.
If we using only drop-ship non-lot number items in SOP Line level we need to give following parameter values in taSopLineIvcInsert_ItemsTaSopLineIvcInsert schema.
SOPNUMBE
SOPTYPE
DOCID
CUSTNMBR
DROPSHIP = 1;
NONINVEN = 0;
LOCNCODE
ITEMNMBR
ITEMDESC
QUANTITY
UNITPRCE
XTNDPRCE
DOCDATE
If we using only drop-ship lot number items in SOP Line level we need to give additional one parameter value in taSopLineIvcInsert_ItemsTaSopLineIvcInsert schema.
AUTOALLOCATELOT = 1; // lot number items
If we using both drop-ship lot number items and non-lot number items in SOP Line level we need to give additional two parameter value in taSopLineIvcInsert_ItemsTaSopLineIvcInsert schema.
AUTOALLOCATELOT = 1; // lot number items
AutoAssignBin = 1; // non-lot number items
Thanks
Soma