BOM Relations in Repeat Region
Hi all,
I'm trying to get a set of relations/parameters to work in my repeat region BOM table, but having some issues.
Essentially I've got a bulk item in my top level assembly. I currently have a set of relations for my repeat region as:
IF asm_mbr_type == "BULK ITEM"
qty = "A/R"
ELSE
qty = rpt_qty
ENDIF
This works great for a lot of our bulk items that use smaller quantities, as they just show up in the table as "A/R". However, I'd like a way to report the quantity used for other bulk items as a discrete amount (total volume of glue used, for example).
I can do this by changing the relations to
IF asm_mbr_type == "BULK ITEM"
qty = "A/R"
ELSE
qty = rpt_qty
ENDIF
IF asm_mbr_part_num == "bulk"
qty = "2 gal"
ENDIF
Again, this works great as well. However, I have to manually calculate & then enter the "2 gal" value. As said item is changed/revised/save-as, this "2 gal" value will most definitely change as well.
I'd like to be able to use a parameter/relation in the assembly that contains the bulk item (measure of surface area * bond line thickness, as an example) to parametrically calculate this value. I've called the parameter "volu" & I can drop a note in the part as "&volu" where it feeds back the calculated/updated value just fine.
My first thought was to do this:
IF asm_mbr_type == "BULK ITEM"
qty = "A/R"
ELSE
qty = rpt_qty
ENDIF
IF asm_mbr_part_num == "bulk"
qty = &volu
ENDIF
However, that doesn't work because the volu parameter is part of the top level assembly, & not the bulk item.
Is there a way to drive the repeat region with this parameter?

