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.
terms aren't populated in sales order
When I create sales order using suite talk API "terms" are not added automatically although they are set in customer .
And when I tried to insert them explicitly I receive "Please enter a payment method" error message.
Any help of how can I get them populated either automatically or explicitly.
This is my code:///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
var salesOrder = new SalesOrder
{
entity = xxxxxx,
shipDate =xxxxxx
shipDateSpecified = true,
itemList = xxxxxx,
customFieldList = xxxxxx,
};
salesOrder.terms = new RecordRef //Set terms explicitly
{
type = terms.type,
typeSpecified = true,
internalId = xxxxx,
};
var response = netSuiteService.add(salesOrder);
// response.status.isSuccess = false;
// response.status.statusDetail[0].message = "Please enter a payment method"