추가 Windchill 기능 > 제조 공정 관리 > 일반 MPMLink 탐색기 사용자 정의 > 기본 측정 단위 변경 > 작성 마법사에 사용자 정의 속성 추가
  
작성 마법사에 사용자 정의 속성 추가
다음 절차에 따라 새 작업 삽입 마법사와 같은 작성 마법사에 속성을 추가합니다.
1. 다음 디렉토리로 이동합니다.
codebase\config\logicrepository\xml\explorer\customization
2. 다음 파일을 편집합니다.
CustProcessPlanExplorerMain.xml
3. 다음 XML 조각을 추가합니다.
* 
이 예에서는 작업 삽입 마법사에 추가될 속성이 inspectionNeededInspectionInterval입니다. 사용자 정의할 마법사에 맞게 코드를 수정하고 고유한 사용자 정의 속성을 추가합니다.
<ExplorerElementGroup>
<LogicContext application="ptc.cust.ProcessPlanExplorer"
dataType="com.ptc.windchill.mpml.processplan.operation.MPMOperation"/>
<AttributeGroup id="ptc.mpm.exp.CreateTab2" scrollable="true" displayMode="edit">
<CellDefinition id="inspectionNeeded">
<Label>
<Resource key="inspectionNeededLabel"/>
</Label>
<AttributeDefinition attributeId="inspectionNeeded"/>
</CellDefinition>
<CellDefinition id="inspectionInterval">
<Label>
<Resource key="inspectionIntervalLabel"/>
</Label>
<AttributeDefinition attributeId="inspectionInterval"/>
</CellDefinition>
</AttributeGroup>
</ExplorerElementGroup>
4. Java 캐시를 지우고 공정 계획 탐색기를 다시 시작합니다.
이 예에서는 다음 사항에 유의하십시오.
이 XML 조각에 사용된 응용 프로그램 ID는 ptc.cust.ProcessPlanExplorer입니다. 이 ID는 공정 계획 탐색기 사용자 정의 시 권장되는 응용 프로그램 ID입니다.
MPMOperation 객체 ptc.mpm.exp.CreateTab2에 대한 두 번째 기본 작성 마법사는 다음 위치에 정의되어 있습니다.
codebase\config\logicrepository\xml\explorer\mpmexplorer\MPMExplorerForTablesAndPanels.xml
동일한 작성 마법사에 속성을 더 추가하려면 동일한 AttributeGroup ID인 ptc.mpm.exp.CreateTab2를 사용해야 합니다.
새 속성에 대한 셀 정의만 이 XML 세그먼트에 추가됩니다.
* 
기본적으로 셀 정의는 기본 셀 정의 뒤에 추가되어야 합니다. 다른 위치를 지정하려면 Placement 태그를 사용합니다.
<Placement insertKey="after|before" insertId="attributeName"replace="true|false"/>
For example:
<CellDefinition id="inspectionNeeded">
<Label>
<Resource key="inspectionNeededLabel"/>
</Label>
<AttributeDefinition attributeId="inspectionNeeded"/>
<Placement insertKey="after" insertId="folder"/>
</CellDefinition>
* 
폴더는 속성의 ID이며 뒤에 inspectionNeeded 속성이 추가됩니다.