Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
[Code=USER_ERROR] Please enter value(s) for: Adjust Qty. By
I am using web service to add an InventoryAdjustment record, but it always throws an error as the title describes. Anyone has met this kind of problem before?
//set the item list which is to be adjusted
InventoryAdjustmentInventoryList lists = new InventoryAdjustmentInventoryList();
InventoryAdjustmentInventory inventories[] = new InventoryAdjustmentInventory[1];
InventoryAdjustmentInventory inven1 = new InventoryAdjustmentInventory();
// InventoryAdjustmentInventory inven2 = new InventoryAdjustmentInventory();
String itemID = "1043";
RecordRef item = new RecordRef();
item.setInternalId( itemID );
item.setType( RecordType.inventoryItem );
inven1.setItem( item );
inven1.setLocation( location );
inven1.setAdjustQtyBy( new Double( 1 ) );
inven1.setUnitCost( new Double( 5 ) );
inventories[0] = inven1;
// inventories[1] = inven2;
lists.setInventory( inventories );
this.adjustment.setInventoryList( lists );
you see I have already set the AdjustQtyBy field value. It is really strange.