Mark
08/29/2025, 1:10 PMCeligo AI
08/29/2025, 1:10 PMAI generated answer (using internal Slack threads):Based on the conversations, it seems that you can access the Current Revision sublist field via scripting on the Assembly Item record under the Manufacturing tab on the Bill of Materials sublist. Here is an example of how you can do this:
javascript
var assy = record.load({type: record.Type.ASSEMBLY_ITEM, id: 4147});
var revision = assy.getSublistValue({sublistId: 'billofmaterials', fieldId: 'currentrevision', line: 0});
However, if you want to find this field through a scripted search or a lookupfields, you might need to do it in a roundabout way. You can refer to the records browser for more information: https://system.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2019_1/script/record/bomrevision.html
If you are having trouble writing a script to edit the components of a BOM revision, one of the suggested methods is to use CSV import. You can inactivate the old revision in the first import and then create new revisions in the second import. However, the formatting for this process was not provided in the conversations.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
08/29/2025, 1:10 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.8016693
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.790242
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.788943529
Celigo AI
08/29/2025, 1:10 PM