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.
getting unexpected error when creating Journal Entry
Script: _createJE_itemFulfillment Error: UNEXPECTED_ERROR
Here is the code:
This is part of scheduled script:
var jeRecord = nlapiCreateRecord('journalentry');
jeRecord.setFieldValue("trandate", trandate);
jeRecord.setFieldValue("custbody_item_fulfillment_ref", itemFulfillID);
//Debit line
jeRecord.setLineItemValue('line', 'account', 0, 141);
jeRecord.setLineItemValue('line', 'debit', 0, totalcost);
jeRecord.setLineItemValue('line', 'department', 0, 50);
//Credit line
jeRecord.setLineItemValue('line', 'account', 1, 139);
jeRecord.setLineItemValue('line', 'credit', 1, totalcost);
jeRecord.setLineItemValue('line', 'department', 1, 50);
var newRec = nlapiSubmitRecord(jeRecord, false);
What is wrong?