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 Image on the Customer Record
Does anyone know how to generate an image in a custom image field on the customer record based upon the value in a list field? Example: if custom field equals 1 (list field with selections of 1-2-3-4-5) display a picture from the images folder on the customer record in an image field.
I thought this might be relatively easy to do with a DECODE or CASE sql expression, but when an image custom field does not have a "default value" or formula fields to use SQL (available in other custom field types but not visible for Image).
example: CASE WHEN {list value} = '1' THEN urlforpicture1 WHEN {list value} = '2' THEN urlforpicture2 WHEN {list value} = '3' THEN urlforpicture3 WHEN {list value} = '4' THEN urlforpicture4 WHEN {list value} = '5' THEN urlforpicture5 ELSE null END