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.
Message on Customer Header Stating The Customer Is Inactive
The sales team has asked if we can put something on the customer record in larger font that indicates that the customer is inactive. I did a similar formula in a custom HTML entity field to show them if the customer is past due. But I can't seem to get the formula correct to just show the message if the customer is marked inactive. Has anyone else done something similar?
This is the Credit Limit Warning formula
CASE WHEN {custentity_remaining_credit_calc} <0 THEN '<b><span style="color:white; background-color:red; font-size: 200%"> Credit Limit Exceeded</span></b>' WHEN ({creditlimit}-{balance})/NULLIF({creditlimit},0) <0.2 THEN '<b><span style="background-color: yellow; font-size: 125%"> Approaching Credit Limit</span></b>' ELSE 'No Credit Concerns' END