Continue to Site

Welcome to MCAD Central

Join our MCAD Central community forums, the largest resource for MCAD (Mechanical Computer-Aided Design) professionals, including files, forums, jobs, articles, calendar, and more.

BOM Relations

mayor28

New member
My office uses the built in BOM/Repeat Reqion functionality of Pro. I am trying to initiate a stadardized set of materials for our office to use, and want to report them in the BOM on our drawings. Here is the catch: I want to report the parameter for part only drawings, not for assemblies. I need to write a relation that identifies if the active model of the drawing in a part or an assembly........


Something Like


IF MDL_TYPE=="PART"


BOM_SPEC=MDL.GENERIC.PTC_MATERIAL.SPEC


ELSE


BOM_SPEC=" "





I hope that someone can help, I am in a time crunch to deliver this......
 
Try this


IF ASM_MBR_TYPE=="PART"


BOM_SPEC=ASM_MBR_MATERIAL


ELSE


BOM_SPEC=""


ENDIF


Where MATERIAL is a parameter in the part/assembly.


In the top row of the repeat region for the required column you need to enter text with report sym/rpt/rel/user defined/BOM_SPEC
 

Sponsor

Articles From 3DCAD World

Back
Top