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!
Dynamic id's for getRecordAttribute
Would anyone know if it is possible to dynamically pass the 'id' into the following:
<%=getRecordAttribute('recordTypeID','id','attribute')%>
The business goal is to display different values on an item detail page based on the preferred location. For example, one warehouse will ship in 1 business day while another is 3-5 business days.
I would like to do:
<%=getRecordAttribute('location',<%=getCurrentAttribute('item','location')%>,' custrecord_shippingdays')%>
The intend would be:
<%=getCurrentAttribute('item','location')%> gets the location.internalId
getRecordAttribute uses that location.internalId to get the value in custrecord_shippingdays.
Just dreaming, if anyone has a suggestion, greatly appreciate it.