Advanced Customization > Business Logic Customization > Customizing Workflow Administration > Customizing Workflow Task Pages > Configuring Workflow Task Detail Pages > Process Overview > Load File Format
  
Load File Format
1. Create the Task Form template of a configurable type.
This is the loader format for creating a task form template.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE LoadTaskFormTemplate SYSTEM "standardX24.dtd">
<LoadTaskFormTemplate>
<TaskFormTemplate>
<name>test</name>
<filePath></filePath>
<taskType>WfTask</taskType>
<pboClass>wt.part.WTPart</pboClass>
<typeFormat>configurableWorkflow</typeFormat>
<description>Out Of The Box configurable workflow Template</description>
<WorkflowTaskTab>

<tabName>TestTab1</tabName>
<tabSetKey>infopage</tabSetKey> <components>
{"name":"workflowTaskPboAction",
"type":"workitem"},{"name":"attributes","type":"workitem"},
{"name":"routingStatus",
"type":"workitem"},{"name":"notebook","type":"workitem"},
{"name":"discussions",
"type":"workitem"},{"name":"setupParticipant","type":"workitem"},
{"name":"adhocActivities","type":"workitem"},
{"name":"pboMaturityHistory","type":"history"}]</components>
<pboAction><{"name":"checkout","type":"wip"},
{"name":"REVISEITEMS","type":"pdmObject"}]</pboAction>
<sequence>1</sequence>

</WorkflowTaskTab>

<WorkflowTaskTab>

<tabName>TestTab2</tabName>
<tabSetKey>infopage</tabSetKey> <components><{"name":"workflowTaskPboAction",
"type":"workitem"},{"name":"attributes","type":"workitem"},
{"name":"routingStatus","type":"workitem"}]</components>
<pboAction>{"name":"checkin","type":"wip"}</pboAction>
<sequence>2</sequence>

</WorkflowTaskTab>


</TaskFormTemplate>
</LoadTaskFormTemplate>
<WorkflowTaskTab> is used to create the tab which has following tags
<tabName> specifies the tab name
<tabSetKey> is always infopage because the tabs are displayed on the Workitem info page
<components> is the Json of the tables/actions displayed on task details page
<pboAction> is the Json of the actions performed on the primary business object which is associated with workitem displayed on task details page
<sequence> is the order in which the tabs display
2. Load into Windchill system and verify.
For more information, see Creating a Task Form Template.