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.
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.