So our standard parametric BOM balloon is a custom balloon... it has the index number (index) on top and the part number (asm.mbr.number) on the bottom. I got this working just fine for conventional models and drawings.
Sometimes, we have imported wire diagrams inserted on our drawings which...
Click the Annotate tab and then look in your Drawing Tree.. it should be nested in there somewhere.
If you don't see it in your model tree, then you most likely permanently deleted it.
Thanks for all the help everyone.
What I ended up doing was using a user defined report symbol in the BOM part number column (rpt.rel.pnreport) as opposed to the standard asm.mbr.name.
From here, I created a relation in the repeat region as follows:
pnreport=extract(asm_mbr_name,1,6)
This...
Okay here's what I ended up doing with the BOM relations and it seems to work... I added a column to the BOM table, asm_mbr_type and used the following relation:
IF asm_mbr_type=="BULK ITEM"
pnreport=asm_mbr_bulkname
ELSE
pnreport=asm_mbr_name
ENDIF
and then I deleted the asm_mbr_type column...
I tried this but it doesn't seem to do anything.
It comes up with "Probable error in function evaluation"
Can you explain to me what the -5 means in the code? I don't get what line 2 is actually saying.
Okay, I've been going at this for hours now and I’m having no luck. Hopefully someone on here has had a similar issue and can help…
[Background Info]
We add “_bulk” to bulk item part numbers to differentiate them from actual parts.
For example, if we have part number “AB1234” the bulk item...