Prioritize components

You can use tags to change the prioritize components in a report template.
Table 1. Prioritize components
Component Description Tags and attributes Example
fp:pwcconsistency Presents a list of triples and their consistencies. The presented triples are the most inconsistent ones for the specified view, criterion, and number. The criterion must be public or private, not an estimate or a sum.

This component has the common attributes, common tags, and the following tags:

  • critId: A mandatory tag of type critParam that contains a criterion ID.
  • memberId: A mandatory tag of type memberParam that contains a member ID. The tag is ignored if the criterion is public.
  • viewId: A mandatory tag of type viewParam that contains a view ID.
  • maxNoofTriples: An optional tag of type intParam that determines the maximum number of triples that can be presented. The default value is 10.
<fp:pwcconsistency
	descr="Overview">
	<fp:critParam
		changeable="template"
		id="101"
		name="critId"
		descr="The criterion"
	/>
	<fp:memberParam
		changeable="runtime"
		id="102"
		name="memberId"
		descr="The member"
	/>
	<fp:viewParam
		changeable="template"
		id="103"
		name="viewId"
		descr="The view"
	/>
	<fp:intParam
		changeable="runtime"
		id="104"
		name="maxNoofTriples"
		descr="Maximum number of triples"
	/>
</fp:pwcconsistency>
fp:pwclist Presents a list of all the completed comparisons for a specified view, criterion, and member. The criterion must be public or private, not an estimate or a sum. This component has the common attributes, common tags, and the following tags:
  • critId: A mandatory tag of type critParam that contains a criterion ID.
  • memberId: A mandatory tag of type memberParam that contains a member ID. The tag is ignored if the criterion is public.
  • viewId: A mandatory tag of type viewParam that contains a view ID.
<fp:pwclist
	descr="List">
	<fp:critParam
		changeable="template"
		id="101"
		name="critId"
		descr="The criterion"
	/>
	<fp:memberParam
		changeable="runtime"
		id="102"
		name="memberId"
		descr="The member"
	/>
	<fp:viewParam
		changeable="template"
		id="103"
		name="viewId"
		descr="The view"
	/>
</fp:pwclist>
fp:pwcoverview Specifies an overview of the comparisons for one criterion and all members, or for all criteria and one member. This component has the common attributes, common tags, and the following tags:
  • critId: An optional tag of type critParam that might contain a criterion ID. If this tag contains a criterion ID, the overview is for one criterion and all members. If the tag does not contain a criterion ID, the overview is for all criteria and the currently logged in member. The default setting is to not contain a criterion ID.
    Note: To be consistent with other prioritize components, a memberParam must be present. However, the memberParam is not included to better align the reports with the user interface.
  • viewId: A mandatory tag of type viewParam that contains a view ID.
One criterion and all members:
<fp:pwcoverview
	descr="Overview">
	<fp:critParam
		changeable="template"
		id="101"
		name="critId"
		descr="The criterion"
	/>
	<fp:viewParam
		changeable="template"
		id="103"
		name="viewId"
		descr="The view"
	/>
</fp:pwcoverview>
All criteria and one member:
<fp:pwcoverview
	descr="Overview">
	<fp:viewParam
		changeable="template"
		id="103"
		name="viewId"
		descr="The view"
	/>
</fp:pwcoverview>

Feedback