BOM_REPORT_QUANTITY if 0 display as A/R
When using Creo standard bulk items I have 2 scenarios.
1. bulk item will always display as A/R in the BOM repeat region. Glues, tape, etc. No prompt when added to an assembly.
2. bulk item will always display a value based bom_report_quantity. Tubing, foam, etc. User prompted when added to an assembly to enter the bom_report_quantity.
I can get either to work independently but not together. I have tried many variations but I end up with getting the "errors regenerating repeat region relations" when updating the tables.
The below attempts return no values for bom_qty
#1
IF ASM_MBR_REPORT_QUANTITY==0
BOM_QTY="A/R"
ELSE
BOM_QTY=rpt_qty
ENDIF
#2
IF EXISTS ("ASM_MBR_REPORT_QUANTITY")
IF ASM_MBR_REPORT_QUANTITY==0
BOM_QTY="A/R"
ELSE
BOM_QTY=rpt_qty
ENDIF
ENDIF
The below reports relation errors and will only have a blank for the bulk item with a bom_report_quantity of 0
BOM_QTY=rpt_qty
IF EXISTS ("ASM_MBR_REPORT_QUANTITY")
IF ASM_MBR_REPORT_QUANTITY==0
BOM_QTY="A/R"
ELSE
BOM_QTY=rpt_qty
ENDIF
ENDIF
But I get the same result with no errors by simply having the below relation:
BOM_QTY=rpt_qty
My questions are:
1. Can you only use the standard Creo bulk item part to report something with a greater than 0 QTY in a repeat region?
2. Is there a means to selectively identify those with a 0 QTY and via relation have them show as A/R?
Any thought or suggestions would be appreciated.

