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.
Error Using Case Function in Custom Field
Recently, rules for our grant applications changed and now our applications expire 9 months after the date of submission of the application whereas before they expired 12 months after the date of approval. I have a custom field for each of the submission date and the approval date, now I would like a field that automatically calculates the expiration date. Here's what I have so far:
CASE WHEN ({custentity1}<=’09212009’,’MMDDYYYY’) THEN (ADD_MONTHS({custentity2}, 12)) WHEN ({custentity1}>=’09222009’,’MMDDYYYY’) THEN (ADD_MONTHS({custentity1}, 9)) END
The ADD_MONTHS function works properly, but I need it to populate differently based on whether the application was submitted prior to 9/21/09 or after. Right now I am getting an "Invalid Expression" error.