
Hi,
I want create drop-ship sales order using eConnect. I used taSopLineIvcInsert shema to create drop-ship sales order successfully. If i using lot number in sales line detail the following eConnect error therew. Can anyone help me to solve this problem....
*This post is locked for comments
I have the same question (0)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