Drawing parts list parameters using description or common name
Using Creo 9.0....I have some legacy parts that were named with the description parameter and all my new parts have been named with ptc_common_name parameter. Is there a way for my drawing parts list to pull either name if i have an assembly with both new and legacy parts? I was thinking of adding a repeat region relation that is along the lines of the code below. Also, i don't want to modify the original part files. Is there a way to do this because my way isn't working.
/NAME is new drawing parameter for the name column
If description exists
NAME = asm.mbr.description
endif
If ptc_common_name exists
NAME = asm.mbr.ptc_common_name
endif

