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.
SalesOrder afterSubmit - Code Review Request
The code below serves the following purposes:
1) Auto approve credit card orders under function SOCreditReview(type){
try {
//Do only on create.
if ( type != 'create' )
{
return true;
}
var emailtrue = new Boolean;
var emailsubject = new String
var emailbody = new String
var transactiondescription = new String
var integrationstatus = new String
emailtrue = "F"
emailsubject = ""
emailbody = ""
//Max amount we will auto approve
autoapproveamount = 250
//soautoapprove needs a value of 6 to be autoapproved
soautoapprove = 0
//Get the InternalId of the Sales Order
var tranRecordId = nlapiGetRecordId();
//Load the sales order
var tranRecord = nlapiLoadRecord('salesorder',tranRecordId);
tranNumber = tranRecord.getFieldValue('tranid')
//Set the transactiondescription in case we have a fatal error
transactiondescription = "Sales Order =" + tranNumber