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.
Access custom record from workflow action
Scenario:
- built a custom record with two columns: Name and Number of Days (Integer Number). Record is called Follow-up Categories
- created custom transaction field (List/Record) called FU Category that uses Follow-up Categories
- built a Set Field Value workflow action that executes on Field Change event for FU Category on the transaction. The action should set a custom Date field to today's date + the integer in the custom record. Here's the Value formula:
nlapiDateToString(nlapiAddDays(new Date(), {custbody_followupcategory.custrecord_numberofdays}))
It almost works, but instead of pulling the integer from Number of Days, it pulls the internal ID integer for the respective record. In other words, if I choose the first-entered record in the dropdown, which should have a value of 10, it adds 1 to today's date. I'm certain it's looking at the correct record/row each time, but it's simply not returning the specified column.