Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi,
We are having part type as BOM or Non BOM (Dummy), BOM means actually going to production and dummy is just to show ( not mfg.). So in model tree we have dummy parts with extension as underscore "_" e.g. 123456789012_BRACKET ( Non BOM). and we want to show its BOM number in repeat region as 123456789012 and for other component which is having BOM number will show as it is.
So please can anyone help me to do this through repeat region options or toolkit program.
Thanks,
Prashant Pandarkar
Solved! Go to Solution.
Hi,
I got the answer from PTC community.
Truncate Filename in BOM Repeat Region
Thanks All.
- Prashant Pandarkar
Hi,
I got the answer from PTC community.
Truncate Filename in BOM Repeat Region
Thanks All.
- Prashant Pandarkar
Add a repeat region relation such as:
NAME = ASM_MBR_NAME
if Search(ASM_MBR_NAME, "_") != 0
NAME=extract(ASM_MBR_NAME,1,Search(ASM_MBR_NAME, "_")-1)
endif
Then add a column "rep.rel.NAME" instead of "asm.mbr.name"