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.

qty override

schick

New member
I'm looking to find a way to override the rpt.qty valuein a repeat region without having to add another parameter to define.


Any and all suggestions wanted!!


Thanks.


Schick
 
Schick,


Here is a sample of table relations that we use.


The bulk item overide is included in all of our standard tables.


The REF overide is an example of how to overide an individual column. replace the 26463-01XX with your part number and the quantity column must use &rpt.rel.NUM


IF asm_mbr_name == "26463-01XX"
NUM = "REF"
ELSE
NUM = rpt_qty


IF asm_mbr_type == "BULK ITEM"
NUM = "AR"
ELSE
NUM = rpt_qty


ENDIF
ENDIF


Curtis
 

Sponsor

Articles From 3DCAD World

Back
Top