Discussions
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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.