我正在使用Microsoft Dynamics Web服务创建新的调整。它工作正常,但我需要添加原因码。我已经找到了如何添加所有内容(文件编号,日期,批次,仓库,物料编号,数量)的方法,但是找不到设置原因代码的任何方法。外面有人知道怎么做吗?
我在https://docs.microsoft.com/en-us/previous-versions/dynamicsgp/developer/cc508604(v%3dmsdn.10)处使用CreateInventoryAdjustment。
我最好的猜测是原因代码将在文档行级别设置,但是我找不到“原因代码”的任何选项。
// Populate the required properties of the inventory line adjustment object
inventoryAdjustmentLine.Key = inventoryLineKey;
inventoryAdjustmentLine.ItemKey = itemKey;
inventoryAdjustmentLine.Quantity = itemQuantity;
inventoryAdjustmentLine.WarehouseKey = warehouseKey;
// Create an array to hold the inventory line adjustment object
InventoryAdjustmentLine[] lines = {inventoryAdjustmentLine};
// Add the array of inventory adjustment lines to the inventory adjustment object
inventoryAdjustment.Lines = lines;