Omar,
By default, instruments are not output to the BOM table in the out-of-box styles. To add instruments to the BOM table, please add a new group for Instruments to the AggregatedList/Groups element. As an illustration, I have added such a group at the end of the XML snippet below.
Add below into </AggregatedList> in isoconfig.xml
<Group Name="Instrument">
<Labels>
<Label Name=”instrument” />
</Labels>
<Columns>
<Column Name="Category"/>
<Column Name="Code"/>
</Columns>
<Sort SortBy="Type ASC"/>
<RowFilter Filter="Instrument"/>
</Group>
E.g. Red text are the location which should be added.
<Group Name="PIPE SUPPORTS">
<RowFilter Filter="Support" />
<Labels>
<Label Name="pipe supports" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,Size ASC" />
</Group>
<Group Name="Instrument">
<Labels>
<Label Name="instrument" />
</Labels>
<Columns>
<Column Name="Category"/>
<Column Name="Code"/>
</Columns>
<Sort SortBy="Type ASC"/>
<RowFilter Filter="Instrument"/>
</Group>
</Groups>
</AggregatedList>
<AggregatedList xsi:type="IsoCompositeDataListConfig" Name="ShopMaterials">
<RowFilter Filter="ItemCodeNotNullAndCategoryFabItem" />
If BOM is separated into Fabrication & Erection items, then we should also add above into ShopMaterials and FieldMaterials </AggregatedList> as well.
Chad