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!
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?