Good day everyone! Question: What is the proper s...
# suitescript
k
Good day everyone! Question: What is the proper syntax to call a custom record in FreeMarker Email templates? • I have tried a few different methods from the official docs as well as some stack overflow suggestions, however nothing seems to work. • My custom record simply contains two text fields and NOT a sublist of records - so it should be simple? What I have tried:
<#if (customrecord_sb_ship.custrecord_tbq_threshold)?has_content> ${customrecord_sb_ship.custrecord_tbq_threshold}><#else>no CR value!<#if>
<#list customrecord_sb_ship.custrecord_tbq_threshold as sublist1>${sublist1}</#list>
<#list customrecord_sb_ship as item2>${item2.custrecord_tbq_threshold}</#list>
All of which fail...