Most components are placed into Openplant Modeler with the Shop Field Property set to blank as default. Valves are one component that is automatically set to Field.
Normally the components which were blank would become SHOP items in our isometric drawings.
We are producing Isometric drawings in Isometric Manager and all the components are being displayed as Field.
Now they are all being defaulted to become FIELD items. Is it possible to reverse that and have any 'Blank" items to be listed as shop items in the isometric drawings?
The report def is shown as thus:
#-----------------------------------------------------------------------------
# A sample report that writes shop material to a report
#-----------------------------------------------------------------------------
REPORT = SHP
# this to include only shop material
INCLUDE = IE_FIELD=0
EXCLUDE = IE_TYPE=CT_WELD
COLUMN = 5: C : PARTID
COLUMN = 7: C : QUANTITY
COLUMN =102: W : ITEM
GROUP = PARTID
SORT = PARTID:N
SEP = @
SORTHEADERS = 1
TEXT = @----------------------------------------------------------
TEXT = @ SHOP MATERIALS
TEXT = @----------------------------------------------------------
Write =
END
#-----------------------------------------------------------------------------
# A sample report that writes field material to a report
# Defintion is the same as for the SHP report except for the INCLUDE line
#-----------------------------------------------------------------------------
REPORT = FLD
# this to include only field items
INCLUDE = IE_FIELD=1
EXCLUDE = IE_TYPE=CT_WELD
COLUMN = 5: C : PARTID
COLUMN = 7: C : QUANTITY
COLUMN =102: W : ITEM
GROUP = PARTID
SORT = PARTID:N
SEP = @
SORTHEADERS = 1
TEXT = @----------------------------------------------------------
TEXT = @ FIELD MATERIALS
TEXT = @----------------------------------------------------------
Write =
END
#-----------------------------------------------------------------------------
# The COMBI report combine the SHP and FLD and ATCOValves report into a single report
# and attaches it to textnode 60 in the isometric
#-----------------------------------------------------------------------------
REPORT = combi
WRITE = shp
TEXT = @
WRITE = fld
NODE = 60
END
Tag data for all components are shown as this:
I have a feeling the default was changed somewhere and we just need to change it back. Hopefully this information will help.