Plan components

You can use tags and attributes to change the plan components in a report template.
Table 1. Plan components
Component Description Tags and attributes Example
fp:planreleases Presents an overview of the releases, such as start date and end date. This component has the common attributes, the common tags, and one additional mandatory tag, viewId.

The viewId tag is of type viewParam and contains a view ID.

<fp:planreleases
	descr="Release overview" >
	<fp:viewParam
		changeable="template"
		id="101"
		name="viewId"
		descr="The view"
	/>
</fp:planreleases>
fp:planreleasevalues Shows to what extent each of the criteria are fulfilled for each of the releases. This component has the common attributes, the common tags, and one additional mandatory tag, viewId.

The viewId tag is of type viewParam and contains a view ID.

<fp:planreleasevalues
	descr="Criteria fulfillment">
	<fp:viewParam
		changeable="template"
		id="101"
		name="viewId"
		descr="The view"
	/>
</fp:planreleasevalues>
fp:planrequirements Presents all the requirements and the following information:
  • The release that each requirement is allocated to
  • The resource that each requirement is assigned to
  • The implementation time
This component has the common attributes, the common tags, and one additional mandatory tag, viewId.

The viewId tag is of type viewParam and contains a view ID.

<fp:planrequirements
	descr="Requirements information">
	<fp:viewParam
		changeable="template"
		id="101"
		name="viewId"
		descr="The view"
	/>
</fp:planrequirements>
fp:planresources Presents the total number of hours and requirements that are allocated to each resource. This component has the common attributes, the common tags, and one additional mandatory tag, viewId.

The viewId tag is of type viewParam and contains a view ID.

<fp:planresources
	descr="Resource overview">
	<fp:viewParam
		changeable="template"
		id="101"
		name="viewId"
		descr="The view"
	/>
</fp:planresources>
fp:planworkloads Presents the resources' workloads for each release. This component has the common attributes, the common tags, and one additional mandatory tag, viewId.

The viewId tag is of type viewParam and contains a view ID.

<fp:planworkloads
	descr="Workload overview">
	<fp:viewParam
		changeable="template"
		id="101"
		name="viewId"
		descr="The view"
	/>
</fp:planworkloads>

Feedback