Skip to main content
15-Moonstone
March 11, 2017
Solved

How to remove all part-number which is having underscore "_" in there name from repeat region table?

  • March 11, 2017
  • 2 replies
  • 2016 views

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

Best answer by ppandarkar-2_183531

Hi,

I got the answer from PTC community.

Truncate Filename in BOM Repeat Region

Thanks All.

- Prashant Pandarkar

2 replies

15-Moonstone
March 11, 2017

Hi,

I got the answer from PTC community.

Truncate Filename in BOM Repeat Region

Thanks All.

- Prashant Pandarkar

1-Visitor
March 11, 2017

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"