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.
Need PO created through Web service to be created in Pending Receipt status
We are trying to automate some of our data flows and have some c# code creating PO's in the system. Everything is working as expected except for the status. The following code sets the PO status:
purchaseOrder.supervisorApproval = true;
purchaseOrder.supervisorApprovalSpecified = true;
purchaseOrder.orderStatus = PurchaseOrderOrderStatus._pendingReceipt;
purchaseOrder.orderStatusSpecified = true;
But the PO is still created in pending Supervisor approval status. The PO is not part of any workflow. Has anyone run across this issue while using the web services? And if so would you happen to know a solution for this issue? I have opened a support ticket and have not heard back yet. Was wondering if someone on the community has any suggestions?