사용 사례 8: 두 속성에 따라 부품을 생략하여 다운스트림 구조 생성
BOM 변환기에 다음 구조가 존재한다고 가정해 보십시오.
Upstream Parent Part (Design)Downstream Parent Part (Manufacturing) 사이에 등가 링크가 존재합니다.
Part C2 (Design), Part C3 (Design), Part C5 (Design)Part C6 (Design)에는 부품 사용 속성 Attribute1true로 설정되어 있습니다.
* 
Attribute1은 부울 유형의 속성입니다. Windchill에서 이 속성의 값은 YesNo입니다. truefalse는 각각 YesNo와 동의어입니다.
구조에 있는 모든 부품은 부품 유형이 wt.part.WTPart입니다.
1. Windchill/codebase/com/ptc/core/foundation/associativity에 있는 associativity.properties.xconf 파일에 액세스합니다.
2. 다음 재구성 규칙을 추가합니다.
<Property name="com.ptc.windchill.associativity.reconciliation.addusage.wt.part.WTPart" multivalued="," default=""/>
<AddToProperty name="com.ptc.windchill.associativity.reconciliation.addusage.wt.part.WTPart" value="transformoption=newPart"/>
<AddToProperty name="com.ptc.windchill.associativity.reconciliation.addusage.wt.part.WTPart" value="targetType=wt.part.WTPart"/>
<AddToProperty name="com.ptc.windchill.associativity.reconciliation.addusage.wt.part.WTPart" value="attributeMapping.rule1=Attribute1:true:CustomAttribute1:String1"/>
<AddToProperty name="com.ptc.windchill.associativity.reconciliation.addusage.wt.part.WTPart" value="skipAttribute.source=Buy"/>
<AddToProperty name="com.ptc.windchill.associativity.reconciliation.addusage.wt.part.WTPart" value="skipAttribute.Attribute2=true"/>
<AddToProperty name="com.ptc.windchill.associativity.reconciliation.addusage.wt.part.WTPart" value="doAndValidationForAttr=true"/>
* 
업스트림에서 선택한 부품에 대한 작업을 시작하면 Windchill 시스템이 선택한 부품 아래의 구조를 트래버스합니다. 이 구성을 통해 다음이 수행됩니다.
Windchill 시스템이 업스트림 구조에서 부품 속성 Attribute1true로 설정된 부품을 감지하면 이 부품은 다운스트림 구조에서 속성 CustomAttribute1String1로 설정된 부품 아래에서 변환됩니다. 이 부품은 새 부품으로 변환됩니다.
Windchill 시스템이 업스트림 구조에서 부품 사용 속성 Attribute2true로 설정되고 속성 SourceBuy로 설정된 부품을 감지하면 해당 부품이 생략되고 다운스트림에 추가되지 않습니다. 그러나 감지된 부품 아래의 구조는 트래버스됩니다.
3. 가운데 창 도구 모음에서 Upstream Parent Part (Design)을 선택하고 을 클릭합니다.
4. BOM 변환기에서 다음 구조가 나타납니다.
* 
Part C1 (Design)이 생략됩니다. 이는 다음 등록 정보에 설정된 조건을 충족하므로 다운스트림에 추가되지 않습니다.
<AddToProperty name="com.ptc.windchill.associativity.reconciliation.addusage.wt.part.WTPart" value="skipAttribute.source=Buy"/>
<AddToProperty name="com.ptc.windchill.associativity.reconciliation.addusage.wt.part.WTPart" value="skipAttribute.Attribute2=true"/>
<AddToProperty name="com.ptc.windchill.associativity.reconciliation.addusage.wt.part.WTPart" value="doAndValidationForAttr=true"/>
Attribute1false로 설정되어 있으므로 Part C4 (Design)가 다운스트림에 추가되지 않습니다.
부품 사용 속성 CustomAttribute1 값이 String1이 아니라 String2로 설정되어 있으므로 부품은 Part T2 (Manufacturing) 아래에 추가되지 않습니다.
도움이 되셨나요?