Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! 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"