Advanced Customization > Business Logic Customization > Customizing Workflow Administration > Customizing Workflow Task Pages > Rendering PBO UI Components
  
Rendering PBO UI Components
You can customize the task form template (that is, the customized JSP) to only display individual components of the PBO. For example, you might want to include just the affected end items or attachments.
Use the tablePageLink tag to display one or more tables that are defined together in one custom JSP:
The parameter path is the JSP that is included.
The tablePageLink tag can only be used once on a page to render one JSP file.
For example:
<tags:tablePageLink
path="/netmarkets/jsp/change/affectedEndItemsTable.jsp"/
The following table lists the paths that can be used with tablePageLink:
PBO Component
Path
Available Function
Affected End Items
/netmarkets/jsp/change/affectedEndItemsTable.jsp
Change Request-WTChangeRequest 2
Change Issue or Variance-ChangeIssue
Affected and Resulting Items
/netmarkets/jsp/changeTask/af fectedAndResultingItems.jsp
Change Task-WTChangeActivity2
Attributes and Attachments
/netmarkets/jsp/object/attribute s.jsp (no attachments for CA)
Change Request-WTChangeRequest 2
Change Notice- WTChangeOrder2
Change Task- WTChangeActivity2
Change Issue or Variance-ChangeIssue
Promotion Notice- PromotionNotice
Baselines
/netmarkets/jsp/object/relatedBaselines.jsp
Change Request-WTChangeRequest 2
Change Notice- WTChangeOrder2
Change Task- WTChangeActivity2
Contexts
/netmarkets/jsp/object/relatedContexts.jsp
Change Request-WTChangeRequest 2
Change Notice- WTChangeOrder2
Change Issue or Variance-ChangeIssue
Promotion Notice- PromotionNotice
Discussion
/netmarkets/jsp/forum/discuss. jsp
Change Request-WTChangeRequest 2
Change Notice- WTChangeOrder2
Change Issue or Variance-ChangeIssue
Promotion Notice- PromotionNotice
Maturity History
/netmarkets/jsp/history/maturit yHistory.jsp
Change Request-WTChangeRequest 2
Change Notice- WTChangeOrder2
Change Task- WTChangeActivity2
Change Issue or Variance-ChangeIssue
Promotion Notice- PromotionNotice
Routing/Process
/netmarkets/jsp/workflow/processHistory.jsp
Change Request-WTChangeRequest 2
Change Notice- WTChangeOrder2
Change Task- WTChangeActivity2
Change Issue or Variance-ChangeIssue
Promotion Notice- PromotionNotice
Subscriptions
/netmarkets/jsp/subscription/objectSubscriptions.jsp
Change Request-WTChangeRequest 2
Change Notice- WTChangeOrder2
Change Task- WTChangeActivity2
Change Issue or Variance-ChangeIssue
Promotion Notice- PromotionNotice
The following table lists the tag files that can be used to include tables. If there is a tablePageLink these tags must precede it.
PBO Component
Syntax for including on JSP
Promotion Notice Table
If the PBO is a PromotionNotice, the customizer may include the promotion objects table as follows:
<workItem:setPrimaryBusinessObject/>

<workItem:promotionObjects/
Notebook Table
<workItem:notebook displayType="Table"/
Discussion Table
<workItem:discussions
displayType="Table"/>
Routing History Table
To display routing history for all activities:
<tags:routingStatus dispProcess="All"/>
To display routing history for just the current activity:
<tags:routingStatus/>
* 
The display of the routing history table currently includes the reassignment table as well. An SPR exists to allow the routing history table to be displayed independent of the reassignment history table.
Reassignment Table
To display the reassignment history table as embedded and expanded in the JSP:
<tags:reassignHistory showRH="Table"/>
To display the reassignment history table as a link:
<tags:reassignHistory showRH="Link"/>
Setup Participants
<tags:workItemActions/>
`
Bold Font Issues
You may see that are no bold fonts if “Use task form template to generate the task details page” is set to “Yes” while there are bold fonts if “Use task form template to generate the task details page” is set to “No.” To correct this issue, do the following:
1. Navigate to <Windchill>\codebase\netmarkets\jsp\customtemplates
2. Edit the Site5_wt.fc.WTObject_WfTask_default.jsp file. This is the template view jsp page for corresponding data type.
* 
To get the Site5_wt.fc.WTObject_WfTask_default.jsp file we have “template view” preference must be set.
3. Modify the “table border” tag as follows.
Existing code: <table border="0" cellpadding="1" width=100%>
Change to: <table border="0" cellpadding="1" width=100% class="x-reset-font-wf">
4. At the end of the jsp add the following tag:
<STYLE TYPE="text/css"> .x-reset-font-wf strong{ font-weight: bolder; } </STYLE>