Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Email Alerts / Customize Message & Formulas
When creating an email alert from a saved search, one has the option of using a formula with the results:
Use the syntax <%=formula%> to add formulas to the text. Formulas can include {fieldID} references.
In the example below, how do I incorporate text strings in the results?
For example, the formula below returns the results as expected:
<%=Case when {custrecord_muv_customer} Is Null Then {custrecord_muv_contact} End%>
But what I would really like to return is:
<%=Case when {custrecord_muv_customer} Is Null Then "SomeText or the actual FieldName:" {custrecord_muv_contact} End%>
I can't find a way to incorporate text into the formula without it returning an error (I've tried single and double quotes). Is there a workaround to this?