사용 사례 5: 부품에 따라 트래버스되지 않은 특정 구조를 사용하여 다운스트림 구조 생성
BOM 변환기에 다음 구조가 존재한다고 가정해 보십시오.
• Upstream Parent Part (Design) 및 Downstream Parent Part (Manufacturing) 사이에 등가 링크가 존재합니다.
• 구조에서 Part C2 (Design)를 제외한 모든 부품은 부품 유형이 wt.part.WTPart입니다.
• Part C2 (Design)의 부품 유형은 ElectricalPart입니다.
구조 통과를 기반으로 다운스트림 구조를 생성하려면 규칙 파일 또는 등록 정보 파일을 사용하여 변환 및 재구성 규칙을 지정할 수 있습니다.
규칙 파일 사용
{
"transformRules": [
{
"sourceType": "wt.part.WTPart",
"newAttributeMappings": [
[
"source.usage.AttributeNum1:String1",
"target.part.AttributeNum2:String2"
]
],
"targetType": "wt.part.WTPart",
"transformOption": "newPart"
},
{
"sourceType": "com.ptc.ElectricalPart",
"doNotTraverse": "true"
},
]
}
등록 정보 파일 사용
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=newBranch"/>
<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=AttributeNum1:String1:AttributeNum2:String2"/>
| 매핑과 관련된 등록 정보의 경우 업스트림 및 다운스트림에 대해 지정된 매핑 속성은 동일하지 않아야 합니다. |
<Property name="com.ptc.windchill.associativity.reconciliation.addusage.com.ptc.ElectricalPart" multivalued="," default=""/>
<AddToProperty name="com.ptc.windchill.associativity.reconciliation.addusage.com.ptc.ElectricalPart" value="transformOption=newBranch"/>
<AddToProperty name="com.ptc.windchill.associativity.reconciliation.addusage.com.ptc.ElectricalPart" value="doNotTraverse=true"/>
업스트림에서 선택한 부품에 대한
작업을 시작하면 Windchill 시스템이 선택한 부품 아래의 구조를 트래버스합니다. 이 구성을 통해 다음이 수행됩니다.
• Windchill 시스템이 부품 사용 속성 AttributeNum1이 String1로 설정된 부품을 감지하면 감지된 부품이 다운스트림 구조에서 부품 유형이 wt.part.WTPart이고 부품 사용 속성 AttributeNum2가 String2로 설정된 부품 아래에 새 분기로 추가됩니다.
• Windchill 시스템이 부품 유형이 ElectricalPart인 부품을 감지하면 해당 부품이 새 분기로 추가됩니다. 그러나 시스템은 감지된 부품 아래의 구조를 트래버스하지 않습니다.
이 경우 ElectricalPart의 매핑과 관련된 등록 정보가 추가되지 않습니다. ElectricalPart는 wt.part.WTPart의 한 하위 유형입니다. ElectricalPart는 wt.part.WTPart의 GDS 매핑 등록 정보를 상속합니다.
BOM 변환기에서 다음 구조가 나타납니다.
• ElectricalPart의 매핑과 관련된 등록 정보가 추가되지 않습니다. 여전히 Part C2 (Manufacturing)는 부품 사용 유형이 wt.part.WTPart인 다운스트림 부품 아래에 새 분기로 추가되고 해당 부품 사용 속성 AttributeNum2가 String2로 설정됩니다. 이는 ElectricalPart가 wt.part.WTPart의 하위 유형이기 때문입니다. ElectricalPart는 wt.part.WTPart의 GDS 매핑 등록 정보를 상속합니다. GDS 매핑 등록 정보가 wt.part.WTPart에 대해 정의됩니다.
• <AddToPropertyname="com.ptc.windchill.associativity.reconciliation.addusage.com.ptc.ElectricalPart" value="doNotTraverse=true"/>에 설정된 조건에 따라 Part C2 (Design)가 Part C2 (Design)이므로 ElectricalPart 아래의 구조는 변환되지 않습니다.