추가 Windchill 기능 > 제조 공정 관리 > 제품 구조 탐색기(PSE) 사용자 정의 > PSE 구조 질의 사용자 정의 > 솔루션 > 절차
  
절차
ExplorerSearchableTypes.xml 파일을 편집하고 마지막 줄인 </LogicRepository> 앞에 다음 줄을 삽입합니다.
<!-- New Query definition for subtype myPart -->
<ExplorerElementGroup>
<LogicContext application="ptc.wnc.StructureExplorer"
dataType="com.aprilia.www.myPart"/>
<AttributeGroup id="ptc.wnc.exp.QuerySearchableAttrs" displayMode="view">
<!-- Remove the following that would otherwise be inherited from WTPart
Definition -->
<CellDefinition id="endItem">
<Placement remove="true"/>
</CellDefinition>
<CellDefinition id="genericType”>
<Placement remove="true"/>
</CellDefinition>
<CellDefinition id="referenceDesignator">
<Placement remove="true"/>
</CellDefinition>
<!-- Add the specific attributes of myPart -->
<CellDefinition id="myCost">
<AttributeDefinition attributeId="com.aprilia.www.myCost"/>
</CellDefinition>
<CellDefinition id="myDescription">
<AttributeDefinition attributeId="com.aprilia.www.myDescription"/>
</CellDefinition>
</AttributeGroup>
</ExplorerElementGroup>
이렇게 하면 의도한 결과 단원에 나온 것처럼 메소드 서버를 다시 시작하면 유형 드롭다운에 "myPart"가 나타납니다. "최종 품목", "일반" 및 "참조 지정자" 등록 정보 엔트리는 제거되고 "myCost" 및 "myDescription"이 추가됩니다.
또는 XML 사용자 정의를 통해 PSE UI의 다른 측면을 변경하려는 경우 모든 "myPart" 사용자 정의가 들어 있는 XML 파일에 이러한 추가 줄을 추가할 수 있습니다.