Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Adding Inventory Item (PHP Toolkit)
Hello,
I seem to be having an issue adding a couple of new items to the inventory through web services. The error code I am getting is "USER_ERROR" with the message "Please enter a value for Item." I am using the PHP Toolkit to generate the requests to Netsuite.
Here is the body portion of the XML add request I am sending that the Toolkit logs generated.
<Body> <add> <record xsi:type="InventoryAdjustment"> <tranDate>2009-09-16T09:50:25</tranDate> <inventoryList> <inventory> <item externalId="N122887"/> <location internalId="1"/> <adjustQtyBy>10</adjustQtyBy> </inventory> <inventory> <item externalId="N122891"/> <location internalId="1"/> <adjustQtyBy>10</adjustQtyBy> </inventory> </inventoryList> </record> </add> </Body>
0