To anyone who has Advanced BOMs turned on, do you ...
# suitescript
s
To anyone who has Advanced BOMs turned on, do you know of a way to access the Current Revision sublist field via scripting? It is on the Assembly Item record under the Manufacturing tab on the Bill of Materials sublist.
e
Copy code
var assy = record.load({type: record.Type.ASSEMBLY_ITEM, id: 4147});
var revision = assy.getSublistValue({sublistId: 'billofmaterials', fieldId: 'currentrevision', line: 0});
s
Thank you for your answer. Is it possible to find this field through a scripted search or a lookupfields?
e