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.
Custom GL impact problem
Hi,
I'm trying to edit GL impact with custom GL. This is working correctly but i have a problem that
i need to create also Journal Entry because one of the accounts on the GL impact is not accessible by Custom GL.
For some reason script will creates this Journal Entry three times.
Does anyone have an idea why?
script:
var newLine = customLines.addNewLine();
newLine.setDebitAmount('500');
newLine.setAccountId(545); // Deposit
newLine.setMemo("CustomGL booking");
var newLine = customLines.addNewLine();
newLine.setDebitAmount('120');
newLine.setAccountId(109); // VAT
newLine.setMemo("CustomGL booking");
var newLine = customLines.addNewLine();
newLine.setCreditAmount('620');
newLine.setAccountId(548);