It's all about the answers!

Ask a question

[closed] How to map team area and its respective team members in workitem attributes and establish dependency between them.


Krunal Gaoli (67869) | asked Sep 28 '21, 2:08 p.m.
closed Oct 30 '21, 10:10 a.m. by Ralph Schoon (63.1k33646)

 Hi team, 


I have multiple team area in my project and there are respective team members in each team area. 
I am having an attribute called "Change Coordinator Group" and "Change coordinator" 

My use case is that I need to mapp team area in to "Change co-ordinator group" and Respective team member in "Change Coordinator" , I need to establish the relationship between them. e.g. if I select team A in "Change Coordinator group" then in ''Change coordinator" it should show the team member of team A in change coordinator group.

Please suggest. 
Krunal.

The question has been closed for the following reason: "The question is answered, right answer was accepted" by rschoon Oct 30 '21, 10:10 a.m.

Accepted answer


permanent link
Ralph Schoon (63.1k33646) | answered Sep 30 '21, 2:42 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER

I can send you my charging account.....


Here is an untested example code. Search for attribute  customization in the documentation. There is also the Process Enactment Workschop in the library. The last two labs are relevant.

/***********
 * Licensed Materials - Property of IBM
 * (c) Copyright IBM Corporation 2011. All Rights Reserved.
 *
 * Note to U.S. Government Users Restricted Rights:
* Use, duplication or disclosure restricted by GSA ADP Schedule * Contract with IBM Corp. ***********
/ dojo.provide("com.example.ContriButorByTeam"); dojo.require("com.ibm.team.workitem.api.common.WorkItemAttributes"); // To access the work item attributes

(function() { dojo.declare("com.example.ContriButorByTeam", null, {

    getValue: function(attribute, workItem, configuration) {
        var currentvalue = workItem.getValue(attribute);
        var teamName = workItem.getLabel("responsibleteam");
        if(teamName==="Team1"){
            return "_cc14oFplEeuac-qhIXDu1Q"; // User ID for user Ralph
        } else if(teamName==="Team2"){
            return "_2rTUIFpmEeuikpS8lylUvQ"; // User ID for user Dave
        }           
        return currentvalue;        
    }
});

})();


Krunal Gaoli selected this answer as the correct answer

Comments
Krunal Gaoli commented Sep 30 '21, 10:27 a.m.

Glad, and I  am very thankful to you.


Please send acc as well in case further needed -- :) 


Ralph Schoon commented Sep 30 '21, 10:51 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER

Sending it right away. 8)


Please note that the calculated value would be configured for the contributor work item attribute. Also note that attribute customization works on the attribute. So it shows in all work item types that have the attribute. 

6 other answers



permanent link
Ralph Schoon (63.1k33646) | answered Sep 29 '21, 3:02 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER

 Here the options I see.


1. Java Script calculated value.
Attribute A of type team area, allows to select the team area.
Attribute B of type contributor.
JavaScript attribute customization for attribute B. The JavaScript contains the team area names and for each team area name it returns the UUID for the responsible team member. Note, the mapping for the team area name to the user UUID needs to be hard coded. The attribute customization does not have any API that would allow to get the team members for a team area. 

2. Java based attribute customization like 1, but the attribute customization can likely access the Java API and calculate the users and their roles in the team area. Caveat: Needs to be deployed on the server and in the Eclipse clients.

3. Follow up action that works similar to 2, but the change to the contributor happens when saving the work item. Caveat, needs to be deployed on the server. pro, vs 2 does not need to be deployed on the Eclipse clients.


Comments
Krunal Gaoli commented Sep 29 '21, 10:30 a.m.

Hi Ralph, thanks for the options suggested, do you have any sample script for option 1  


-1
permanent link
Krunal Gaoli (67869) | answered Sep 30 '21, 9:49 p.m.

 

dojo.provide("ValueProvider");
dojo.require("com.ibm.team. <wbr> workitem.api.common. <wbr> WorkItemAttributes");
(function() {
    var WorkItemAttributes= com.ibm.team.workitem.api. <wbr> common.WorkItemAttributes;
   
    dojo.declare("ValueProvider", null, {
        getValue: function(attribute, workItem, configuration) {
           
            var currentDate= new Date();  
            if ((workItem.getValue( <wbr> WorkItemAttributes.STATE)==" <wbr> project.state.s3") && (workItem.getValue(" <wbr> actualstartdate") == null)) {
                 return currentDate.getTime(). <wbr> toString();
            } else if ((workItem.getValue( <wbr> WorkItemAttributes.STATE)==" <wbr> workproduct.state.s2") && (workItem.getValue(" <wbr> actualstartdate") == null)) {
                 return currentDate.getTime(). <wbr> toString();
            } else if ((workItem.getValue( <wbr> WorkItemAttributes.STATE)==" <wbr> phase.state.s2") && (workItem.getValue(" <wbr> actualstartdate") == null)) {
                 return currentDate.getTime(). <wbr> toString();
            } else if ((workItem.getValue( <wbr> WorkItemAttributes.STATE)==" <wbr> projectchangerequest.state.s1" <wbr> ) && (workItem.getValue(" <wbr> actualstartdate") == null)) {
                 return currentDate.getTime(). <wbr> toString();
            } else if ((workItem.getValue( <wbr> WorkItemAttributes.STATE)==" <wbr> testingflow.state.s1") && (workItem.getValue(" <wbr> actualstartdate") == null)) {
                 return currentDate.getTime(). <wbr> toString();
            }
            return 0;                
        }
    });
})();


-1
permanent link
Krunal Gaoli (67869) | answered Sep 30 '21, 9:50 p.m.

 

dojo.provide(" <wbr> DefectDateValidate");

dojo.require("com.ibm.team. <wbr> workitem.api.common. <wbr> WorkItemAttributes"); // To access the work item attributes
dojo.require("com.ibm.team. <wbr> workitem.api.common.Status"); // To create a status object to return
dojo.require("com.ibm.team. <wbr> workitem.api.common.Severity") <wbr> ; // To create a severity for the status
dojo.require("dojo.date"); // We need the date class from Dojo to compare two dates
dojo.require("dojo.date.stamp" <wbr> ); // We need the stamp class to work with ISO date strings


(function() {
var Severity = com.ibm.team.workitem.api. <wbr> common.Severity;
var Status = com.ibm.team.workitem.api. <wbr> common.Status;


var DateValidator = dojo.declare(" <wbr> DefectDateValidate", null, {

    validate: function(attributeId, workItem, configuration) {
        var severity = "ERROR";
        var message = "Planned End Date cannot be less then Planned Start Date";

     

        var beginDate = dojo.date.stamp.fromISOString( <wbr> workItem.getValue(" <wbr> plannedstartdate"));
        var endDate= dojo.date.stamp.fromISOString( <wbr> workItem.getValue(" <wbr> plannedenddate"));
               
        // Compare the two dates and make sure endDate is not earlier than beginDate
        if (dojo.date.compare(endDate, beginDate) >= 0) {
            return Status.OK_STATUS;
        }else if((beginDate == null) && (endDate == null)) {
            return Status.OK_STATUS;
        }else if((beginDate != null) && (endDate == null)) {
            return Status.OK_STATUS;
        }else {
            return new Status(Severity[severity], message);
        }
    }
});
})();


Comments
Ralph Schoon commented Oct 01 '21, 4:00 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER

This is in no way, shape or form related to your question and does not contribute to any clarity either. So I wonder why you posted it here. 


-1
permanent link
Krunal Gaoli (67869) | answered Oct 04 '21, 12:52 a.m.

 <?xml version="1.0" encoding="UTF-8"?>

<!--
Copyright (c) 2010, 2019 IBM Corporation.  All rights reserved.
This file is part of a process template created for use with the Jazz Process Framework.
Your use of the process template (and hence this file) is subject to the following terms and conditions found in the process attachment named process_template_license.html.
-->
<process-specification xmlns="http://com.ibm.team.process">
<role-definitions>
<role-definition cardinality="many" description="The person in this role represents customer and end-user concerns by gathering input from stakeholders to understand the problem to be solved and by capturing and setting priorities for requirements." name="Analyst" role-id="analyst"/>
<role-definition cardinality="single" description="This role is responsible for defining the software architecture, which includes making the key technical decisions that constrain the overall design and implementation of the project." name="Architect" role-id="architect"/>
<role-definition cardinality="many" description="This role is responsible for developing a part of the system, including designing it to fit into the architecture, possibly prototyping the user-interface, and then implementing, unit-testing, and integrating the components that are part of the solution." name="Developer" role-id="developer"/>
<role-definition cardinality="single" description="This role leads the planning of the project, coordinates interactions with the stakeholders, and keeps the project team focused on meeting the project objectives." name="Project Manager" role-id="project_manager"/>
<role-definition cardinality="many" description="This role technically leads a component and is responsible for planning and architectural integrity of the component." name="Team Lead" role-id="team_lead"/>
<role-definition cardinality="many" description="This role represents interest groups whose needs must be satisfied by the project. It is a role that may be played by anyone who is (or potentially will be) materially affected by the outcome of the project." name="Stakeholder" role-id="stakeholder"/>
<role-definition cardinality="many" description="This role is responsible for the core activities of the test effort. Those activities include identifying, defining, implementing, and conducting the necessary tests, as well as logging the outcomes of the testing and analyzing the results." name="Tester" role-id="tester"/>
<role-definition cardinality="many" description="This role is responsible for software builds and releases. Responsible for the design and development of builds, scripts, installation procedures, and systems including source code control and issue tracking." name="Release Engineer" role-id="release_engineer"/>
</role-definitions>
<project-configuration>
<initialization>
    <server-initialization>
        <followup-actions>
            <followup-action xmlns="http://com.ibm.team.process/setUpProject" description="Initializes a project area with the pieces necessary to start work on a project." id="com.ibm.team.process.server.setUpProject" name="Setup Project" optional="true">
                <stream description="Main collaboration stream for ${project-area-name}" name="${project-area-name} Stream">
                    <component name="${project-area-name} Default Component"/>
                </stream>
                <workspace description="Initial repository workspace for the creator of ${stream-name}" name="${stream-name} Workspace"/>
<workitems>
<category htmlDescription="Category to organize your work items." path="Category 1"/>
                    <category htmlDescription="Category to organize your work items." path="Category 2"/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define Phase Plan"
htmlDescription="Create a plan for the initial Phase&lt;br/&gt;&lt;br/&gt;To define a Phase Plan for your team area:&lt;br/&gt;&lt;br/&gt;1. Open the &lt;b&gt;Team Artifacts&lt;/b&gt; view and expand the node corresponding to your connected project area.&lt;br/&gt;&lt;br/&gt;2. Right-click the &lt;b&gt;Plans&lt;/b&gt; node, select &lt;b&gt;New-&amp;gt;Plan...&lt;/b&gt;, select &lt;b&gt;Phase Plan&lt;/b&gt; as Plan Type and complete the wizard.&lt;br/&gt;&lt;br/&gt;For additional details on defining plans using the &lt;b&gt;New Plan&lt;/b&gt; wizard, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.apt.doc/topics/t_getting_started.html&quot;&gt;Getting Started with Planning&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define the initial Product Backlog"
htmlDescription="Create a plan for the Product Backlog&lt;br/&gt;&lt;br/&gt;To define a Product Backlog for your team area:&lt;br/&gt;&lt;br/&gt;1. Open the &lt;b&gt;Team Artifacts&lt;/b&gt; view and expand the node corresponding to your connected project area.&lt;br/&gt;&lt;br/&gt;2. Right-click the &lt;b&gt;Plans&lt;/b&gt; node, select &lt;b&gt;New-&amp;gt;Plan...&lt;/b&gt;, select &lt;b&gt;Product Backlog&lt;/b&gt; as Plan Type and complete the wizard.&lt;br/&gt;&lt;br/&gt;For additional details on defining plans using the &lt;b&gt;New Plan&lt;/b&gt; wizard, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.apt.doc/topics/t_getting_started.html&quot;&gt;Getting Started with Planning&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define a new build"
htmlDescription="Define a new build&lt;br/&gt;&lt;br/&gt;To define a new build for your team area:&lt;br/&gt;&lt;br/&gt;1. Open the &lt;b&gt;Team Artifacts&lt;/b&gt; view and expand the node corresponding to your connected project area.&lt;br/&gt;&lt;br/&gt;2. Right-click the &lt;b&gt;Builds&lt;/b&gt; node and select &lt;b&gt;New Build Definition&lt;/b&gt; and follow the prompts in the wizard.&lt;br/&gt;&lt;br/&gt;For additional details on defining build definitions using the &lt;b&gt;Build Definition&lt;/b&gt; wizard, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.build.doc/topics/t_getting_started_build.html&quot;&gt;Getting Started with setting up Jazz Builds&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Share code with Jazz Source Control"
htmlDescription="Share code with Jazz Source Control&lt;br/&gt;&lt;br/&gt;To share code in your Eclipse workspace with the Jazz stream created during process initialization:&lt;br/&gt;&lt;br/&gt;1. Select a project you wish to share, right-click and select &lt;b&gt;Team-&amp;gt;Share Project...&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;2. In the &lt;b&gt;Share Project&lt;/b&gt; Wizard, select &lt;b&gt;Jazz Source Control&lt;/b&gt; and select &lt;b&gt;Next&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;3. If you have more than one repository connection, you will be prompted to choose one. On the &lt;b&gt;Jazz Repository&lt;/b&gt; page, select the repository in which you created your project area and select &lt;b&gt;Next&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;4. On the &lt;b&gt;Select Component&lt;/b&gt; page, you should see a repository workspace prefixed with the name of the project area you created.&lt;br/&gt;&lt;br/&gt;Expand this repository workspace and you will see a component. Select this component and select &lt;b&gt;Next&lt;/b&gt;. Review the ignored resources on the next page and then select &lt;b&gt;Finish&lt;/b&gt; to share your code with the specified component and repository workspace.&lt;br/&gt;&lt;br/&gt;5. Now that the code has been shared to your repository workspace, you need to deliver it from your workspace to the stream created during initialization of the process. To do this, open the &lt;b&gt;Pending Changes&lt;/b&gt; view.&lt;br/&gt;&lt;br/&gt;6. In the &lt;b&gt;Pending Changes&lt;/b&gt; view, you should see one outgoing change from your repository workspace. Right-click on the repository workspace and select &lt;b&gt;Deliver&lt;/b&gt; to deliver your code to the stream associated with your team area.&lt;br/&gt;&lt;br/&gt;For additional details on using Jazz Source Control, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.scm.doc/topics/c_intro.html&quot;&gt;Getting Started with Jazz Source Control&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define phases"
htmlDescription="Define phases&lt;br/&gt;&lt;br/&gt;When the project area was initialized, an initial timeline &amp;quot;Main Development&amp;quot; was created. Within the timeline a hierarchy of iterations(phases) has been created for you.&lt;br/&gt;&lt;br/&gt;To edit, delete, duplicate or add additional timelines and iterations(phases):&lt;br/&gt;&lt;br/&gt;1. Open the &lt;b&gt;Project Area Editor&lt;/b&gt; by right-clicking on the project area in the &lt;b&gt;Team Artifacts&lt;/b&gt; or &lt;b&gt;Team Organization&lt;/b&gt; view and selecting &lt;b&gt;Open&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;2. Go to the &lt;b&gt;Timelines&lt;/b&gt; section in the editor. To create a new iteration(phase), use either the &lt;b&gt;Create Iteration...&lt;/b&gt; action or the &lt;b&gt;Duplicate...&lt;/b&gt; action on an existing iteration(phase).&lt;br/&gt;&lt;br/&gt;3. To define the start and end dates for an existing phase(iteration), use the &lt;b&gt;Edit Properties...&lt;/b&gt; action on an existing phase(iteration).&lt;br/&gt;&lt;br/&gt;For additional details on using Jazz Team Process, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.concert.doc/topics/t_getting-started.html&quot;&gt;Getting Started with Projects, Teams, and Process&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define categories and releases for work items"
htmlDescription="Define categories and releases for work items. These values will then be available in the work item &lt;b&gt;Filed Against&lt;/b&gt; and &lt;b&gt;Found In&lt;/b&gt; fields.&lt;br/&gt;&lt;br/&gt;To define the work item categories for the project area:&lt;br/&gt;&lt;br/&gt;1. Open the &lt;b&gt;Project Area Editor&lt;/b&gt; by right-clicking on the project area in the &lt;b&gt;Team Artifacts&lt;/b&gt; or &lt;b&gt;Team Organization&lt;/b&gt; view and selecting &lt;b&gt;Open&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;2. Go to the &lt;b&gt;Work Item Categories&lt;/b&gt; tab. &lt;br/&gt;&lt;br/&gt;3. Define categories for work items as well as associate categories with the team areas responsible for the category.&lt;br/&gt;&lt;br/&gt;To define the releases to file work items against:&lt;br/&gt;&lt;br/&gt;1. Go to the &lt;b&gt;Releases&lt;/b&gt; tab of the &lt;b&gt;Project Area Editor&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;2. Add some releases to file work items against.&lt;br/&gt;&lt;br/&gt;For additional details on using Jazz Work Items, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.workitem.doc/topics/t_getting_started.html&quot;&gt;Getting Started with Work Items&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define team members"
htmlDescription="Define the team members for the project area as well as the team area&lt;br/&gt;&lt;br/&gt;To define team members for a team area or project area:&lt;br/&gt;&lt;br/&gt;1. Open the team area or project area editor by right-clicking on the project or team area in the &lt;b&gt;Team Artifacts&lt;/b&gt; or &lt;b&gt;Team Organization&lt;/b&gt; view and selecting &lt;b&gt;Open&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;2. On the &lt;b&gt;Overview&lt;/b&gt; page of the editor, there is a &lt;b&gt;Members&lt;/b&gt; section. To add a user to the team select the &lt;b&gt;Add&lt;/b&gt; button. To create a new user and add them as a member of the team, select the &lt;b&gt;Create&lt;/b&gt; button&lt;br/&gt;&lt;br/&gt;3. If you clicked &lt;b&gt;Add&lt;/b&gt;, in the &lt;b&gt;Add Team Members&lt;/b&gt; dialog, select the user(s) you wish to add to your team or project area. If you clicked &lt;b&gt;Create&lt;/b&gt;, define the new team member in the &lt;b&gt;Create User&lt;/b&gt; wizard.&lt;br/&gt;&lt;br/&gt;4. Consider what roles individuals working on your project will assume and what role-specific process should apply to each role. In addition, you will want to consider what permissions to grant to individuals in these roles. For additional details on using Jazz Team Process, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.concert.doc/topics/t_getting-started.html&quot;&gt;Getting Started with Projects, Teams, and Process&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;5. On &lt;b&gt;Save&lt;/b&gt; of the editor you will be prompted to send invitations to the newly added team members. This allows you to configure an email invitation that is sent to the new team member. The new team member can accept the invitation with &lt;b&gt;File-&amp;gt;Accept Team Invitation...&lt;/b&gt;. The invitation will quickly setup their Eclipse workspace to work with the team. At any time you can invite team members to join the team by selecting the team member in the &lt;b&gt;Members&lt;/b&gt; section, right click and select &lt;b&gt;Invite to Join Team...&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define permissions"
htmlDescription="Review and adjust the permissions to be used for the project&lt;br/&gt;&lt;br/&gt;To review and adjust the permissions:&lt;br/&gt;&lt;br/&gt;1. Open the project area editor by right-clicking on the project or team area in the &lt;b&gt;Team Artifacts&lt;/b&gt; or &lt;b&gt;Team Organization&lt;/b&gt; view and selecting &lt;b&gt;Open&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;2. Go to the &lt;b&gt;Process Configuration&lt;/b&gt; tab.&lt;br/&gt;&lt;br/&gt;3. Select the &lt;b&gt;Permissions&lt;/b&gt; node under &lt;b&gt;Project Configuration&lt;/b&gt;, review and adjust the project level permissions.&lt;br/&gt;&lt;br/&gt;4. Select the &lt;b&gt;Permissions&lt;/b&gt; node under &lt;b&gt;Team Configuration&lt;/b&gt;, review and adjust the team level permissions.&lt;br/&gt;&lt;br/&gt;For additional details on defining permissions, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.jazz.platform.doc/topics/c_permissions.html&quot;&gt;Permissions&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
                </workitems>
            </followup-action>
            <followup-action xmlns="http://com.ibm.team.apt/setUpProject" description="Initializes a project area with the planning relevant data." id="com.ibm.team.apt.service.setUpProject" name="Setup Project for Planning" optional="true">
            <plans>
            <plan name="Release Plan" typeId="com.ibm.team.apt.plantype.release.project" iterationPath="/development/release"/>
            <plan name="Phase Plan" typeId="com.ibm.team.apt.plantype.default" iterationPath="/development/release/requirement"/>
            <plan name="Phase Plan" typeId="com.ibm.team.apt.plantype.default" iterationPath="/development/release/design"/>
            <plan name="Phase Plan" typeId="com.ibm.team.apt.plantype.default" iterationPath="/development/release/implementation"/>
            <plan name="Phase Plan" typeId="com.ibm.team.apt.plantype.default" iterationPath="/development/release/testing"/>
            </plans>
            </followup-action>
            <followup-action xmlns="http://com.ibm.team.reports/setUpProject" description="Deploys some pre-defined reports to the project area." id="com.ibm.team.reports.service.setUpProject" name="Setup Project for Reports" optional="true">
                <reports>                 
                    <report description="Actual as Percentage of Estimated Work" file="Actual as Percentage of Estimated Work.rptdesign" folder="Work Items" id="workitems.ActualAsPercentageOfEstimatedWork" isDefault="false" name="Actual as Percentage of Estimated Work" noCaching="true" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Blocking Work Items" file="Blocking Work Items.rptdesign" folder="Work Items" id="workitems.BlockingWorkItems" isDefault="false" name="Blocking Work Items" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Build Health" file="Build Health.rptdesign" folder="Build" id="build.BuildHealth" isDefault="false" name="Build Health" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Build Results" file="Build Results.rptdesign" folder="" id="build.BuildResults" isDefault="false" name="Build Results" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Burndown" file="Burndown.rptdesign" folder="Work Items" id="workitems.Burndown" isDefault="true" name="Burndown" noCaching="true" plugin="com.ibm.team.examples.reports.common" aptChart="true" />
                    <report description="Burnup" file="Burnup.rptdesign" folder="Work Items" id="workitems.Burnup" isDefault="false" name="Burnup" noCaching="true" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Release Burndown" file="Release Burndown.rptdesign" folder="Work Items" id="workitems.ReleaseBurndown" isDefault="false" name="Release Burndown" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Closed Work Items Daily" file="Closed Work Items Daily.rptdesign" folder="Work Items" id="workitems.ClosedWorkItemsDaily" isDefault="false" name="Closed Work Items Daily" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Code Health" file="Code Health.rptdesign" folder="Build" id="build.CodeHealth" isDefault="false" name="Code Health" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Defect Backlog" file="Defect Backlog.rptdesign" folder="Work Items" id="workitems.DefectBacklog" isDefault="false" name="Defect Backlog" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Defect Discovery Rate" file="Defect Discovery Rate.rptdesign" folder="Work Items" id="workitems.DefectDiscoveryRate" isDefault="false" name="Defect Discovery Rate" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Deferred Work Items" file="Deferred Work Items.rptdesign" folder="Work Items" id="workitems.DeferredWorkItems" isDefault="false" name="Deferred Work Items" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Estimate Changes" file="Estimate Changes.rptdesign" folder="Work Items" id="workitems.EstimateChanges" isDefault="false" name="Estimate Changes" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Frequent Test Failures" file="Frequent Test Failures.rptdesign" folder="Build" id="build.FrequentTestFailures" isDefault="false" name="Frequent Test Failures" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Frequent Test Regressions" file="Frequent Test Regressions.rptdesign" folder="Build" id="build.FrequentTestRegressions" isDefault="false" name="Frequent Test Regressions" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="New Work Items by Severity" file="New Work Items by Severity.rptdesign" folder="Work Items" id="workitems.NewWorkItemsBySeverity" isDefault="false" name="New Work Items by Severity" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Open vs Closed Work Items" file="Open vs Closed Work Items.rptdesign" folder="Work Items" id="workitems.OpenVsClosedWorkItems" isDefault="false" name="Open vs Closed Work Items" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Open Work Items by Type" file="Open Work Items by Type.rptdesign" folder="Work Items" id="workitems.OpenWorkItemsByType" isDefault="false" name="Open Work Items by Type" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Project Activity" file="Project Activity.rptdesign" folder="Source Control" id="scm.ProjectActivity" isDefault="false" name="Project Activity" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Team Velocity" file="Team Velocity.rptdesign" folder="Work Items" id="workitems.TeamVelocity" isDefault="false" name="Team Velocity" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Work Item Comparison" file="Work Item Comparison.rptdesign" folder="Work Items" id="workitems.WorkItemComparison" isDefault="false" name="Work Item Comparison" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Work Items by Owner" file="live/Work Items by Owner.rptdesign" folder="Work Items" id="workitems.WorkItemsByOwner" isDefault="false" name="Work Items by Owner" noCaching="true" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Work Items by Priority" file="Work Items by Priority.rptdesign" folder="Work Items" id="workitems.WorkItemsByPriority" isDefault="false" name="Work Items by Priority" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Work Items by Team Area" file="live/Work Items by Team Area.rptdesign" folder="Work Items" id="workitems.WorkItemsByTeamArea" isDefault="false" name="Work Items by Team Area" noCaching="true" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Defect Backlog by Project Area" file="cross-project/Defect Backlog by Project Area.rptdesign" folder="Work Items" id="workitems.DefectBacklogByProjectArea" isDefault="false" name="Defect Backlog by Project Area" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Work Item Comparison by Project Area" file="cross-project/Work Item Comparison by Project Area.rptdesign" folder="Work Items" id="workitems.WorkItemComparisonByProjectArea" isDefault="false" name="Work Item Comparison by Project Area" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
<report description="Micro Release Burndown" file="micro/Micro Release Burndown.rptdesign" folder="" id="workitems.MicroReleaseBurndown" isDefault="false" name="Micro Release Burndown" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Micro Burndown" file="micro/Micro Burndown.rptdesign" folder="" id="workitems.MicroBurndown" isDefault="false" name="Micro Burndown" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Micro Team Velocity" file="micro/Micro Team Velocity.rptdesign" folder="" id="workitems.MicroTeamVelocity" isDefault="false" name="Micro Team Velocity" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
<report description="Micro Estimated vs Actual Work" file="micro/Micro Estimated vs Actual Work.rptdesign" folder="" id="workitems.MicroEstimatedVsActualWork" isDefault="false" name="Micro Estimated vs Actual Work" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
<report description="Micro Cumulative Value Flow" file="micro/Micro Cumulative Value Flow.rptdesign" folder="" id="workitems.MicroCumulativeValueFlow" isDefault="false" name="Micro Cumulative Value Flow" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
<report description="Cumulative Value Flow" file="Cumulative Value Flow.rptdesign" folder="Work Items" id="workitems.CumulativeValueFlow" isDefault="false" name="Cumulative Value Flow" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
<report description="Risks by Exposure" file="Risks by Exposure.rptdesign" folder="Work Items" id="workitems.RisksByExposure" isDefault="false" name="Risks by Exposure" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    </reports>
            </followup-action>
        </followup-actions>
    </server-initialization>
<client-initialization>
        <followup-actions>
            <followup-action description="Runs a query which displays any assigned work items." id="com.ibm.team.process.client.runAssignedWorkitemsQuery" name="Show Initial Work Items"/>
        </followup-actions>
    </client-initialization>
</initialization>
<permissions>
<role id="default">
        <project-operation id="com.ibm.team.dashboard.server.savePersonalDashboard">
            <action id="any"/>
        </project-operation>
</role>
<role id="project_manager">
        <project-operation id="com.ibm.team.dashboard.server.saveProjectDashboard">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.process.server.saveProjectArea">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.interop.server.saveSyncRule">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.interop.server.deleteSyncRule">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.workitem.server.saveCategory">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.workitem.server.saveDeliverable">
            <action id="any"/>
        </project-operation>
    </role>
    <role id="release_engineer">
    <project-operation id="com.ibm.teamz.dep.query.server.saveQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.deleteQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.saveSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.resetSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.SaveScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.DeleteScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.promotion.promoteMetadata">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.deleteDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.saveDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.updateSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.deleteSearchPath">
                <action id="any"/>
            </project-operation>
            <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.saveSearchPath">
                <action id="any"/>
            </project-operation>
</role>
<role id="team_lead">
    <project-operation id="com.ibm.teamz.dep.query.server.saveQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.deleteQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.saveSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.resetSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.SaveScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.DeleteScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.promotion.promoteMetadata">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.deleteDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.saveDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.updateSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.deleteSearchPath">
                <action id="any"/>
            </project-operation>
            <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.saveSearchPath">
                <action id="any"/>
            </project-operation>
</role>
<role id="developer">
    <project-operation id="com.ibm.teamz.dep.query.server.saveQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.deleteQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.saveSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.resetSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.SaveScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.DeleteScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.promotion.promoteMetadata">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.deleteDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.saveDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.updateSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.deleteSearchPath">
                <action id="any"/>
            </project-operation>
            <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.saveSearchPath">
                <action id="any"/>
            </project-operation>
</role>
</permissions>
<data>
<configuration-data xmlns="http://com.ibm.team.workitem/providers" id="com.ibm.team.workitem.configuration.providers">
    <defaultValueProviders>
        <defaultValueProvider id="com.ibm.team.workitem.valueproviders.defaultCategory" name="Default category for new work items." providerId="com.ibm.team.workitem.common.internal.attributeValueProviders.CustomDefaultCategoryProvider">
            <value content="Category 1"/>
        </defaultValueProvider>
    </defaultValueProviders>
<valueProviders>
<valueProvider id="com.ibm.team.tpt.shared.common.internal.providers.ExposureProvider" providerId="com.ibm.team.workitem.shared.common.internal.valueProviders.ScriptAttributeValueProvider" name="Exposure Provider">
    <script class="com.ibm.team.tpt.shared.common.internal.providers.ExposureProvider"/>
    <impactAttribute id="com.ibm.team.workitem.workItemType.risk.impact"/>
    <probabilityAttribute id="com.ibm.team.workitem.workItemType.risk.probability"/>
</valueProvider>
<valueProvider id="com.ibm.team.tpt.shared.common.internal.providers.ProbabilityCostProvider" providerId="com.ibm.team.workitem.shared.common.internal.valueProviders.ScriptAttributeValueProvider" name="Probability Cost Provider">
    <script class="com.ibm.team.tpt.shared.common.internal.providers.ProbabilityCostProvider"/>
    <consCostAttribute id="com.ibm.team.workitem.workItemType.risk.consequencecost"/>
    <probabilityAttribute id="com.ibm.team.workitem.workItemType.risk.probability"/>
</valueProvider>
</valueProviders>
</configuration-data>

<configuration-data final="false" id="com.ibm.team.workitem.configuration.targetTypeBinding" xmlns="http://com.ibm.team.workitem/workItemLinkTargetTypeBinding">
    <workItemLinkType linkTypeId="com.ibm.team.workitem.linktype.parentworkitem">
        <targetTypeBinding sourceTypeId="defect" targetTypeId="defect"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="task"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="projectchangerequest"/>
        <targetTypeBinding sourceTypeId="issue" targetTypeId="issue"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="com.ibm.team.workitem.workItemType.businessneed"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="com.ibm.team.workitem.workItemType.risk"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="com.ibm.team.workitem.workItemType.riskaction"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="com.ibm.team.workitem.workItemType.milestone"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="uam"/>
    </workItemLinkType>
</configuration-data>

<configuration-data final="false" id="com.ibm.team.workitem.configuration.workItemTypes" xmlns="http://com.ibm.team.workitem/workitemTypes">
    <type category="com.ibm.team.workitem.workItemType" icon="processattachment:/workitemtype/bug.gif" id="defect" name="Defect">
        <alias name="bug"/>
    </type>
    <type category="uam" icon="" id="uam" name="UAM">
        <alias name="uam"/>
    </type>
    <type category="com.ibm.team.workitem.workItemType.task" icon="processattachment:/workitemtype/task.gif" id="task" name="Task">
        <alias name="work item"/>
        <alias name="workitem"/>
        <alias name="item"/>
    </type>
    <type category="com.ibm.team.workitem.workItemType.projectchangerequest" icon="processattachment:/workitemtype/projectchangerequest.gif" id="projectchangerequest" name="Project Change Request"/>
    <type category="com.ibm.team.workitem.workItemType.issue" icon="processattachment:/workitemtype/issue.gif" id="issue" name="Issue"/>
    <type category="com.ibm.team.workitem.workItemType.businessneed" icon="processattachment:/workitemtype/businessneed.gif" id="com.ibm.team.workitem.workItemType.businessneed" name="Business Need"/>
    <type category="com.ibm.team.workitem.workItemType.risk" icon="processattachment:/workitemtype/risk.gif" id="com.ibm.team.workitem.workItemType.risk" name="Risk"/>
    <type category="com.ibm.team.workitem.workItemType.riskaction" icon="processattachment:/workitemtype/riskaction.gif" id="com.ibm.team.workitem.workItemType.riskaction" name="Risk Action"/>
    <type category="com.ibm.team.workitem.workItemType.milestone" icon="processattachment:/workitemtype/milestone.gif" id="com.ibm.team.workitem.workItemType.milestone" name="Milestone"/>
    <customAttributes category="com.ibm.team.workitem.workItemType">
        <customAttribute id="com.ibm.team.apt.attribute.constrainttype" name="Constraint Type" type="constraintEnum"/>
        <customAttribute id="com.ibm.team.apt.attribute.constraintdate" name="Constraint Date" type="timestamp"/>
    </customAttributes>
    <customAttributes category="uam">
        <customAttribute id="uamrequesterName" name="Requester Name" type="smallString"/>
        <customAttribute id="uamcontactnumber" name="Contact Number" type="integer"/>
        <customAttribute id="uamorganization" name="Organization" type="organization"/>
        <customAttribute id="email" name="Email ID" type="mediumHtml"/>
        <customAttribute id="uamTeamead" name="Team Lead" type="contributor"/>
        <customAttribute id="uamloginnamerequested" name="Login name requested" type="mediumHtml"/>
        <customAttribute id="uamhomedirectoryrequested" name="Home directory requested" type="mediumHtml"/>
        <customAttribute id="requested" name="Requested initiation Date and Time" type="timestamp"/>
        <customAttribute id="request" name="Request Type" type="requestType"/>
        <customAttribute id="uamcategory" name="Category" type="uamcategory"/>
        <customAttribute id="environment" name="Environment" type="environment"/>
        <customAttribute id="application" name="Application" type="application"/>
        <customAttribute id="location" name="Location" type="location"/>
        <customAttribute id="reason" name="Reason" type="mediumHtml"/>
        <customAttribute id="system" name="System IP" type="decimal"/>
        <customAttribute id="host" name="Host Name" type="mediumHtml"/>
        <customAttribute id="role" name="Role/Privilege Required" type="mediumString"/>
    </customAttributes>
    <customAttributes category="com.ibm.team.workitem.workItemType.task">
        <customAttribute id="com.ibm.team.apt.attribute.constrainttype" name="Constraint Type" type="constraintEnum"/>
        <customAttribute id="com.ibm.team.apt.attribute.constraintdate" name="Constraint Date" type="timestamp"/>
    </customAttributes>
    <customAttributes category="com.ibm.team.workitem.workItemType.risk">
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.probability" name="Probability" type="probability"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.impact" name="Impact" type="impact"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.exposure" name="Exposure(%)" type="long"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.consequencecost" name="Consequence Cost" type="long"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.probabilitycost" name="Probability Cost" type="long"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.precision" name="Precision" type="precision"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.identificationdate" name="Identification Date" type="timestamp"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.occurrencedate" name="Occurrence Date" type="timestamp"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.riskcategory" name="Risk Category" type="riskcategory"/>
    </customAttributes>
    <customAttributes category="com.ibm.team.workitem.workItemType.riskaction">
        <customAttribute id="com.ibm.team.workitem.workItemType.riskaction.strategy" name="Strategy Type" type="actionstrategy"/>
        <customAttribute id="com.ibm.team.apt.attribute.constrainttype" name="Constraint Type" type="constraintEnum"/>
        <customAttribute id="com.ibm.team.apt.attribute.constraintdate" name="Constraint Date" type="timestamp"/>
    </customAttributes>
    <customAttributes category="com.ibm.team.workitem.workItemType.milestone">
        <customAttribute id="com.ibm.team.apt.attribute.constrainttype" name="Constraint Type" type="constraintEnum"/>
        <customAttribute id="com.ibm.team.apt.attribute.constraintdate" name="Constraint Date" type="timestamp"/>
    </customAttributes>
    <attributeDefinitions>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.impact" name="Impact" type="impact"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.probability" name="Probability" type="probability"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.exposure" name="Exposure(%)" type="long">
            <valueProvider providerId="com.ibm.team.tpt.shared.common.internal.providers.ExposureProvider"/>
            <dependsOn id="com.ibm.team.workitem.workItemType.risk.impact"/>
            <dependsOn id="com.ibm.team.workitem.workItemType.risk.probability"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.consequencecost" name="Consequence Cost" type="long"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.probabilitycost" name="Probability Cost" type="long">
            <valueProvider providerId="com.ibm.team.tpt.shared.common.internal.providers.ProbabilityCostProvider"/>
            <dependsOn id="com.ibm.team.workitem.workItemType.risk.consequencecost"/>
            <dependsOn id="com.ibm.team.workitem.workItemType.risk.probability"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.precision" name="Precision" type="precision"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.identificationdate" name="Identification Date" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.occurrencedate" name="Occurrence Date" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.riskcategory" name="Risk Category" type="riskcategory"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.riskaction.strategy" name="Strategy Type" type="actionstrategy"/>
        <attributeDefinition id="com.ibm.team.apt.attribute.constrainttype" name="Constraint Type" type="constraintEnum"/>
        <attributeDefinition id="com.ibm.team.apt.attribute.constraintdate" name="Constraint Date" type="timestamp"/>
        <attributeDefinition id="uamrequesterName" name="Requester Name" type="smallString"/>
        <attributeDefinition id="uamcontactnumber" name="Contact Number" type="integer"/>
        <attributeDefinition id="uamorganization" name="Organization" type="organization"/>
        <attributeDefinition id="email" name="Email ID" type="mediumHtml"/>
        <attributeDefinition id="uamTeamead" name="Team Lead" type="contributor"/>
        <attributeDefinition id="uamloginnamerequested" name="Login name requested" type="mediumHtml"/>
        <attributeDefinition id="uamhomedirectoryrequested" name="Home directory requested" type="mediumHtml"/>
        <attributeDefinition id="requested" name="Requested initiation Date and Time" type="timestamp"/>
        <attributeDefinition id="request" name="Request Type" type="requestType"/>
        <attributeDefinition id="uamcategory" name="Category" type="uamcategory"/>
        <attributeDefinition id="environment" name="Environment" type="environment"/>
        <attributeDefinition id="application" name="Application" type="application"/>
        <attributeDefinition id="location" name="Location" type="location"/>
        <attributeDefinition id="reason" name="Reason" type="mediumHtml"/>
        <attributeDefinition id="system" name="System IP" type="decimal"/>
        <attributeDefinition id="host" name="Host Name" type="mediumHtml"/>
        <attributeDefinition id="role" name="Role/Privilege Required" type="mediumString"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.description" name="Description" type="html"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.projectarea" name="Project Area" readOnly="true" type="projectArea"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.workitemtype" name="Type" type="type">
            <dependsOn id="projectArea"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.comments" name="Comments" type="comments"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.timespent" name="Time Spent" type="duration"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.summary" name="Summary" type="mediumHtml"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.resolutiondate" name="Resolution Date" readOnly="true" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.id" name="Id" readOnly="true" type="integer"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.category" name="Filed Against" type="category">
            <defaultValueProvider providerId="com.ibm.team.workitem.valueproviders.defaultCategory"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.severity" name="Severity" type="severity">
            <dependsOn id="projectArea"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.duration" name="Estimate" type="duration"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.version" name="Found In" type="deliverable">
            <dependsOn id="projectArea"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.owner" name="Owned By" type="contributor">
            <dependsOn id="category"/>
            <dependsOn id="target"/>
        </attributeDefinition>
        <attributeDefinition id="archived" name="Archived" type="boolean"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.creator" name="Created By" readOnly="true" type="contributor"/>
        <attributeDefinition id="contextId" name="Restricted Access" type="uuid"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.duedate" name="Due Date" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.subscriptions" name="Subscribed By" type="subscriptions"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.tags" name="Tags" type="tags"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.modifiedby" name="Modified By" readOnly="true" type="contributor"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.resolver" name="Resolved By" readOnly="true" type="contributor"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.state" name="Status" readOnly="true" type="smallString"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.priority" name="Priority" type="priority">
            <dependsOn id="projectArea"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.target" name="Planned For" type="interval">
            <dependsOn id="projectArea"/>
            <dependsOn id="category"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.correctedestimate" name="Corrected Estimate" type="duration"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.modified" name="Modified Date" readOnly="true" type="timestamp"/>
        <attributeDefinition id="startDate" name="Start Date" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.resolution" name="Resolution" type="smallString">
            <dependsOn id="internalState"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.creationdate" name="Creation Date" readOnly="true" type="timestamp"/>
    </attributeDefinitions>
</configuration-data>

<configuration-data final="false" id="com.ibm.team.workitem.configuration.workflow" xmlns="http://com.ibm.team.workitem/workflow">
    <stateGroupDefinition category="closed" id="closed" name="Closed" oslcGroup="oslc-closed"/>
    <stateGroupDefinition category="open" id="open" name="Open"/>
    <stateGroupDefinition category="inprogress" id="inprogress" name="In Progress" oslcGroup="oslc-inprogress"/>
    <stateGroupDefinition category="closed" id="verified" name="Verified" oslcGroup="oslc-verified"/>
    <workflowDefinition id="bugzillaWorkflow">
        <workflow description="This workflow is inspired by the standard Bugzilla workflow and appropriate for defects and tasks." name="Default Workflow" reopenActionId="bugzillaWorkflow.action.reopen" resolveActionId="bugzillaWorkflow.action.resolve" startActionId="bugzillaWorkflow.action.confirm">
            <resolution icon="processattachment:/workflow/unresolve.gif" id="r0" name="Unresolved"/>
            <resolution icon="processattachment:/workflow/defer.gif" id="r7" name="Later"/>
            <resolution icon="processattachment:/workflow/close.gif" id="r8" name="Fixed Upstream"/>
            <resolution icon="processattachment:/workflow/close.gif" id="r1" name="Fixed"/>
            <resolution icon="processattachment:/workflow/duplicate.gif" id="r2" name="Duplicate"/>
            <resolution icon="processattachment:/workflow/wontdo.gif" id="r3" name="Won't Fix"/>
            <resolution icon="processattachment:/workflow/works.gif" id="r4" name="Works For Me"/>
            <resolution icon="processattachment:/workflow/reject.gif" id="r5" name="Invalid"/>
            <action icon="processattachment:/workflow/verify.gif" id="bugzillaWorkflow.action.verify" name="Verify" state="bugzillaWorkflow.state.s4">
                <resolution id="r1"/>
                <resolution id="r2"/>
                <resolution id="r3"/>
                <resolution id="r4"/>
                <resolution id="r5"/>
                <resolution id="r7"/>
                <resolution id="r8"/>
            </action>
            <action icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.action.triage" name="Triage" state="bugzillaWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.action.confirm" name="Initialize" state="bugzillaWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/close.gif" id="bugzillaWorkflow.action.close" name="Close" state="bugzillaWorkflow.state.s5">
                <resolution id="r1"/>
                <resolution id="r2"/>
                <resolution id="r3"/>
                <resolution id="r4"/>
                <resolution id="r5"/>
                <resolution id="r7"/>
                <resolution id="r8"/>
            </action>
            <action icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.action.stopWorking" name="Stop Working" state="bugzillaWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/resolve.gif" id="bugzillaWorkflow.action.setResolved" name="Set Resolved" state="bugzillaWorkflow.state.s3">
                <resolution id="r1"/>
                <resolution id="r2"/>
                <resolution id="r3"/>
                <resolution id="r4"/>
                <resolution id="r5"/>
                <resolution id="r7"/>
                <resolution id="r8"/>
            </action>
            <action icon="processattachment:/workflow/reopen.gif" id="bugzillaWorkflow.action.reopen" name="Reopen" state="bugzillaWorkflow.state.s6"/>
            <action icon="processattachment:/workflow/resolve.gif" id="bugzillaWorkflow.action.resolve" name="Resolve" state="bugzillaWorkflow.state.s3">
                <resolution id="r1"/>
                <resolution id="r2"/>
                <resolution id="r3"/>
                <resolution id="r4"/>
                <resolution id="r5"/>
                <resolution id="r7"/>
                <resolution id="r8"/>
            </action>
            <action icon="processattachment:/workflow/inprogress.gif" id="bugzillaWorkflow.action.startWorking" name="Start Working" state="bugzillaWorkflow.state.s2"/>
            <action icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.action.untriage" name="Untriage" state="bugzillaWorkflow.state.s1"/>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="bugzillaWorkflow.state.s5" name="Closed" showResolution="true">
                <action id="bugzillaWorkflow.action.reopen"/>
            </state>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="bugzillaWorkflow.state.s2" name="In Progress" showResolution="false">
                <action id="bugzillaWorkflow.action.resolve"/>
                <action id="bugzillaWorkflow.action.stopWorking"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.state.s1" name="New" showResolution="false">
                <action id="bugzillaWorkflow.action.startWorking"/>
                <action id="bugzillaWorkflow.action.resolve"/>
                <action id="bugzillaWorkflow.action.triage"/>
            </state>
            <state group="open" icon="processattachment:/workflow/reopen.gif" id="bugzillaWorkflow.state.s6" name="Reopened" showResolution="false">
                <action id="bugzillaWorkflow.action.startWorking"/>
                <action id="bugzillaWorkflow.action.resolve"/>
                <action id="bugzillaWorkflow.action.triage"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/resolve.gif" id="bugzillaWorkflow.state.s3" name="Resolved" showResolution="true">
                <action id="bugzillaWorkflow.action.verify"/>
                <action id="bugzillaWorkflow.action.close"/>
                <action id="bugzillaWorkflow.action.reopen"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.state.s7" name="Triaged" showResolution="false">
                <action id="bugzillaWorkflow.action.startWorking"/>
                <action id="bugzillaWorkflow.action.untriage"/>
                <action id="bugzillaWorkflow.action.resolve"/>
            </state>
            <state group="verified" icon="processattachment:/workflow/verify.gif" id="bugzillaWorkflow.state.s4" name="Verified" showResolution="true">
                <action id="bugzillaWorkflow.action.close"/>
                <action id="bugzillaWorkflow.action.reopen"/>
                <action id="bugzillaWorkflow.action.setResolved"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="com.ibm.team.workitem.taskWorkflow">
        <workflow description="Workflow used for Tasks" name="Task Workflow" reopenActionId="com.ibm.team.workitem.taskWorkflow.action.reopen" resolveActionId="com.ibm.team.workitem.taskWorkflow.action.complete" startActionId="com.ibm.team.workitem.taskWorkflow.action.confirm">
            <action icon="processattachment:/workflow/reopen.gif" id="com.ibm.team.workitem.taskWorkflow.action.reopen" name="Reopen" state="com.ibm.team.workitem.taskWorkflow.state.s5"/>
            <action icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.taskWorkflow.action.startWorking" name="Start Working" state="com.ibm.team.workitem.taskWorkflow.state.s2"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.taskWorkflow.action.triage" name="Triage" state="com.ibm.team.workitem.taskWorkflow.state.s6"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.taskWorkflow.action.untriage" name="Untriage" state="com.ibm.team.workitem.taskWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.taskWorkflow.action.confirm" name="Initialize" state="com.ibm.team.workitem.taskWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.taskWorkflow.action.close" name="Close" state="com.ibm.team.workitem.taskWorkflow.state.s4"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.taskWorkflow.action.stopWorking" name="Stop Working" state="com.ibm.team.workitem.taskWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/resolve.gif" id="com.ibm.team.workitem.taskWorkflow.action.complete" name="Complete" state="com.ibm.team.workitem.taskWorkflow.state.s3"/>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.taskWorkflow.state.s1" name="New" showResolution="false">
                <action id="com.ibm.team.workitem.taskWorkflow.action.startWorking"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.complete"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.triage"/>
            </state>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.taskWorkflow.state.s2" name="In Progress" showResolution="false">
                <action id="com.ibm.team.workitem.taskWorkflow.action.complete"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.stopWorking"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/resolve.gif" id="com.ibm.team.workitem.taskWorkflow.state.s3" name="Completed" showResolution="false">
                <action id="com.ibm.team.workitem.taskWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.reopen"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.taskWorkflow.state.s4" name="Closed" showResolution="false">
                <action id="com.ibm.team.workitem.taskWorkflow.action.reopen"/>
            </state>
            <state group="open" icon="processattachment:/workflow/reopen.gif" id="com.ibm.team.workitem.taskWorkflow.state.s5" name="Reopened" showResolution="false">
                <action id="com.ibm.team.workitem.taskWorkflow.action.startWorking"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.complete"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.triage"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.taskWorkflow.state.s6" name="Triaged" showResolution="false">
                <action id="com.ibm.team.workitem.taskWorkflow.action.startWorking"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.untriage"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.complete"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="com.ibm.team.workitem.projectChangeRequestWorkflow">
        <workflow description="Workflow used for Project Change Requests" name="Project Change Request Workflow" reopenActionId="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reopen" resolveActionId="com.ibm.team.workitem.projectChangeRequestWorkflow.action.resolve" startActionId="com.ibm.team.workitem.projectChangeRequestWorkflow.action.confirm">
            <action icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.assign" name="Assign" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s9"/>
            <action icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reject" name="Reject" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s4"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.open" name="Open" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/reopen.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reopen" name="Reopen" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.confirm" name="Initialize" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.close" name="Close" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s6"/>
            <action icon="processattachment:/workflow/verify.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.review" name="Review" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s8"/>
            <action icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.approve" name="Approve" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s2"/>
            <action icon="processattachment:/workflow/defer.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.defer" name="Defer" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s3"/>
            <action icon="processattachment:/workflow/resolve.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.resolve" name="Resolve" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s5"/>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s2" name="Approved" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.assign"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s6" name="Closed" showResolution="false"/>
            <state group="closed" icon="processattachment:/workflow/defer.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s3" name="Deferred" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reopen"/>
            </state>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s9" name="In Progress" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.resolve"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s1" name="New" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.open"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s7" name="Open" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.review"/>
            </state>
            <state group="open" icon="processattachment:/workflow/verify.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s8" name="Ready" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.approve"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reject"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s4" name="Rejected" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reopen"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/resolve.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s5" name="Resolved" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reject"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="com.ibm.team.workitem.issueWorkflow">
        <workflow description="Workflow used for Issues" name="Issue Workflow" reopenActionId="com.ibm.team.workitem.issueWorkflow.action.reopen" resolveActionId="com.ibm.team.workitem.issueWorkflow.action.resolve" startActionId="com.ibm.team.workitem.issueWorkflow.action.confirm">
            <action icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.issueWorkflow.action.reject" name="Reject" state="com.ibm.team.workitem.issueWorkflow.state.s4"/>
            <action icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.issueWorkflow.action.close" name="Close" state="com.ibm.team.workitem.issueWorkflow.state.s6"/>
            <action icon="processattachment:/workflow/defer.gif" id="com.ibm.team.workitem.issueWorkflow.action.defer" name="Defer" state="com.ibm.team.workitem.issueWorkflow.state.s3"/>
            <action icon="processattachment:/workflow/resolve.gif" id="com.ibm.team.workitem.issueWorkflow.action.resolve" name="Resolve" state="com.ibm.team.workitem.issueWorkflow.state.s5"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.issueWorkflow.action.confirm" name="Initialize" state="com.ibm.team.workitem.issueWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.issueWorkflow.action.assign" name="Assign" state="com.ibm.team.workitem.issueWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/duplicate.gif" id="com.ibm.team.workitem.issueWorkflow.action.dup" name="Duplicate" state="com.ibm.team.workitem.issueWorkflow.state.s6"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.issueWorkflow.action.reopen" name="Reopen" state="com.ibm.team.workitem.issueWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.issueWorkflow.action.start" name="Start Working" state="com.ibm.team.workitem.issueWorkflow.state.s8"/>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.issueWorkflow.state.s6" name="Closed" showResolution="false"/>
            <state group="closed" icon="processattachment:/workflow/defer.gif" id="com.ibm.team.workitem.issueWorkflow.state.s3" name="Deferred" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.reopen"/>
            </state>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.issueWorkflow.state.s8" name="In Progress" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.resolve"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.reject"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.issueWorkflow.state.s1" name="New" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.reject"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.dup"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.assign"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.issueWorkflow.state.s7" name="Open" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.start"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.issueWorkflow.state.s4" name="Rejected" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.reopen"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/resolve.gif" id="com.ibm.team.workitem.issueWorkflow.state.s5" name="Resolved" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.reopen"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="riskWorkflow">
        <workflow name="Risk Workflow" startActionId="riskWorkflow.action.new">
            <resolution icon="processattachment:/workflow/defer.gif" id="riskWorkflow.resolution.r0" name="Avoided"/>
            <resolution icon="processattachment:/workflow/transfer.gif" id="riskWorkflow.resolution.r1" name="Transferred/Shared"/>
            <resolution icon="processattachment:/workflow/close.gif" id="riskWorkflow.resolution.r2" name="Mitigated"/>
            <resolution icon="processattachment:/workflow/accepted.gif" id="riskWorkflow.resolution.r3" name="Accepted"/>
            <resolution icon="processattachment:/workflow/reject.gif" id="riskWorkflow.resolution.r4" name="Invalid"/>
            <action icon="processattachment:/workflow/new.gif" id="riskWorkflow.action.new" name="New" state="riskWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/close.gif" id="riskWorkflow.action.close" name="Close" state="riskWorkflow.state.s8">
                <resolution id="riskWorkflow.resolution.r0"/>
                <resolution id="riskWorkflow.resolution.r1"/>
                <resolution id="riskWorkflow.resolution.r2"/>
                <resolution id="riskWorkflow.resolution.r3"/>
                <resolution id="riskWorkflow.resolution.r4"/>
            </action>
            <action icon="processattachment:/workflow/reject.gif" id="riskWorkflow.action.rejected" name="Reject" state="riskWorkflow.state.s4"/>
            <action icon="processattachment:/workflow/reopen.gif" id="riskWorkflow.action.reopen" name="Reopen" state="riskWorkflow.state.s9"/>
            <action icon="processattachment:/workflow/mitigated.gif" id="riskWorkflow.action.mitigated" name="Mitigate" state="riskWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/accepted.gif" id="riskWorkflow.action.accepted" name="Accept" state="riskWorkflow.state.s3"/>
            <action icon="processattachment:/workflow/inprogress.gif" id="riskWorkflow.action.inprogress" name="In Progress" state="riskWorkflow.state.s6"/>
            <action icon="processattachment:/workflow/verify.gif" id="riskWorkflow.action.tobevalidated" name="To Be Validated" state="riskWorkflow.state.s2"/>
            <state group="open" icon="processattachment:/workflow/new.gif" id="riskWorkflow.state.s1" name="New" showResolution="false">
                <action id="riskWorkflow.action.tobevalidated"/>
                <action id="riskWorkflow.action.accepted"/>
                <action id="riskWorkflow.action.inprogress"/>
                <action id="riskWorkflow.action.rejected"/>
            </state>
            <state group="open" icon="processattachment:/workflow/verify.gif" id="riskWorkflow.state.s2" name="To Be Validated" showResolution="false">
                <action id="riskWorkflow.action.accepted"/>
                <action id="riskWorkflow.action.rejected"/>
            </state>
            <state icon="processattachment:/workflow/accepted.gif" id="riskWorkflow.state.s3" name="Accepted" showResolution="false">
                <action id="riskWorkflow.action.inprogress"/>
            </state>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="riskWorkflow.state.s6" name="In Progress" showResolution="false">
                <action id="riskWorkflow.action.mitigated"/>
                <action id="riskWorkflow.action.close"/>
            </state>
            <state icon="processattachment:/workflow/mitigated.gif" id="riskWorkflow.state.s7" name="Mitigated" showResolution="false">
                <action id="riskWorkflow.action.close"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/reject.gif" id="riskWorkflow.state.s4" name="Rejected" showResolution="false">
                <action id="riskWorkflow.action.close"/>
                <action id="riskWorkflow.action.reopen"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="riskWorkflow.state.s8" name="Closed" showResolution="true">
                <action id="riskWorkflow.action.reopen"/>
            </state>
            <state group="open" icon="processattachment:/workflow/reopen.gif" id="riskWorkflow.state.s9" name="Reopened" showResolution="false">
                <action id="riskWorkflow.action.new"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="com.ibm.team.workitem.businessneedWorkflow">
        <workflow name="Business Need Workflow" reopenActionId="com.ibm.team.workitem.businessneedWorkflow.action.reopen" startActionId="com.ibm.team.workitem.businessneedWorkflow.action.init">
            <resolution icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_unresolv.gif" id="com.ibm.team.workitem.businessneedWorkflow.r0" name="Unresolved"/>
            <resolution icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_impl.gif" id="com.ibm.team.workitem.businessneedWorkflow.r1" name="Implemented"/>
            <resolution icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_rejected.gif" id="com.ibm.team.workitem.businessneedWorkflow.r2" name="Rejected"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_proposed.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.a1" name="Uncommit" state="com.ibm.team.workitem.businessneedWorkflow.state.s52"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_closed.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.close" name="Close" state="com.ibm.team.workitem.businessneedWorkflow.state.s55">
                <resolution id="com.ibm.team.workitem.businessneedWorkflow.r1"/>
                <resolution id="com.ibm.team.workitem.businessneedWorkflow.r2"/>
            </action>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_proposed.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.propose" name="Propose" state="com.ibm.team.workitem.businessneedWorkflow.state.s52"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_deferred.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.defer" name="Defer" state="com.ibm.team.workitem.businessneedWorkflow.state.s54"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.init" name="New" state="com.ibm.team.workitem.businessneedWorkflow.state.s51"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.reopen" name="Reopen" state="com.ibm.team.workitem.businessneedWorkflow.state.s51"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_committed.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.commit" name="Commit" state="com.ibm.team.workitem.businessneedWorkflow.state.s53"/>
            <state group="closed" icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_closed.gif" id="com.ibm.team.workitem.businessneedWorkflow.state.s55" name="Closed" showResolution="true">
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.reopen"/>
            </state>
            <state group="open" icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_committed.gif" id="com.ibm.team.workitem.businessneedWorkflow.state.s53" name="Approved" showResolution="false">
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.a1"/>
            </state>
            <state group="closed" icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_deferred.gif" id="com.ibm.team.workitem.businessneedWorkflow.state.s54" name="Deferred" showResolution="false">
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.commit"/>
            </state>
            <state group="open" icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif" id="com.ibm.team.workitem.businessneedWorkflow.state.s51" name="New" showResolution="false">
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.propose"/>
            </state>
            <state group="open" icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_proposed.gif" id="com.ibm.team.workitem.businessneedWorkflow.state.s52" name="Proposed" showResolution="false">
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.commit"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.defer"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="com.ibm.team.workitem.milestoneWorkflow">
        <workflow name="Milestone Workflow" reopenActionId="com.ibm.team.workitem.milestoneWorkflow.action.reopen" startActionId="com.ibm.team.workitem.milestoneWorkflow.action.init">
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.milestoneWorkflow.action.reopen" name="Reopen" state="com.ibm.team.workitem.milestoneWorkflow.state.s51"/>
            <action icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.milestoneWorkflow.action.close" name="Close" state="com.ibm.team.workitem.milestoneWorkflow.state.s55"/>
            <action icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.milestoneWorkflow.action.reject" name="Reject" state="com.ibm.team.workitem.milestoneWorkflow.state.s53"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.milestoneWorkflow.action.init" name="New" state="com.ibm.team.workitem.milestoneWorkflow.state.s51"/>
            <action icon="processattachment:/workflow/accepted.gif" id="com.ibm.team.workitem.milestoneWorkflow.action.approve" name="Approve" state="com.ibm.team.workitem.milestoneWorkflow.state.s52"/>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.milestoneWorkflow.state.s55" name="Closed" showResolution="false">
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.reopen"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.milestoneWorkflow.state.s51" name="New" showResolution="false">
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.approve"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.reject"/>
            </state>
            <state group="open" icon="processattachment:/workflow/accepted.gif" id="com.ibm.team.workitem.milestoneWorkflow.state.s52" name="Approved" showResolution="false">
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.close"/>
            </state>
            <state group="open" icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.milestoneWorkflow.state.s53" name="Rejected" showResolution="false">
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.reopen"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="uam">
        <workflow name="UAM" startActionId="uam.action.a1">
            <action id="uam.action.a1" name="To SBI Infra Team" state="uam.state.s2"/>
            <action id="uam.action.a2" name="To IBM Approval" state="uam.state.s3"/>
            <action id="uam.action.a3" name="To AGM (SYS) Approval" state="uam.state.s4"/>
            <action id="uam.action.a4" name="To Over All Approval (SBI DGM)" state="uam.state.s5"/>
            <action id="uam.action.a5" name="To LDAP mapping/creation Approval" state="uam.state.s6"/>
            <action id="uam.action.a6" name="To IBM/SBI ETL user creation/Project mapping" state="uam.state.s7"/>
            <state id="uam.state.s1" name="New" showResolution="false"/>
            <state id="uam.state.s2" name="SBI Infra Team" showResolution="false"/>
            <state id="uam.state.s3" name="IBM Approval" showResolution="false"/>
            <state id="uam.state.s4" name="AGM (SYS) Approval" showResolution="false"/>
            <state id="uam.state.s5" name="Over All Approval (SBI DGM)" showResolution="false"/>
            <state id="uam.state.s6" name="LDAP mapping/creation Approval" showResolution="false"/>
            <state id="uam.state.s7" name="IBM/SBI ETL user creation/Project mapping" showResolution="false"/>
        </workflow>
    </workflowDefinition>
</configuration-data>
<configuration-data final="false" id="com.ibm.team.workitem.configuration.workflowBinding" xmlns="http://com.ibm.team.workitem/workflowBinding">
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType" workflowId="bugzillaWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.businessneed" workflowId="com.ibm.team.workitem.businessneedWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.issue" workflowId="com.ibm.team.workitem.issueWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.milestone" workflowId="com.ibm.team.workitem.milestoneWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.projectchangerequest" workflowId="com.ibm.team.workitem.projectChangeRequestWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.risk" workflowId="riskWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.riskaction" workflowId="bugzillaWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.task" workflowId="com.ibm.team.workitem.taskWorkflow"/>
</configuration-data>
<configuration-data id="com.ibm.team.workitem.editor.configuration.quickinformationconfiguration" xmlns="http://com.ibm.team.workitem.editor/quickinformation">
<quickinformationConfiguration id="com.ibm.team.workitem.configuration.quickinformation.default">
<presentation title="Subscribers" kind="com.ibm.team.workitem.quickinformation.kind.subscriber">
<property key="linkTarget" value="com.ibm.team.workitem.attribute.subscriptions" />
</presentation>
<presentation title="Attachments" kind="com.ibm.team.workitem.quickinformation.kind.artifact">
<property key="linkTarget" value="com.ibm.team.workitem.presentation.attachments" />
</presentation>
<presentation title="Parent" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.parentworkitem/parent" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Children" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.parentworkitem/children" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Blocks" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.blocksworkitem/blocks" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Depends On" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.blocksworkitem/dependsOn" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
        <presentation kind="com.ibm.team.workitem.quickinformation.kind.workitem" title="Resolves">
            <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
            <property key="endpointId" value="com.ibm.team.workitem.linktype.resolvesworkitem/resolves"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.quickinformation.kind.workitem" title="Resolved By">
            <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
            <property key="endpointId" value="com.ibm.team.workitem.linktype.resolvesworkitem/resolvedBy"/>
        </presentation>
<presentation title="Duplicate Of" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.duplicateworkitem/duplicateOf" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation kind="com.ibm.team.workitem.quickinformation.kind.workitem" title="Predecessor">
            <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
            <property key="endpointId" value="com.ibm.team.workitem.linktype.schedulePredecessor/predecessor"/>
        </presentation>
<presentation kind="com.ibm.team.workitem.quickinformation.kind.workitem" title="Successor">
            <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
            <property key="endpointId" value="com.ibm.team.workitem.linktype.schedulePredecessor/successor"/>
        </presentation>
<presentation title="Duplicated By" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.duplicateworkitem/duplicates" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Related" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.relatedworkitem/" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Copies" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.copiedworkitem/copies" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Copied From" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.copiedworkitem/copiedFrom" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Mentions" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.workitem.linktype.textualReference/target" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Mentioned By" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.workitem.linktype.textualReference/source" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Related Artifacts" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.workitem.linktype.relatedartifact/relatedArtifact" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Change Sets" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.filesystem.workitems.change_set/com.ibm.team.scm.ChangeSet" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Reported against Builds" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.build.linktype.reportedWorkItems/com.ibm.team.build.common.link.reportedAgainstBuilds" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Included in Builds" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.build.linktype.includedWorkItems/com.ibm.team.build.common.link.includedInBuilds" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="External Connection" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.interop.linktype.item/externalConnection" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation kind="com.ibm.team.workitem.quickinformation.kind.reference" title="SVN Revisions">
<property key="endpointId" value="com.ibm.team.scm.svn.linkType.workItem/source"/>
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
</presentation>
<presentation title="Approvals" kind="com.ibm.team.workitem.quickinformation.kind.approval">
<property key="linkTarget" value="com.ibm.team.workitem.presentation.approvals" />
</presentation>
<presentation title="Affects Test Execution" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.affectsExecutionResult/affects"/>      
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Blocks Test Execution" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.blocksTestExecutionRecord/blocks"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Affects Plan Item" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.cm.affectsPlanItem/planItem"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Affects Requirement" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.rm.relatedRequirement/requirement"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Affected By Defect" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.cm.affectedByDefect/defect"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Implements Requirement" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.implementsRequirement/implements"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tested By Test Case" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.testedByTestCase/testedby"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tracks Test Case" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.qm.relatedTestCase/testCase"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tracks Execution Record" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.qm.relatedExecutionRecord/executionRecord"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tracks Test Plan" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.qm.relatedTestPlan/testPlan"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tracks Test Script" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.qm.relatedTestScript/testScript"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tracks Requirement" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.rm.tracksRequirement/requirement"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Related Change Request" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.relatedChangeManagement/relatedChangeManagement"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>            
                    </presentation>
</quickinformationConfiguration>
</configuration-data>
<configuration-data final="false" id="com.ibm.team.workitem.editor.configuration.presentations" xmlns="http://com.ibm.team.workitem.editor/presentations">
    <editor id="com.ibm.team.workitem.editor.default">
        <tab tabId="com.ibm.team.workitem.editor.default.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.overview" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.links" title="Links"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="Custom">
            <property key="hideIfEmpty" value="true"/>
        </tab>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
        <tab tabId="com.ibm.team.workitem.tab.timesheet" title="Time Tracking"/>
    </editor>
    <editor id="com.ibm.team.workitem.editor.scope">
        <tab tabId="com.ibm.team.workitem.editor.scope.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.overview.scope" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.links" title="Links"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="Custom">
            <property key="hideIfEmpty" value="true"/>
        </tab>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
    </editor>
    <editor id="com.ibm.team.workitem.editor.risk">
        <tab tabId="com.ibm.team.workitem.editor.risk.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.overview.risk" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.links" title="Links"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="Custom">
            <property key="hideIfEmpty" value="true"/>
        </tab>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
    </editor>
    <editor id="com.ibm.team.workitem.editor.businessneed">
        <tab tabId="com.ibm.team.workitem.editor.businessneed.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.businessneed_overview" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.links" title="Links"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="Custom">
            <property key="hideIfEmpty" value="true"/>
        </tab>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
    </editor>
    <editor id="com.ibm.team.workitem.editor.milestone">
        <tab tabId="com.ibm.team.workitem.editor.milestone.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.milestone_overview" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.links" title="Links"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
    </editor>
    <editor id="com.ibm.team.apt.planPreview">
        <tab tabId="com.ibm.team.apt.planPreview.default" title="Default"/>
        <tab tabId="com.ibm.team.apt.planPreview.risk" title="Risk"/>
        <tab tabId="com.ibm.team.apt.planPreview.businessneed" title="Business Need"/>
        <tab tabId="com.ibm.team.apt.planPreview.milestone" title="Milestone"/>
        <tab tabId="com.ibm.team.apt.planPreview.scope" title="Issue"/>
    </editor>
    <editor id="com.ibm.team.workitem.web.inline">
        <tab tabId="com.ibm.team.workitem.web.inline.default" title="Default"/>
        <tab tabId="com.ibm.team.workitem.web.inline.task" title="Task"/>
        <tab tabId="com.ibm.team.workitem.web.inline.risk" title="Risk"/>
        <tab tabId="com.ibm.team.workitem.web.inline.businessneed" title="Business Need"/>
        <tab tabId="com.ibm.team.workitem.web.inline.milestone" title="Milestone"/>
        <tab tabId="com.ibm.team.workitem.web.inline.scope" title="Issue"/>
    </editor>
    <editor id="com.ibm.team.workitem.lightweight">
        <tab tabId="com.ibm.team.workitem.lightweight.editor" title="Other Work Item Editor Elements"/>
    </editor>
    <editor id="com.ibm.team.workitem.editor.riskaction">
        <tab tabId="com.ibm.team.workitem.editor.riskaction.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.overview.riskaction" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.links" title="Links"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="Custom">
            <property key="hideIfEmpty" value="true"/>
        </tab>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
        <tab tabId="com.ibm.team.workitem.tab.timesheet" title="Time Tracking"/>
    </editor>
    <editor id="UAM">
        <tab tabId="com.ibm.team.workitem.editor.default.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.overview_duplicate_UAM" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="Custom">
            <property key="hideIfEmpty" value="true"/>
        </tab>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
    </editor>
    <section id="com.ibm.team.workitem.section.attachments">
        <presentation id="com.ibm.team.workitem.presentation.attachments" kind="com.ibm.team.workitem.kind.internal.attachments"/>
    </section>
    <tab id="com.ibm.team.workitem.editor.businessneed.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <section id="com.ibm.team.workitem.section.links">
        <presentation id="com.ibm.team.workitem.presentation.links" kind="com.ibm.team.workitem.kind.internal.links"/>
    </section>
    <section id="com.ibm.team.workitem.section.businessneed_details">
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation id="Work Progress" kind="com.ibm.team.apt.kind.internal.progress"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolutiondate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolver" kind="com.ibm.team.workitem.kind.contributor">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
    </section>
    <section id="com.ibm.team.workitem.section.discussion">
        <presentation id="com.ibm.team.workitem.presentation.discussion" kind="com.ibm.team.workitem.kind.internal.discussion"/>
    </section>
    <tab id="com.ibm.team.workitem.tab.overview.scope" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.details.scope" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <section id="com.ibm.team.workitem.section.quickinformation">
        <presentation id="com.ibm.team.workitem.presentation.quickinformation" kind="com.ibm.team.workitem.kind.internal.quickInformation">
            <property key="quickinformationConfiguration" value="com.ibm.team.workitem.configuration.quickinformation.default"/>
        </presentation>
    </section>
    <tab id="com.ibm.team.apt.planPreview.scope" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.scope.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <section id="com.ibm.team.apt.planPreview.risk.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.riskcategory" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.identificationdate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probability" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.impact" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.exposure" kind="com.ibm.team.workitem.kind.long">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.precision" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.consequencecost" kind="com.ibm.team.tpt.kind.cost"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probabilitycost" kind="com.ibm.team.tpt.kind.cost">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.occurrencedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <tab id="com.ibm.team.workitem.tab.approvals" layout="builtInApprovalsLayout">
        <section sectionId="com.ibm.team.workitem.section.approvals" title="Approvals"/>
    </tab>
    <section id="com.ibm.team.workitem.section.timesheet">
        <presentation kind="com.ibm.team.tpt.kind.internal.timeSheet"/>
    </section>
    <tab id="com.ibm.team.workitem.tab.links" layout="builtInLinksLayout">
        <section sectionId="com.ibm.team.workitem.section.attachments" slot="attachments" title="Attachments"/>
        <section sectionId="com.ibm.team.workitem.section.subscribers" slot="subscribers" title="Subscribers"/>
        <section sectionId="com.ibm.team.workitem.section.links" slot="links" title="Links"/>
    </tab>
    <section id="com.ibm.team.workitem.web.inline.section.quickinformation">
        <presentation id="com.ibm.team.workitem.presentation.quickinformation" kind="com.ibm.team.workitem.kind.internal.quickInformation">
            <property key="hideIfCreation" value="true"/>
            <property key="quickinformationConfiguration" value="com.ibm.team.workitem.configuration.quickinformation.default"/>
        </presentation>
    </section>
    <tab id="com.ibm.team.workitem.web.inline.default" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.default.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.web.inline.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.workitem.web.inline.riskaction">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.riskaction.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
    </tab>
    <section id="com.ibm.team.workitem.section.timesheetQuickInformation">
        <presentation kind="com.ibm.team.tpt.kind.internal.timesheetEntries"/>
    </section>
    <section id="com.ibm.team.workitem.section.description">
        <presentation attributeId="reason" kind="com.ibm.team.workitem.kind.internal.description"/>
    </section>
    <section id="com.ibm.team.workitem.web.inline.scope.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
    </section>
    <tab id="com.ibm.team.workitem.web.inline.milestone" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.milestone.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.workitem.tab.overview_duplicate_UAM" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.details_duplicate" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Reason"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <tab id="com.ibm.team.workitem.tab.businessneed_overview" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.businessneed_details" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <tab id="com.ibm.team.workitem.web.inline.scope" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.scope.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.web.inline.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <section id="com.ibm.team.workitem.web.inline.default.summary">
        <presentation attributeId="com.ibm.team.workitem.attribute.summary" kind="com.ibm.team.workitem.kind.smallhtml">
            <property key="labelVisible" value="true"/>
        </presentation>
    </section>
    <section id="com.ibm.team.workitem.web.inline.milestone.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.apt.planPreview.default.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duration" kind="com.ibm.team.apt.kind.internal.estimate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.timespent" kind="com.ibm.team.apt.kind.internal.timespent">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.workitem.section.details.scope">
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.creationdate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.creator" kind="com.ibm.team.workitem.kind.contributor">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolutiondate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolver" kind="com.ibm.team.workitem.kind.contributor">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
    </section>
    <tab id="com.ibm.team.apt.planPreview.riskaction" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.riskaction.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.workitem.tab.timesheet" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.timesheet" slot="description" title="Time Tracking"/>
        <section sectionId="com.ibm.team.workitem.section.timesheetQuickInformation" slot="quickInfo" title="Quick Information"/>
    </tab>
    <section id="com.ibm.team.workitem.lightweight.editor.section">
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.summary"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.description" kind="com.ibm.team.workitem.kind.html">
            <property key="small" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.version" kind="com.ibm.team.workitem.kind.internal.deliverable"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
    </section>
    <tab id="com.ibm.team.workitem.editor.risk.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <tab id="com.ibm.team.workitem.web.inline.task" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.task.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.web.inline.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <section id="com.ibm.team.workitem.web.inline.section.discussion">
        <presentation id="com.ibm.team.workitem.presentation.discussion" kind="com.ibm.team.workitem.kind.internal.discussion">
            <property key="hideIfCreation" value="true"/>
        </presentation>
    </section>
    <tab id="com.ibm.team.workitem.tab.overview" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.details" slot="discussion" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <tab id="com.ibm.team.apt.planPreview.milestone" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.milestone.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <section id="com.ibm.team.apt.planPreview.businessneed.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation kind="com.ibm.team.apt.kind.internal.progress"/>
    </section>
    <section id="com.ibm.team.workitem.web.inline.riskaction.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state"/>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.version" kind="com.ibm.team.workitem.kind.internal.deliverable"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.riskaction.strategy" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
    </section>
    <section id="com.ibm.team.workitem.section.milestone_details">
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.creationdate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.creator" kind="com.ibm.team.workitem.kind.contributor">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.workitem.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.version" kind="com.ibm.team.workitem.kind.internal.deliverable"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.creationdate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.creator" kind="com.ibm.team.workitem.kind.contributor">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duration" kind="com.ibm.team.apt.kind.internal.estimate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.timespent" kind="com.ibm.team.apt.kind.internal.timespent">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation id="com.ibm.team.apt.presentation.plannedtime" kind="com.ibm.team.apt.kind.internal.plannedtime"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolutiondate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolver" kind="com.ibm.team.workitem.kind.contributor">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
    </section>
    <section id="com.ibm.team.workitem.header.default">
        <presentation attributeId="uamrequesterName" kind="com.ibm.team.workitem.kind.string"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="labelVisible" value="false"/>
        </presentation>
    </section>
    <section id="com.ibm.team.apt.planPreview.scope.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
    </section>
    <tab id="com.ibm.team.workitem.editor.milestone.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <section id="com.ibm.team.apt.planPreview.milestone.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.apt.planPreview.riskaction.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.riskaction.strategy" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duration" kind="com.ibm.team.apt.kind.internal.estimate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.timespent" kind="com.ibm.team.apt.kind.internal.timespent">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <tab id="com.ibm.team.workitem.tab.history" layout="builtInHistoryLayout">
        <section sectionId="com.ibm.team.workitem.section.history" title="History"/>
    </tab>
    <tab id="com.ibm.team.workitem.editor.default.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <section id="com.ibm.team.workitem.web.inline.task.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <tab id="com.ibm.team.apt.planPreview.risk" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.risk.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.apt.planPreview.businessneed" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.businessneed.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <section id="com.ibm.team.workitem.web.inline.risk.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target" label="Identified For"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.riskcategory" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.identificationdate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probability" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.impact" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.exposure" kind="com.ibm.team.workitem.kind.long">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.precision" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.consequencecost" kind="com.ibm.team.tpt.kind.cost"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probabilitycost" kind="com.ibm.team.tpt.kind.cost">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.occurrencedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.workitem.web.inline.businessneed.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
    </section>
    <tab id="com.ibm.team.workitem.tab.customAttributes" layout="builtInCustomAttributesLayout">
        <section sectionId="com.ibm.team.workitem.section.collector_small" slot="left" title="Miscellaneous">
            <property key="width" value="small"/>
            <property key="autocollect" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.collector_wide" slot="right" title="Miscellaneous">
            <property key="width" value="wide"/>
            <property key="autocollect" value="true"/>
        </section>
    </tab>
    <section id="com.ibm.team.apt.planPreview.default.section.summary">
        <presentation attributeId="com.ibm.team.workitem.attribute.summary" kind="com.ibm.team.workitem.kind.smallhtml">
            <property key="labelVisible" value="true"/>
        </presentation>
    </section>
    <tab id="com.ibm.team.apt.planPreview.default" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.default.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <section id="com.ibm.team.workitem.section.subscribers">
        <presentation attributeId="com.ibm.team.workitem.attribute.subscriptions" kind="com.ibm.team.workitem.kind.contributorList"/>
    </section>
    <section id="com.ibm.team.workitem.section.details_duplicate">
        <presentation attributeId="uamcontactnumber" kind="com.ibm.team.workitem.kind.integer"/>
        <presentation attributeId="uamorganization" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="email" kind="com.ibm.team.workitem.kind.smallhtml"/>
        <presentation attributeId="uamTeamead" kind="com.ibm.team.workitem.kind.contributor"/>
        <presentation attributeId="uamloginnamerequested" kind="com.ibm.team.workitem.kind.smallhtml"/>
        <presentation attributeId="uamhomedirectoryrequested" kind="com.ibm.team.workitem.kind.smallhtml"/>
        <presentation attributeId="requested" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="request" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="uamcategory" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="environment" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="application" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="location" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="system" kind="com.ibm.team.workitem.kind.decimal"/>
        <presentation attributeId="host" kind="com.ibm.team.workitem.kind.smallhtml"/>
        <presentation attributeId="role" kind="com.ibm.team.workitem.kind.text"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
    </section>
    <tab id="com.ibm.team.workitem.editor.scope.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <tab id="com.ibm.team.workitem.tab.milestone_overview" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.milestone_details" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <section id="com.ibm.team.workitem.section.history">
        <presentation id="com.ibm.team.workitem.presentation.history" kind="com.ibm.team.workitem.kind.internal.history"/>
    </section>
    <section id="com.ibm.team.workitem.section.details.riskaction">
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.version" kind="com.ibm.team.workitem.kind.internal.deliverable"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.riskaction.strategy" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.creationdate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.creator" kind="com.ibm.team.workitem.kind.contributor">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duration" kind="com.ibm.team.apt.kind.internal.estimate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.timespent" kind="com.ibm.team.apt.kind.internal.timespent">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation id="com.ibm.team.apt.presentation.plannedtime" kind="com.ibm.team.apt.kind.internal.plannedtime"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolutiondate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolver" kind="com.ibm.team.workitem.kind.contributor">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
    </section>
    <section id="com.ibm.team.workitem.section.details.risk">
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.creationdate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.creator" kind="com.ibm.team.workitem.kind.contributor">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target" label="Identified For"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolutiondate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolver" kind="com.ibm.team.workitem.kind.contributor">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probability" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.impact" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.exposure" kind="com.ibm.team.workitem.kind.long">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation id="com.ibm.team.tpt.presentation.risk.matrix" kind="com.ibm.team.tpt.risk.kind.matrix"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.precision" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.consequencecost" kind="com.ibm.team.tpt.kind.cost"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probabilitycost" kind="com.ibm.team.tpt.kind.cost">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.riskcategory" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.identificationdate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.occurrencedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <tab id="com.ibm.team.workitem.tab.overview.riskaction" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.details.riskaction" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <section id="com.ibm.team.workitem.section.approvals">
        <presentation id="com.ibm.team.workitem.presentation.approvals" kind="com.ibm.team.workitem.kind.internal.approvals">
            <property key="toBeLinkedPartId" value="com.ibm.team.workitem.presentation.discussion"/>
        </presentation>
    </section>
    <section id="com.ibm.team.workitem.web.inline.default.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.version" kind="com.ibm.team.workitem.kind.internal.deliverable"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
    </section>
    <tab id="com.ibm.team.workitem.lightweight.editor" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.lightweight.editor.section" title="Lightweight Creator"/>
    </tab>
    <tab id="com.ibm.team.workitem.editor.riskaction.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <tab id="com.ibm.team.workitem.web.inline.businessneed" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.businessneed.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.workitem.web.inline.risk" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.risk.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.web.inline.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.workitem.tab.overview.risk" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.details.risk" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
</configuration-data>

<configuration-data final="false" id="com.ibm.team.workitem.editor.configuration.workitemTypeEditorIdBinding" xmlns="http://com.ibm.team.workitem.editor/workitemTypeEditorIdBinding">
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.default" workitemType="defect"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.default" workitemType="task"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.scope" workitemType="projectchangerequest"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.scope" workitemType="issue"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.businessneed" workitemType="com.ibm.team.workitem.workItemType.businessneed"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.milestone" workitemType="com.ibm.team.workitem.workItemType.milestone"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.risk" workitemType="com.ibm.team.workitem.workItemType.risk"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.riskaction" workitemType="com.ibm.team.workitem.workItemType.riskaction"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="defect"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="task"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="projectchangerequest"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="issue"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="com.ibm.team.workitem.workItemType.businessneed"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="com.ibm.team.workitem.workItemType.milestone"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="com.ibm.team.workitem.workItemType.risk"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="com.ibm.team.workitem.workItemType.riskaction"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.default" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="defect"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.default" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="task"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.scope" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="projectchangerequest"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.scope" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="issue"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.businessneed" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="com.ibm.team.workitem.workItemType.businessneed"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.milestone" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="com.ibm.team.workitem.workItemType.milestone"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.risk" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="com.ibm.team.workitem.workItemType.risk"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.riskaction" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="com.ibm.team.workitem.workItemType.riskaction"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.default" target="com.ibm.team.workitem.web.inline" workitemType="defect"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.task" target="com.ibm.team.workitem.web.inline" workitemType="task"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.scope" target="com.ibm.team.workitem.web.inline" workitemType="projectchangerequest"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.scope" target="com.ibm.team.workitem.web.inline" workitemType="issue"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.businessneed" target="com.ibm.team.workitem.web.inline" workitemType="com.ibm.team.workitem.workItemType.businessneed"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.milestone" target="com.ibm.team.workitem.web.inline" workitemType="com.ibm.team.workitem.workItemType.milestone"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.risk" target="com.ibm.team.workitem.web.inline" workitemType="com.ibm.team.workitem.workItemType.risk"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.riskaction" target="com.ibm.team.workitem.web.inline" workitemType="com.ibm.team.workitem.workItemType.riskaction"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.businessneed" workitemType="uam"/>
</configuration-data>

<configuration-data final="false" id="com.ibm.team.workitem.configuration.enumerations" xmlns="http://com.ibm.team.workitem/enumerations">
    <enumeration attributeTypeId="priority" name="Priority">
        <literal default="true" icon="processattachment:/enumeration/unassigned.gif" id="priority.literal.l1" name="Unassigned"/>
        <literal icon="processattachment:/enumeration/low.gif" id="priority.literal.l2" name="Low"/>
        <literal icon="processattachment:/enumeration/medium.gif" id="priority.literal.l3" name="Medium"/>
        <literal icon="processattachment:/enumeration/high.gif" id="priority.literal.l4" name="High"/>
    </enumeration>
    <enumeration attributeTypeId="severity" name="Severity">
        <literal icon="processattachment:/enumeration/unassigned2.gif" id="severity.literal.l1" name="Unclassified"/>
        <literal icon="processattachment:/enumeration/minor.gif" id="severity.literal.l2" name="Minor"/>
        <literal default="true" icon="processattachment:/enumeration/normal.gif" id="severity.literal.l3" name="Normal"/>
        <literal icon="processattachment:/enumeration/major.gif" id="severity.literal.l4" name="Major"/>
        <literal icon="processattachment:/enumeration/critical.gif" id="severity.literal.l5" name="Critical"/>
        <literal icon="processattachment:/enumeration/blocker.gif" id="severity.literal.l6" name="Blocker"/>
    </enumeration>
    <enumeration attributeTypeId="impact" name="Impact">
        <literal default="true" icon="processattachment:/enumeration/minor.gif" id="risk.impact.literal.l20" name="20% - Minor"/>
        <literal icon="processattachment:/enumeration/normal.gif" id="risk.impact.literal.l40" name="40% - Normal"/>
        <literal icon="processattachment:/enumeration/major.gif" id="risk.impact.literal.l60" name="60% - Major"/>
        <literal icon="processattachment:/enumeration/critical.gif" id="risk.impact.literal.l80" name="80% - Critical"/>
        <literal icon="processattachment:/enumeration/blocker.gif" id="risk.impact.literal.l100" name="100% - Blocker"/>
    </enumeration>
    <enumeration attributeTypeId="probability" name="Probability">
        <literal default="true" id="risk.probability.literal.l20" name="20% - Very Low"/>
        <literal id="risk.probability.literal.l40" name="40% - Low"/>
        <literal id="risk.probability.literal.l60" name="60% - Moderate"/>
        <literal id="risk.probability.literal.l80" name="80% - High"/>
        <literal id="risk.probability.literal.l100" name="100% - Very High"/>
    </enumeration>
    <enumeration attributeTypeId="precision" name="Precision">
        <literal icon="processattachment:/enumeration/low.gif" id="risk.precision.literal.l1" name="Low"/>
        <literal default="true" icon="processattachment:/enumeration/medium.gif" id="risk.precision.literal.l2" name="Medium"/>
        <literal icon="processattachment:/enumeration/high.gif" id="risk.precision.literal.l3" name="High"/>
    </enumeration>
    <enumeration attributeTypeId="constraintEnum" name="Constraint">
        <literal default="true" id="constraintEnum.literal.asap" name="As Soon As Possible"/>
        <literal id="constraintEnum.literal.snet" name="Start No Earlier Than"/>
        <literal id="constraintEnum.literal.fnlt" name="Finish No Later Than"/>
    </enumeration>
    <enumeration attributeTypeId="actionstrategy" name="Action Strategy">
        <literal default="true" id="actionstrategy.literal.l1" name="Mitigation"/>
        <literal id="actionstrategy.literal.l2" name="Contingency"/>
        <literal id="actionstrategy.literal.l3" name="Avoidance"/>
    </enumeration>
    <enumeration attributeTypeId="riskcategory" name="Risk Category">
        <literal default="true" id="riskcategory.literal.l1" name="Socio-cultural"/>
        <literal id="riskcategory.literal.l2" name="Political"/>
        <literal id="riskcategory.literal.l3" name="Economic"/>
        <literal id="riskcategory.literal.l4" name="Competitive"/>
        <literal id="riskcategory.literal.l5" name="Technology"/>
        <literal id="riskcategory.literal.l6" name="Regulatory/legal"/>
        <literal id="riskcategory.literal.l7" name="Uncertainty/risk"/>
        <literal id="riskcategory.literal.l8" name="Market"/>
    </enumeration>
    <enumeration attributeTypeId="organization" name="Organization"/>
    <enumeration attributeTypeId="uamcategory" name="Category">
        <literal id="uamcategory.literal.l2" name="Application"/>
        <literal id="uamcategory.literal.l4" name="OS"/>
        <literal id="uamcategory.literal.l6" name="Database"/>
        <literal default="true" id="uamcategory.literal.l8" name="None"/>
    </enumeration>
    <enumeration attributeTypeId="environment" name="Environment">
        <literal id="environment.literal.l2" name="Prod"/>
        <literal id="environment.literal.l4" name="DEV"/>
        <literal id="environment.literal.l6" name="UAT"/>
        <literal default="true" id="environment.literal.l8" name="None"/>
    </enumeration>
    <enumeration attributeTypeId="application" name="Application">
        <literal default="true" id="application.literal.l2" name="ETL"/>
        <literal id="application.literal.l4" name="COGNOS"/>
        <literal id="application.literal.l6" name="TWS"/>
    </enumeration>
    <enumeration attributeTypeId="location" name="Location">
        <literal default="true" id="location.literal.l2" name="Belapur"/>
        <literal id="location.literal.l4" name="HYD"/>
    </enumeration>
    <enumeration attributeTypeId="requestType" name="Request Type">
        <literal default="true" id="requestType.literal.l2" name="User Creation"/>
        <literal id="requestType.literal.l4" name="User access Modification"/>
        <literal id="requestType.literal.l6" name="User Deletation"/>
    </enumeration>
</configuration-data>

<!-- Shared Queries -->
<configuration-data id="com.ibm.team.workitem.configuration.queries" xmlns="http://com.ibm.team.workitem/queries">
<query description="A business need covers a feature or API that is to be added to the product or some aspect of the product that is to be improved. A business need explains the work at a suitably high enough level so that everyone can readily understand what the work is without having to understand the nitty-gritty detail." name="Business Needs" id="com.ibm.team.workitem.queries.predefined.businessNeeds">
                <select>
                    <column attribute="id"/>
                    <column attribute="internalState"/>
                    <column attribute="summary"/>
                    <column attribute="owner"/>
                </select>
                <where>
                    <condition operator="contains">
                        <attribute name="workItemType"/>
                        <value content="com.ibm.team.workitem.workItemType.businessneed" type="type"/>
                    </condition>
                </where>
                <orderBy attribute="internalState" direction="desc"/>
            </query>   
            <query description="A milestone is a reference point that marks a major event in a project and is used to monitor the project's progress." name="Milestones" id="com.ibm.team.workitem.queries.predefined.milestones">
                <select>
                    <column attribute="id"/>
                    <column attribute="internalState"/>
                    <column attribute="summary"/>
                    <column attribute="owner"/>
                </select>
                <where>
                    <condition operator="contains">
                        <attribute name="workItemType"/>
                        <value content="com.ibm.team.workitem.workItemType.milestone" type="type"/>
                    </condition>
                </where>
                <orderBy attribute="internalState" direction="desc"/>
            </query>   
<query name="All Risks" description="Lists all Risks" id="com.ibm.team.workitem.queries.predefined.allRisks">
<select>
<column attribute="id"/>
<column attribute="internalState"/>
<column attribute="summary"/>
<column attribute="owner"/>
</select>
<where>
<condition operator="is">
<attribute name="workItemType"/>
<value content="com.ibm.team.workitem.workItemType.risk" type="type"/>
</condition>
</where>
<orderBy attribute="internalState" direction="desc"/>
</query>

<query description="Lists all open Risks" name="Open Risks" id="com.ibm.team.workitem.queries.predefined.openRisks">
<select>
<column attribute="id"/>
<column attribute="internalState"/>
<column attribute="summary"/>
<column attribute="owner"/>
</select>
<where>
<and>
<condition operator="is">
<attribute name="workItemType"/>
<value content="com.ibm.team.workitem.workItemType.risk" type="type"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable arguments="open or in progress" type="state"/>
</condition>
</and>
</where>
<orderBy attribute="id" direction="desc"/>
</query>
<query description="Lists all open Risk Actions" name="Open Risk Actions" id="com.ibm.team.workitem.queries.predefined.openRiskActions">
<select>
<column attribute="id"/>
<column attribute="internalState"/>
<column attribute="summary"/>
<column attribute="owner"/>
</select>
<where>
<and>
<condition operator="is">
<attribute name="workItemType"/>
<value content="com.ibm.team.workitem.workItemType.riskaction" type="type"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable arguments="open or in progress" type="state"/>
</condition>
</and>
</where>
<orderBy attribute="id" direction="desc"/>
</query>
<query description="Lists all open Issues" name="Open Issues" id="com.ibm.team.workitem.queries.predefined.openIssues">
<select>
<column attribute="id"/>
<column attribute="internalState"/>
<column attribute="summary"/>
<column attribute="owner"/>
</select>
<where>
<and>
<condition operator="is">
<attribute name="workItemType"/>
<value content="issue" type="type"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable arguments="open or in progress" type="state"/>
</condition>
</and>
</where>
<orderBy attribute="id" direction="desc"/>
</query>
<query description="Lists all Project Change Requests" name="Open Project Change Requests" id="com.ibm.team.workitem.queries.predefined.openProjectChangeRequests">
<select>
<column attribute="id"/>
<column attribute="internalState"/>
<column attribute="summary"/>
<column attribute="owner"/>
</select>
<where>
<and>
<condition operator="is">
<attribute name="workItemType"/>
<value content="projectchangerequest" type="type"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable arguments="open or in progress" type="state"/>
</condition>
</and>
</where>
<orderBy attribute="id" direction="desc"/>
</query>
<query name="Open created by me" description="Work items I have created which are open or in progress" id="com.ibm.team.workitem.queries.predefined.openCreated">
<where>
<and>
<condition operator="is">
<attribute name="creator"/>
<variable type="currentUser"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="open or in progress"/>
</condition>
</and>
</where>
</query>
<query name="Closed created by me" description="Work items I have created which have been resolved" id="com.ibm.team.workitem.queries.predefined.closedCreated">
<where>
<and>
<condition operator="is">
<attribute name="creator"/>
<variable type="currentUser"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="closed"/>
</condition>
</and>
</where>
</query>
<query name="Resolved by me" description="Work items I have resolved" id="com.ibm.team.workitem.queries.predefined.myResolved">
<where>
<and>
<condition operator="is">
<attribute name="resolver"/>
<variable type="currentUser"/>
</condition>
</and>
</where>
</query>
<query name="Open subscribed by me" description="My subscriptions to open or in progress work items" id="com.ibm.team.workitem.queries.predefined.openSubscribed">
<where>
<and>
<condition operator="containing">
<attribute name="internalSubscriptions"/>
<variable type="currentUser"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="open or in progress"/>
</condition>
</and>
</where>
</query>
<query name="Closed subscribed by me" description="My subscriptions to resolved work items" id="com.ibm.team.workitem.queries.predefined.closedSubscribed">
<where>
<and>
<condition operator="containing">
<attribute name="internalSubscriptions"/>
<variable type="currentUser"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="closed"/>
</condition>
</and>
</where>
</query>
<query name="Open assigned to me (current milestone)" description="To do list for the current milestone" id="com.ibm.team.workitem.queries.predefined.myOpenCurrent">
<where>
<and>
<condition operator="is">
<attribute name="owner"/>
<variable type="currentUser"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="open or in progress"/>
</condition>
<condition operator="is">
<attribute name="target"/>
<variable type="current milestone"/>
</condition>
</and>
</where>
</query>
<query name="Recently modified" description="Modified in the last 12 hours" id="com.ibm.team.workitem.queries.predefined.recentlyModified">
<where>
<condition operator="after">
<attribute name="modified"/>
<variable type="now" arguments="-12h"/>
</condition>
</where>
<orderBy attribute="modified" direction="desc"/>
</query>
<query name="Recently modified by me" description="Work Items I have modified in the last 12 hours" id="com.ibm.team.workitem.queries.predefined.myRecentlyModified">
<where>
<and>
<condition operator="after">
<attribute name="modified"/>
<variable type="now" arguments="-12h"/>
</condition>
<condition operator="is">
<attribute name="modifiedBy"/>
<variable type="currentUser"/>
</condition>
</and>
</where>
<orderBy attribute="modified" direction="desc"/>
</query>
<query name="Recently created by me" description="Work Items I have created in the last 12 hours" id="com.ibm.team.workitem.queries.predefined.myRecentlyCreated">
<where>
<and>
<condition operator="after">
<attribute name="creationDate"/>
<variable type="now" arguments="-12h"/>
</condition>
<condition operator="is">
<attribute name="creator"/>
<variable type="currentUser"/>
</condition>
</and>
</where>
<orderBy attribute="creationDate" direction="desc"/>
</query>
<query name="My current work" description="Work Items in progress and assigned to me" id="com.ibm.team.workitem.queries.predefined.myInProgress">
<where>
<and>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="progress"/>
</condition>
<condition operator="is">
<attribute name="owner"/>
<variable type="currentUser"/>
</condition>
</and>
</where>
<orderBy attribute="id" direction="desc"/>
</query>
<query name="Recently closed" description="Closed in the last 12 hours" id="com.ibm.team.workitem.queries.predefined.recentlyClosed">
<where>
<condition operator="after">
<attribute name="resolutionDate"/>
<variable type="now" arguments="-12h"/>
</condition>
</where>
<orderBy attribute="resolutionDate" direction="desc"/>
</query>
<query name="Pending approvals for me" description="Pending requests for approvals or reviews that involve me" id="com.ibm.team.workitem.queries.predefined.pendingApprovals">
<where>
<condition operator="pending by">
<attribute name="internalApprovals"/>
<variable type="currentUser"/>
</condition>
</where>
</query>

<query description="All open Project Change Request workitems that are assigned to me" name="Project Change Requests open assigned to me" id="com.ibm.team.workitem.queries.predefined.myOpenCRs" type="com.ibm.team.workitem.workItemType">
    <select/>
    <where>
        <and>
            <or>
                <condition operator="is">
                    <attribute name="owner"/>
                    <variable type="currentUser"/>
                </condition>
            </or>
            <or>
                <condition operator="is">
                    <attribute name="internalState"/>
                    <value content="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s1" type="smallString"/>
                </condition>
                <condition operator="is">
                    <attribute name="internalState"/>
                    <value content="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s7" type="smallString"/>
                </condition>
                <condition operator="is">
                    <attribute name="internalState"/>
                    <value content="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s8" type="smallString"/>
                </condition>
            </or>
            <or>
                <condition operator="is">
                    <attribute name="workItemType"/>
                    <value content="projectchangerequest" type="type"/>
                </condition>
            </or>
        </and>
    </where>
</query>
</configuration-data>
        <configuration-data xmlns="http://com.ibm.team.dashboard/templates" id="com.ibm.team.dashboard.configuration.templates">
            <dashboard-template title="${scope}" type="project">
                <page title="General">
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.welcome" trim="orange"/>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.customize" trim="gold">
                            <preference id="hide-templates" value="true"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.description" title="Project Description" trim="blue"/>
                    </column>
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.teams" trim="blue"/>
                        <viewlet id="com.ibm.team.workitem.viewlet.queries" title="${scope} Queries" trim="blue">
                            <memento>
                                <property name="queryStringIds" type="xsd:string">
                                    <value>com.ibm.team.workitem.queries.predefined.recentlyCreated</value>
                                    <value>com.ibm.team.workitem.queries.predefined.recentlyModified</value>
                                    <value>com.ibm.team.workitem.queries.predefined.recentlyClosed</value>
                                    <value>com.ibm.team.workitem.queries.predefined.incoming</value>
                                </property>
                            </memento>
                        </viewlet>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.bookmarks" title="Useful Links" trim="blue">
                            <memento>
                                <property name="bookmarks" type="xsd:string">
                                    <memento>
                                        <property name="title" type="xsd:string">Tester</property>
                                        <property name="href" type="xsd:string">http://eclipse.org</property>
                                        <property name="id" type="int">1</property>
                                        <property name="category" type="xsd:string">technology</property>
                                        <property name="description" type="xsd:string">Eclipse community site</property>
                                    </memento>
                                    <memento>
                                        <property name="title" type="xsd:string">Jazz</property>
                                        <property name="href" type="xsd:string">http://jazz.net</property>
                                        <property name="id" type="int">2</property>
                                        <property name="category" type="xsd:string">technology</property>
                                        <property name="description" type="xsd:string">Jazz platform community site</property>
                                    </memento>
                                </property>
                                <property name="nextId" type="int">3</property>
                            </memento>
                        </viewlet>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.status" trim="blue"/>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.feed" title="News from Jazz" trim="blue">
                            <preference id="url" value="https://jazz.net/pub/community/news/feed.rss?externalize=true"/>
                        </viewlet>
                    </column>
                    <column>
                        <viewlet id="com.ibm.team.apt.viewlet.plans" trim="blue">
                            <preference id="defaultLine" value="development"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.workitem.viewlet.statistics" trim="blue">
                            <preference id="presentation" value="pie"/>
                            <preference id="query" value="com.ibm.team.workitem.queries.predefined.recentlyModified"/>
                            <preference id="parameter" value="com.ibm.team.workitem.attribute.category"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.workitem.viewlet.statistics" trim="blue">
                            <preference id="presentation" value="bar"/>
                            <preference id="query" value="com.ibm.team.workitem.queries.predefined.recentlyModified"/>
                            <preference id="parameter" value="com.ibm.team.workitem.attribute.priority"/>
                        </viewlet>
                    </column>
                </page>
            </dashboard-template>
            <dashboard-template title="${scope}" type="team">
                <page title="General">
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.welcome" trim="orange"/>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.customize" trim="gold">
                            <preference id="hide-templates" value="true"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.description" title="Team Description" trim="blue"/>
                    </column>
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.members" trim="blue"/>
                        <viewlet id="com.ibm.team.apt.viewlet.plans" trim="blue"/>
                        <viewlet id="com.ibm.team.build.viewlet.builds" trim="blue"/>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.feed.jazz" title="Events Log" trim="blue">
                            <preference id="items" value="10"/>
                        </viewlet>
                    </column>
                </page>
            </dashboard-template>
            <dashboard-template title="${scope}'s Dashboard" type="contributor" id="contributor">
                <page title="General">
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.welcome" title="Welcome" trim="orange"/>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.customize" trim="gray"/>
                    </column>
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.projects">
                        <preference id="showHomeMenuUA" value="true"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.feed" title="My Work Item Changes">
                            <preference id="items" value="5"/>
                            <preference id="url" value="${server-URL}/service/com.ibm.team.repository.common.internal.IFeedService?itemType=WorkItem&amp;user=${current_user}"/>
                        </viewlet>
                    </column>
                    <column>
                        <viewlet id="com.ibm.team.workitem.viewlet.statistics" title="My Work">
                            <preference id="presentation" value="h-bar"/>
                            <preference id="query" value="com.ibm.team.workitem.queries.predefined.myOpenCurrent"/>
                            <preference id="queryCategory" value="${project-item-id}"/>
                            <preference id="parameter" value="com.ibm.team.workitem.attribute.severity"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.workitem.viewlet.queryresults" title="Pending Approvals for Me">
                            <preference id="defaultQuery" value="com.ibm.team.workitem.queries.predefined.pendingApprovals"/>
                            <preference id="queryCategory" value="${project-item-id}"/>
                            <preference id="items" value="5"/>
                            <preference id="secondIcon" value="severity"/>
                        </viewlet>
                    </column>
                </page>
            </dashboard-template>
        </configuration-data>
        <configuration-data id="com.ibm.team.dashboard.configuration.entries" xmlns="http://com.ibm.team.dashboard/entries">
          <viewlet-entry 
            category="com.ibm.team.dashboard.viewlets.web.feeds"
title="News from Jazz"
            icon="https://jazz.net/favicon.ico"
            preview="com.ibm.team.dashboard.viewlets.service/graphics/feeds/images/preview-jazz-news.png"
viewlet-id="com.ibm.team.dashboard.viewlets.web.feed">
<description>
Latest news from jazz.net web site.
</description>
          </viewlet-entry>  
          <viewlet-entry 
            category="com.ibm.team.dashboard.viewlets.web.feeds"
            icon="http://eclipse.org/favicon.ico"
title="News from Eclipse"
preview = "com.ibm.team.dashboard.viewlets.service/graphics/feeds/images/preview-eclipse-news.png"
viewlet-id="com.ibm.team.dashboard.viewlets.web.feed">
<description>
Latest news from Eclipse.org web site.
</description>
        <preference id="url" value="http://www.eclipse.org/home/eclipseinthenews.rss"/>
          </viewlet-entry>            
</configuration-data>

<!-- Query Editor Layout -->
<configuration-data id="com.ibm.team.workitem.query.editor.configuration" xmlns="http://com.ibm.team.workitem.query.editor/configuration">
<query-type id="com.ibm.team.workitem.workItemType">
<presentations>
<presentation typeId="duration" kind="com.ibm.team.apt.kind.internal.duration"/>
</presentations>
</query-type>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt.configuration/processNature" id="com.ibm.team.apt.configuration.processNature">
<processNature id="com.ibm.team.planning.processNature.traditional" name="Traditional Process Nature">
<properties>
<property key="processType" value="traditional"/>
</properties>
</processNature>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt.configuration/planConfigurationElement" id="com.ibm.team.apt.configuration.planConfigurationElement">
<scheduler
id="com.ibm.team.apt.scheduler.traditionalScheduler" 
name="Traditional Scheduler"
description="Traditional Scheduler calculates the critical path and the schedule dates by resolving the dependencies and considering the constraints." 
implementation="com.ibm.team.apt.attribute.scheduler.traditional">
</scheduler>
<filter description="Exclude risk work items." id="com.ibm.team.apt.filter.excludeRisk" implementation="com.ibm.team.apt.shared.ui.internal.filter.WorkItemTypeFilter" name="Risks">
<parameters>
<parameter key="exclude-types" value="com.ibm.team.workitem.workItemType.risk"/>
</parameters>
</filter>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt.configuration/planEditorTabs" id="com.ibm.team.apt.configuration.planEditorTabs">
<staticTab 
id="com.ibm.team.tpt.allocation.web.ui.allocation" 
implementation="com.ibm.team.tpt.web.ui.allocation.internal.tab.AllocationTab" 
priority="40"
name="Resources">
<parameters>
<parameter key="uaKey" value="com.ibm.team.apt.web.ui.tab_plan_resource_web"/>
</parameters>
    </staticTab>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt/complexityAttribute" id="com.ibm.team.apt.configuration.attributes">
<attribute id="com.ibm.team.apt.attribute.planitem.constraintType" implementation="com.ibm.team.apt.client.WorkItemAttribute" name="Constraint Type" readOnly="false" type="ENUMERATION">
<parameters>
<parameter key="attribute" value="com.ibm.team.apt.attribute.constrainttype"/>
</parameters>
</attribute>
<attribute id="com.ibm.team.apt.attribute.planitem.constraintDate" implementation="com.ibm.team.apt.client.WorkItemAttribute" name="Constraint Date" readOnly="false" type="INSTANT">
<parameters>
<parameter key="attribute" value="com.ibm.team.apt.attribute.constraintdate"/>
</parameters>
</attribute>
<attribute id="com.ibm.team.apt.attribute.scheduler.traditional" implementation="com.ibm.team.apt.client.BuiltInAttribute" name="Traditional Scheduler" type="VOID" readOnly="true" internal="true"/>
</configuration-data>
            <configuration-data xmlns="http://com.ibm.team.apt/topLevelPlanWorkItemBinding" id="com.ibm.team.apt.configuration.topLevelPlanWorkItemBinding">
                <topLevelPlanWorkItemBinding workitemType="com.ibm.team.workitem.workItemType.businessneed"/>
<topLevelPlanWorkItemBinding workitemType="projectchangerequest"/>
            </configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt.configuration/snapshotTypes" id="com.ibm.team.apt.configuration.snapshotTypes">
                <snapshotType id="com.ibm.team.apt.plansnapshot.proposed" name="Proposed"/>
            </configuration-data>
            
<configuration-data xmlns="http://com.ibm.team.apt/workItemProgressMode" id="com.ibm.team.apt.configuration.workItemProgressMode">
    <backlogIteration id="development" path="/development/backlog"/>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt/workResourcesSpecification" id="com.ibm.team.apt.configuration.workResourcesSpecification">
    <workResourcesSpecification disallowAllocationBySelf="true" workDays="5" workHours="8"/>
</configuration-data>

<configuration-data xmlns="http://com.ibm.team.apt.configuration/planModes" id="com.ibm.team.apt.configuration.planmodes">
<planmode id="com.ibm.team.apt.viewmodes.internal.workBreakdown" name="Work Breakdown" progressMode="LOAD">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree" />
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk"/>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.owner"/>
<column attribute="com.ibm.team.apt.attribute.planitem.estimate" />
<column attribute="com.ibm.team.apt.attribute.planitem.constraintType"/>
<column attribute="com.ibm.team.apt.attribute.planitem.constraintDate"/>
<column attribute="com.ibm.team.apt.attribute.planitem.progress" />
<column attribute="com.ibm.team.apt.attribute.planitem.priority" />
<column attribute="com.ibm.team.apt.attribute.planitem.state" />
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.projectWorkBreakdown" name="Work Breakdown" progressMode="NONE">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree" />
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk"/>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.planitem.estimate" />
<column attribute="com.ibm.team.apt.attribute.planitem.constraintType"/>
<column attribute="com.ibm.team.apt.attribute.planitem.constraintDate"/>
<column attribute="com.ibm.team.apt.attribute.planitem.progress" />
<column attribute="com.ibm.team.apt.attribute.planitem.priority" />
<column attribute="com.ibm.team.apt.attribute.planitem.plannedFor" />
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.iterationGantt" name="Work Breakdown and Schedule" progressMode="LOAD">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree"/>
<groupmode definition="com.ibm.team.apt.groupmode.iteration"/>
<sortmode definition="com.ibm.team.apt.sortmode.plannedTime"/>
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk"/>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.planitem.estimate" />
<column attribute="com.ibm.team.apt.attribute.planitem.constraintType"/>
<column attribute="com.ibm.team.apt.attribute.planitem.constraintDate"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.schedulePredecessor" />
<column attribute="com.ibm.team.apt.attribute.planitem.id" />
<column attribute="com.ibm.team.apt.attribute.accumulatedTime" />
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute" />
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.gantt" name="Work Breakdown and Schedule" progressMode="LOAD">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree" />
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.plannedTime"/>
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.owner"/>
<column attribute="com.ibm.team.apt.attribute.planitem.estimate" />
<column attribute="com.ibm.team.apt.attribute.planitem.constraintType"/>
<column attribute="com.ibm.team.apt.attribute.planitem.constraintDate"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.schedulePredecessor" />
<column attribute="com.ibm.team.apt.attribute.planitem.id" />
<column attribute="com.ibm.team.apt.attribute.accumulatedTime" />
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute" />
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.scheduleVariance" name="Schedule Variance" progressMode="LOAD">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree"/>
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.proposedStartDate"/>
<column attribute="com.ibm.team.apt.attribute.proposedEndDate"/>
<column attribute="com.ibm.team.apt.attribute.plannedStartDate"/>
<column attribute="com.ibm.team.apt.attribute.plannedEndDate"/>
<column attribute="com.ibm.team.apt.attribute.planitem.id"/>
<column attribute="com.ibm.team.apt.attribute.accumulatedTime"/>
</columns>
<colors>
<color enabled="true" expression="variance>0.9" label="Variance &gt; 0.9d" priority="0" value="#f7941d"/>
</colors>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.milestone.traceability" name="Traceability" progressMode="NONE" optional="true">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree"/>
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.topLevelTypes"/>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="planning/source/com.ibm.team.workitem.linktype.implementsRequirement" optional="true"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.testedByTestCase" optional="true"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.cm.affectedByDefect" optional="true"/>
</columns>
<colors>
<color enabled="true" label="Failure" expression="failingTestCases:set" priority="0" value="#DB2D3C" />
</colors>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<!-- ** Ranked List ******* -->
<planmode id="com.ibm.team.apt.viewmodes.internal.formalRankedList" name="Ranked List" progressMode="NONE">
<viewmode definition="com.ibm.team.apt.internal.viewmode.backlog"/>
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.planitem.estimate" />
<column attribute="com.ibm.team.apt.attribute.planitem.priority"/>
<column attribute="com.ibm.team.apt.attribute.planitem.humanReadableRanking"/>
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.release.traceability" name="Traceability" progressMode="NONE" optional="true">
<viewmode definition="com.ibm.team.apt.internal.viewmode.backlog"/>
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.topLevelTypes"/>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="planning/source/com.ibm.team.workitem.linktype.implementsRequirement" optional="true"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.testedByTestCase" optional="true"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.cm.affectedByDefect" optional="true"/>
</columns>
<colors>
<color enabled="true" label="Failure" expression="failingTestCases:set" priority="0" value="#DB2D3C" />
</colors>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.productBacklog.ranking" name="Ranked List" progressMode="NONE">
<viewmode definition="com.ibm.team.apt.internal.viewmode.backlog"/>
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.resolved"/>
<filter definition="com.ibm.team.apt.filter.topLevelTypes"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.planitem.complexity" />
<column attribute="com.ibm.team.apt.attribute.planitem.priority"/>
<column attribute="com.ibm.team.apt.attribute.planitem.humanReadableRanking"/>
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt.configuration/planTypes" id="com.ibm.team.apt.configuration.plantypes">
<plantype id="com.ibm.team.apt.plantype.default" name="Phase Plan" icon="icons/obj16/iteration_plan.gif">
<planitems definition="com.ibm.team.apt.planitems.iterationPlan" />
<scheduler definition="com.ibm.team.apt.scheduler.traditionalScheduler"/>
<planmodes default="com.ibm.team.apt.viewmodes.internal.gantt">
<planmode definition="com.ibm.team.apt.viewmodes.internal.gantt"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.workBreakdown"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.scheduleVariance"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.formalRankedList"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.milestone.traceability" optional="true"/>
</planmodes>
<planchecks>
<plancheck definition="com.ibm.team.apt.plancheck.schedulingCheck"/>
<plancheck definition="com.ibm.team.apt.plancheck.invalidEstimateCheck"/>
<plancheck definition="com.ibm.team.apt.plancheck.requiredAttribute"/>
</planchecks>
</plantype>
<plantype id="com.ibm.team.apt.plantype.release.project" name="Release Plan" icon="icons/obj16/release_plan.gif">
<planitems definition="com.ibm.team.apt.planitems.projectReleasePlan" />
<scheduler definition="com.ibm.team.apt.scheduler.traditionalScheduler"/>
<planmodes default="com.ibm.team.apt.viewmodes.internal.iterationGantt">
<planmode definition="com.ibm.team.apt.viewmodes.internal.iterationGantt"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.projectWorkBreakdown"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.scheduleVariance"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.formalRankedList"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.release.traceability" optional="true"/>
</planmodes>
<planchecks>
<plancheck definition="com.ibm.team.apt.plancheck.requiredAttribute"/>
<plancheck definition="com.ibm.team.apt.plancheck.invalidEstimateCheck"/>
</planchecks>
</plantype>
<plantype id="com.ibm.team.apt.plantype.product.backlog" name="Product Backlog" icon="icons/obj16/backlog_plan_obj.gif" deprecated="true">
<planitems definition="com.ibm.team.apt.planitems.projectReleasePlan" />
<planmodes default="com.ibm.team.apt.viewmodes.internal.productBacklog.ranking">
<planmode definition="com.ibm.team.apt.viewmodes.internal.formalRankedList"/>
</planmodes>
</plantype>
</configuration-data>

<configuration-data xmlns="http://com.ibm.team.tpt/financial" id="com.ibm.team.tpt.configuration">
<configuration id="currency">
                <currencies>
<currency id="currency.literal.l1" name="USD" default="true"/>
</currencies>
            </configuration>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.tpt/timetracking" id="com.ibm.team.tpt.timetracking">
<timeTrackingSpecification syncTimeSpentWithTimeTracking="true"/>
<configuration id="timecode">
<timecodes>
<timecode id="timecode.literal.l1" name="Default"/>
<timecode id="timecode.literal.l2" name="Coding"/>
<timecode id="timecode.literal.l3" name="Review"/>
<timecode id="timecode.literal.l4" name="Documentation"/>
<timecode id="timecode.literal.l5" name="Testing"/>
</timecodes>
</configuration>
</configuration-data>

<configuration-data xmlns="http://com.ibm.team.workitem/workitemConfiguration" id="com.ibm.team.workitem.configuration">
    <configuration id="com.ibm.team.workitem.configuration.oslc.types">
        <typeBinding oslcTypeId="defect" workItemTypeId="defect"/>
        <typeBinding oslcTypeId="planItem" workItemTypeId="projectchangerequest"/>
        <typeBinding oslcTypeId="task" workItemTypeId="task"/>
        <typeBinding oslcTypeId="requirementChangeRequest" workItemTypeId="task"/>
    </configuration>
    <configuration id="com.ibm.team.workitem.configuration.stateGroups">
        <stateGroup id="com.ibm.team.rqm.stateGroup.readyForTesting.defect">
            <state id="s3"/>
            <resolution id="r1"/>
        </stateGroup>
        <stateGroup id="com.ibm.team.rqm.stateGroup.readyForTesting">
            <state id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s5"/>
        </stateGroup>
    </configuration>
</configuration-data>
    <configuration-data final="false" id="com.ibm.team.process.service.configurationData.teamInvitation" xmlns="http://com.ibm.team.process/teamInvitation">
    <emailSubject value="Welcome to the ${teamAreaName} Team"/>
    <emailBody value="You have been invited to join the Jazz team ${teamAreaName}.&amp;#10;&amp;#10;You can explore the related project area via the web client at ${projectAreaDashboardUrl}.&amp;#10;&amp;#10;Use File&amp;gt;Accept Team Invitation within the IBM Engineering Workflow Management client to open the Accept Team Invitation dialog.&amp;#10;Copy the invitation below and paste into the Accept Invitation text field.&amp;#10;&amp;#10;"/>
    <copySelf value="true"/>
</configuration-data>
</data>
</project-configuration>
<team-configuration>
<permissions>
<role id="default">         
    </role>
    <role id="analyst">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="create">
                <action id="any"/>
            </action>
            <action id="action">
                <action id="any"/>
            </action>
            <action id="bulk"/>
            <action id="modify">
                <action id="projectArea"/>
                <action id="summary"/>
                <action id="type"/>
                <action id="resolution"/>
                <action id="description"/>
                <action id="comments"/>
                <action id="severity"/>
                <action id="version"/>
                <action id="category"/>
                <action id="tags">
                    <action id="any"/>
                </action>
                <action id="subscriptions"/>
                <action id="duration"/>
                <action id="correctedEstimate"/>
                <action id="timeSpent"/>
                <action id="dueDate"/>
                <action id="approvals"/>
                <action id="approvalDescriptors"/>
                <action id="references">
                    <action id="any"/>
                </action>
                <action id="com.ibm.team.workitem.workItemType.risk.probability"/>
                <action id="com.ibm.team.workitem.workItemType.risk.impact"/>
<action id="com.ibm.team.workitem.workItemType.risk.exposure"/>
<action id="com.ibm.team.workitem.workItemType.risk.consequencecost"/>
<action id="com.ibm.team.workitem.workItemType.risk.probabilitycost"/>
<action id="com.ibm.team.workitem.workItemType.risk.precision"/>
<action id="com.ibm.team.workitem.workItemType.risk.occurrencedate"/>
<action id="com.ibm.team.workitem.workItemType.risk.identificationdate"/>
            </action>
        </operation>
        <operation id="com.ibm.team.reports.service.report.display">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.folder.management">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.query.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.saveQuery">
            <action id="any"/>
        </operation>
    </role>
<role id="team_lead">
<operation id="com.ibm.team.build.server.cancelPendingRequest">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildDefinition">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildDefinition">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildResult">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildResult">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.abandonBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.requestBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.buildLifecycle">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.manageBuildFolders">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.dashboard.server.saveTeamDashboard">
            <action id="any"/>
        </operation>
<operation id="com.ibm.team.apt.server.saveIterationPlan">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.deleteIterationPlan">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.saveSnapshot">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.deleteSnapshot">
            <action id="any"/>
        </operation>
<operation id="com.ibm.team.process.server.saveTeamArea">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.process.server.generateTeamInvitation">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyStream">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.deliver">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyBaseline">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyComponent">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifySnapshot">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="any"/>
            </action>
            <action id="create">
                <action id="any"/>
            </action>
            <action id="action">
                <action id="any"/>
            </action>
            <action id="bulk"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.saveQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.deleteQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.supa.server.saveSearchEngine">
<action id="any"/>
</operation>
<operation id="com.ibm.teamz.supa.server.deleteSearchEngine">
<action id="any"/>
</operation>
<operation id="com.ibm.teamz.build.service.changes.ignoreChangesForDependencyBuild">
<action id="any"/>
</operation>
<operation id="com.ibm.teamz.supa.server.saveSearchConfiguration">
    <action id="any"/>
    </operation>
<operation id="com.ibm.teamz.langdef.buildablesubset.deleteSubset">
<action id="any"/>
</operation>
<operation id="com.ibm.teamz.langdef.buildablesubset.saveBuildableSubset">
<action id="create"/>
<action id="modify"/>
</operation>
<operation id="com.ibm.team.process.server.authoring.saveProcessDescription">
<action id="any"/>
</operation>
<operation id="com.ibm.teamz.promotion.promoteWorkItems">
            <action id="previewPromoteWorkItems"/>
        </operation>
<operation id="com.ibm.team.scm.server.modifyQuery">
<action id="any"/>
</operation>
<operation id="com.ibm.team.artifactfolders.modify">
<action id="any" />
</operation>
</role>
    <role id="project_manager">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.dashboard.server.saveTeamDashboard">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.interop.server.synchronize">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.saveIterationPlan">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.deleteIterationPlan">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.saveSnapshot">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.deleteSnapshot">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.process.server.saveTeamArea">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.process.server.generateTeamInvitation">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.display">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.folder.management">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.query.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.deliver">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyStream">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyComponent">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.saveQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.deleteQuery">
            <action id="any"/>
        </operation>
<operation id="com.ibm.team.scm.server.modifyBaseline">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifySnapshot">
            <action id="any"/>
        </operation>
<operation id="com.ibm.team.process.server.authoring.saveProcessDescription">
<action id="any"/>
</operation>
    </role>
    <role id="architect">
        <operation id="com.ibm.team.interop.server.synchronize">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.display">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.folder.management">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.query.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="projectArea"/>
                <action id="summary"/>
                <action id="type"/>
                <action id="resolution"/>
                <action id="description"/>
                <action id="comments"/>
                <action id="severity"/>
                <action id="version"/>
                <action id="category"/>
                <action id="tags">
                    <action id="any"/>
                </action>
                <action id="priority"/>
                <action id="subscriptions"/>
                <action id="duration"/>
                <action id="correctedEstimate"/>
                <action id="timeSpent"/>
                <action id="dueDate"/>
<action id="com.ibm.team.apt.attribute.constrainttype"/>
<action id="com.ibm.team.apt.attribute.constraintdate"/>
                <action id="approvals"/>
                <action id="approvalDescriptors"/>
                <action id="references">
                    <action id="any"/>
                </action>
            </action>
<action id="import"/>
            <action id="create">
                <action id="any"/>
            </action>
            <action id="action">
                <action id="any"/>
            </action>
            <action id="bulk"/>
            <action id="remove"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.saveQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.deleteQuery">
            <action id="any"/>
        </operation>
    </role>
    <role id="developer">
        <operation id="com.ibm.team.interop.server.synchronize">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.display">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.folder.management">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.query.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.deliver">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyStream">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyComponent">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyChangeset">
                    <action id="any"/>
                </operation>
                <operation id="com.ibm.team.scm.server.modifyBaseline">
                    <action id="any"/>
                </operation>
                <operation id="com.ibm.team.scm.server.modifySnapshot">
                    <action id="any"/>
                </operation>
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="summary"/>
                <action id="resolution"/>
                <action id="description"/>
                <action id="comments"/>
                <action id="severity"/>
                <action id="version"/>
                <action id="category"/>
                <action id="tags">
                    <action id="any"/>
                </action>
                <action id="owner"/>
                <action id="subscriptions"/>
                <action id="duration"/>
                <action id="correctedEstimate"/>
                <action id="timeSpent"/>
                <action id="dueDate"/>
                <action id="approvals"/>
                <action id="approvalDescriptors"/>
                <action id="references">
                    <action id="any"/>
                </action>
            </action>
            <action id="create">
                <action id="type">
                    <action id="defect"/>
                    <action id="task"/>
                </action>
            </action>
            <action id="action">
                <action id="any"/>
            </action>
            <action id="bulk"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.saveQuery">
            <action id="any"/>
        </operation>
<operation id="com.ibm.teamz.langdef.buildablesubset.deleteSubset">
<action id="any"/>
</operation>
<operation id="com.ibm.teamz.langdef.buildablesubset.saveBuildableSubset">
<action id="create"/>
<action id="modify"/>
</operation>
<operation id="com.ibm.teamz.promotion.promoteWorkItems">
            <action id="previewPromoteWorkItems"/>
        </operation>
    </role>
    <role id="stakeholder">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="create">
                <action id="type">
                    <action id="defect"/>
                    <action id="task"/>
                </action>
            </action>
            <action id="modify">
            <action id="category"/>
            <action id="summary"/>
                <action id="resolution"/>
                <action id="comments"/>
                <action id="subscriptions"/>
                <action id="tags">
                    <action id="add"/>
                </action>
<action id="references">
                    <action id="attachment">
                        <action id="add"/>
                    </action>
                </action>
<action id="approvals"/>
<action id="type"/>
<action id="severity"/>
<action id="description"/>
<action id="version"/>
            </action>
        </operation>
    </role>
    <role id="tester"> 
    <operation id="com.ibm.team.build.server.abandonBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.requestBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.buildLifecycle">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.interop.server.synchronize">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.display">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.folder.management">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.query.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.saveQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="summary"/>
                <action id="resolution"/>
                <action id="description"/>
                <action id="comments"/>
                <action id="severity"/>
                <action id="version"/>
                <action id="category"/>
                <action id="tags">
                    <action id="any"/>
                </action>
                <action id="owner"/>
                <action id="subscriptions"/>
                <action id="duration"/>
                <action id="correctedEstimate"/>
                <action id="timeSpent"/>
                <action id="approvals"/>
                <action id="approvalDescriptors"/>
                <action id="references">
                    <action id="any"/>
                </action>
                <action id="dueDate"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="defect"/>
                    <action id="task"/>
                </action>
            </action>
            <action id="action">
                <action id="any"/>
            </action>
            <action id="bulk"/>
        </operation>
    </role>
<role id="release_engineer">
<operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="create">
                    <action id="defect"/>
                    <action id="task"/>
            </action>
            <action id="action">
                <action id="any"/>
            </action>
            <action id="bulk"/>
            <action id="modify">
                <action id="projectArea"/>
                <action id="summary"/>
                <action id="type"/>
                <action id="resolution"/>
                <action id="description"/>
                <action id="comments"/>
                <action id="severity"/>
                <action id="version"/>
                <action id="category"/>
                <action id="tags">
                    <action id="any"/>
                </action>
                <action id="subscriptions"/>
                <action id="duration"/>
                <action id="correctedEstimate"/>
                <action id="timeSpent"/>
                <action id="dueDate"/>
                <action id="approvals"/>
                <action id="approvalDescriptors"/>
                <action id="references">
                    <action id="any"/>
                </action>
            </action>
</operation>
    <operation id="com.ibm.team.build.server.cancelPendingRequest">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildDefinition">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildDefinition">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildResult">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildResult">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.abandonBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.requestBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.buildLifecycle">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.manageBuildFolders">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.supa.server.saveSearchEngine">
<action id="any"/>
</operation>
<operation id="com.ibm.teamz.supa.server.deleteSearchEngine">
<action id="any"/>
</operation>
<operation id="com.ibm.teamz.build.service.changes.ignoreChangesForDependencyBuild">
<action id="any"/>
</operation>
<operation id="com.ibm.teamz.supa.server.saveSearchConfiguration">
    <action id="any"/>
    </operation>
<operation id="com.ibm.teamz.langdef.buildablesubset.deleteSubset">
<action id="any"/>
</operation>
<operation id="com.ibm.teamz.langdef.buildablesubset.saveBuildableSubset">
<action id="create"/>
<action id="modify"/>
</operation>
<operation id="com.ibm.teamz.promotion.promoteWorkItems">
            <action id="previewPromoteWorkItems"/>
        </operation>
</role>
</permissions>
<behavior>
<role id="default">
<operation id="com.ibm.team.workitem.operation.workItemSave">
<preconditions>
<precondition id="com.ibm.team.workitem.advisor.requiredProperties" xmlns="http://com.ibm.team.workitem/requiredProperties"
name="Required Attributes For Type and State" description="Defect, Task, Risk and Risk Action work items must be Filed Against a specific category and a Summary must be provided so that the team can quickly evaluate who is responsible for the issue. Business Need, Issue and Project Change Request work items require only a Summary.">
<properties workItemTypeCategory="com.ibm.team.workitem.workItemType">
<property id="summary"/>
<property id="category"/>
</properties>
                    <properties workItemTypeCategory="com.ibm.team.workitem.workItemType.risk">
                        <property id="com.ibm.team.workitem.attribute.summary"/>
                        <property id="com.ibm.team.workitem.attribute.category"/>
                    </properties>
<properties workItemTypeCategory="com.ibm.team.workitem.workItemType.projectchangerequest">
                        <property id="com.ibm.team.workitem.attribute.summary"/>
                    </properties>
<properties workItemTypeCategory="com.ibm.team.workitem.workItemType.issue">
                        <property id="com.ibm.team.workitem.attribute.summary"/>
                    </properties>
<properties workItemTypeCategory="com.ibm.team.workitem.workItemType.planning">
                        <property id="com.ibm.team.workitem.attribute.summary"/>
                    </properties>
                    <properties workItemTypeCategory="com.ibm.team.workitem.workItemType.riskaction">
                        <property id="com.ibm.team.workitem.attribute.summary"/>
                        <property id="com.ibm.team.workitem.attribute.category"/>
                    </properties>
</precondition>
<precondition id="com.ibm.team.apt.advisor.requiredConstraintDate" name="Required Constraint Date"
description="Constraint Date is a required field if the Constraint Type is 'Finish No Later Than' or 'Start No Earlier Than'"/>
<precondition id="com.ibm.team.tpt.advisor.checkOwnerTimeTracking" name="Time tracking Owner Check" 
description="Time tracking entries can be added only by the owner of the Work Item " />
</preconditions>
</operation>
<operation id="com.ibm.team.scm.client.deliver">
<preconditions>
<precondition id="com.ibm.team.process.deliver.prohibitCompilationErrors" xmlns="http://com.ibm.team.process/prohibitCompilationErrors"
                             name="Prohibit Workspace Errors"
                             description="Require that there are no errors in affected projects when a change set is delivered."
                             overrulable="true"/>
<precondition id="com.ibm.team.process.deliver.requireWorkItem" xmlns="http://com.ibm.team.process/requireWorkItem"
name="Require Work Items and Comments"
overrulable="true"
description="All change sets should be associated with a work item which is planned for the current iteration.&#10;&#10;This makes it easier for the team to track its progress through the iteration and allows other users to understand why your changes were made.">
<requires value="workitem-or-comment">
</requires>
</precondition>
</preconditions>
</operation>
</role>
</behavior>
<iteration-type id="requirement">
<behavior>
                <role id="default">
                    <operation id="com.ibm.team.scm.client.deliver">
<preconditions>
<precondition id="com.ibm.team.process.deliver.prohibitCompilationErrors" xmlns="http://com.ibm.team.process/prohibitCompilationErrors"
                             name="Prohibit Workspace Errors"
                             description="Require that there are no errors in affected projects when a change set is delivered."
                             overrulable="true"/>
                             <precondition id="com.ibm.team.process.deliver.requireWorkItem" xmlns="http://com.ibm.team.process/requireWorkItem"
                             name="Descriptive Change Sets"
                             description="All change sets should be associated with a work item which is planned for the current iteration.&#10;&#10;This makes it easier for the team to track its progress through the iteration and allows other users to understand why your changes were made."
                             overrulable="true">
                                <requires value="workitem-or-comment">
                                    <workitem owner="optional" target="optional"/>
                                </requires>
                             </precondition>
</preconditions>
</operation>
                </role>
            </behavior>
</iteration-type>
<iteration-type id="design">
            <behavior>
                <role id="default">
                    <operation id="com.ibm.team.scm.client.deliver">
                        <preconditions>
                            <precondition id="com.ibm.team.process.deliver.prohibitCompilationErrors" xmlns="http://com.ibm.team.process/prohibitCompilationErrors"
                             name="Prohibit Workspace Errors"
                             description="Require that there are no errors in affected projects when a change set is delivered."
                             overrulable="true"/>
                            <precondition id="com.ibm.team.process.deliver.prohibitUnusedImports" xmlns="http://com.ibm.team.process/prohibitUnusedImports"
                             name="Prohibit Unused Java Imports"
                             description="Require that there are no unused imports in Java files when a change set is delivered. Note that the Eclipse Java compiler must be configured to create errors or warnings for unused imports for this to function."
                             overrulable="true">
                            </precondition>
                            <precondition id="com.ibm.team.process.deliver.requireWorkItem" xmlns="http://com.ibm.team.process/requireWorkItem"
                             name="Descriptive Change Sets"
                             description="All change sets should be associated with a work item which is planned for the current iteration.&#10;&#10;This makes it easier for the team to track its progress through the iteration and allows other users to understand why your changes were made."
                             overrulable="true">
                                <requires value="workitem-or-comment">
                                    <workitem owner="optional" target="optional"/>
                                </requires>
                            </precondition>
                        </preconditions>
                    </operation>
                </role>
            </behavior>
</iteration-type>
<iteration-type id="implementation">
            <behavior>
                <role id="default">
                    <operation id="com.ibm.team.scm.client.deliver">
                        <preconditions>
                            <precondition id="com.ibm.team.process.deliver.prohibitCompilationErrors" xmlns="http://com.ibm.team.process/prohibitCompilationErrors"
                             name="Prohibit Workspace Errors"
                             description="Require that there are no errors in affected projects when a change set is delivered."
                             overrulable="true"/>
                            <precondition id="com.ibm.team.process.deliver.prohibitUnusedImports" xmlns="http://com.ibm.team.process/prohibitUnusedImports"
                             name="Prohibit Unused Java Imports"
                             description="Require that there are no unused imports in Java files when a change set is delivered. Note that the Eclipse Java compiler must be configured to create errors or warnings for unused imports for this to function."
                             overrulable="true">
                            </precondition>
                            <precondition id="com.ibm.team.process.deliver.requireWorkItem" xmlns="http://com.ibm.team.process/requireWorkItem"
                             name="Descriptive Change Sets"
                             description="All change sets should be associated with a work item which is planned for the current iteration.&#10;&#10;This makes it easier for the team to track its progress through the iteration and allows other users to understand why your changes were made."
                             overrulable="true">
                                <requires value="workitem-or-comment">
                                    <workitem owner="required" target="optional"/>
                                </requires>
                            </precondition>
                            <precondition id="com.ibm.team.process.deliver.requireWorkItemApproval" xmlns="http://com.ibm.team.process/requireWorkItemApproval"
                             name="Peer Review"
                             description="Significant changes should be peer-reviewed before being shared with the team.&#10;&#10;The workitem associated with your change set requires a &quot;Review&quot; that is approved by a team member with the Developer role."
                             overrulable="true">
                                <requires>
                                    <approval type="Review">
                                        <approvers number-of-approvers="1" role="developer"/>
                                    </approval>
                                </requires>
                            </precondition>
                        </preconditions>
                    </operation>
                </role>
            </behavior>
</iteration-type>
<iteration-type id="testing">
            <behavior>
                <role id="default">
                    <operation id="com.ibm.team.scm.client.deliver">
                        <preconditions>
                            <precondition id="com.ibm.team.process.deliver.prohibitCompilationErrors" xmlns="http://com.ibm.team.process/prohibitCompilationErrors"
                             name="Prohibit Workspace Errors"
                             description="Require that there are no errors in affected projects when a change set is delivered."
                             overrulable="true"/>
                            <precondition id="com.ibm.team.process.deliver.prohibitUnusedImports" xmlns="http://com.ibm.team.process/prohibitUnusedImports"
                             name="Prohibit Unused Java Imports"
                             description="Require that there are no unused imports in Java files when a change set is delivered. Note that the Eclipse Java compiler must be configured to create errors or warnings for unused imports for this to function."
                             overrulable="true">
                            </precondition>
                            <precondition id="com.ibm.team.process.deliver.requireWorkItem" xmlns="http://com.ibm.team.process/requireWorkItem"
                             name="Descriptive Change Sets"
                             description="All change sets should be associated with a work item which is planned for the current iteration.&#10;&#10;This makes it easier for the team to track its progress through the iteration and allows other users to understand why your changes were made."
                             overrulable="true">
                                <requires value="workitem-or-comment">
                                    <workitem owner="required" target="optional"/>
                                </requires>
                            </precondition>
                            <precondition id="com.ibm.team.process.deliver.requireWorkItemApproval" xmlns="http://com.ibm.team.process/requireWorkItemApproval"
                             name="Required Approvals"
                             description="During Transition, all changes must be approved before being shared with the team.&#10;&#10;The workitem associated with your change set requires one &quot;Approval&quot; that is approved by an Architect and one that is approved by a Project Manager."
                             overrulable="true">
                                <requires>
                                    <approval type="Approval">
                                        <approvers number-of-approvers="1" role="architect"/>
                                        <approvers number-of-approvers="1" role="project_manager"/>
                                    </approval>
                                </requires>
                            </precondition>
                        </preconditions>
                    </operation>
                </role>
            </behavior>
</iteration-type>
</team-configuration>
</process-specification>


permanent link
Ralph Schoon (63.1k33646) | answered Oct 04 '21, 2:28 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER

 Please stop spamming unexplained code or process XML here. As a moderator I have to ban enough stuff here. Thank you.


permanent link
Krunal Gaoli (67869) | answered Oct 30 '21, 3:11 a.m.

 updated on 29oct: 


<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2010, 2019 IBM Corporation.  All rights reserved.
This file is part of a process template created for use with the Jazz Process Framework.
Your use of the process template (and hence this file) is subject to the following terms and conditions found in the process attachment named process_template_license.html.
-->

<process-specification xmlns="http://com.ibm.team.process">
<role-definitions>
<role-definition cardinality="many" description="The person in this role represents customer and end-user concerns by gathering input from stakeholders to understand the problem to be solved and by capturing and setting priorities for requirements." name="Analyst" role-id="analyst"/>
<role-definition cardinality="single" description="This role is responsible for defining the software architecture, which includes making the key technical decisions that constrain the overall design and implementation of the project." name="Architect" role-id="architect"/>
<role-definition cardinality="many" description="This role is responsible for developing a part of the system, including designing it to fit into the architecture, possibly prototyping the user-interface, and then implementing, unit-testing, and integrating the components that are part of the solution." name="Developer" role-id="developer"/>
<role-definition cardinality="single" description="This role leads the planning of the project, coordinates interactions with the stakeholders, and keeps the project team focused on meeting the project objectives." name="Project Manager" role-id="project_manager"/>
<role-definition cardinality="many" description="This role technically leads a component and is responsible for planning and architectural integrity of the component." name="Team Lead" role-id="team_lead"/>
<role-definition cardinality="many" description="This role represents interest groups whose needs must be satisfied by the project. It is a role that may be played by anyone who is (or potentially will be) materially affected by the outcome of the project." name="Stakeholder" role-id="stakeholder"/>
<role-definition cardinality="many" description="This role is responsible for the core activities of the test effort. Those activities include identifying, defining, implementing, and conducting the necessary tests, as well as logging the outcomes of the testing and analyzing the results." name="Tester" role-id="tester"/>
<role-definition cardinality="many" description="This role is responsible for software builds and releases. Responsible for the design and development of builds, scripts, installation procedures, and systems including source code control and issue tracking." name="Release Engineer" role-id="release_engineer"/>
<role-definition cardinality="many" name="Change Co-ordinator" role-id="Change Co-ordinator"/>
<role-definition cardinality="many" name="Change Manager" role-id="Change Manager"/>
<role-definition cardinality="many" name="" role-id="IBM Management Approval 1"/>
<role-definition cardinality="many" name="" role-id="IBM Management Approval 2"/>
<role-definition cardinality="many" name="" role-id="CM (SYS) / AGM(Sys) Approval"/>
<role-definition cardinality="many" name="" role-id="Governance team approval"/>
<role-definition cardinality="many" name="" role-id="CM / AGM (DWH) Approval"/>
<role-definition cardinality="many" name="" role-id="DGM Approval (In case of Major CAB)"/>
<role-definition cardinality="many" name="" role-id="Version Control"/>
<role-definition cardinality="many" name="" role-id="Production Deployment"/>
<role-definition cardinality="many" name="" role-id="Database Entry"/>
<role-definition cardinality="many" name="" role-id="Scheduling of ETL Job"/>
<role-definition cardinality="many" name="" role-id="AGM sys/CM sys"/>
<role-definition cardinality="many" name="" role-id="CR document verification"/>
</role-definitions>
<project-configuration>
<initialization>
    <server-initialization>
        <followup-actions>
            <followup-action xmlns="http://com.ibm.team.process/setUpProject" description="Initializes a project area with the pieces necessary to start work on a project." id="com.ibm.team.process.server.setUpProject" name="Setup Project" optional="true">
                <stream description="Main collaboration stream for ${project-area-name}" name="${project-area-name} Stream">
                    <component name="${project-area-name} Default Component"/>
                </stream>
                <workspace description="Initial repository workspace for the creator of ${stream-name}" name="${stream-name} Workspace"/>
<workitems>
<category htmlDescription="Category to organize your work items." path="Category 1"/>
                    <category htmlDescription="Category to organize your work items." path="Category 2"/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define Phase Plan"
htmlDescription="Create a plan for the initial Phase&lt;br/&gt;&lt;br/&gt;To define a Phase Plan for your team area:&lt;br/&gt;&lt;br/&gt;1. Open the &lt;b&gt;Team Artifacts&lt;/b&gt; view and expand the node corresponding to your connected project area.&lt;br/&gt;&lt;br/&gt;2. Right-click the &lt;b&gt;Plans&lt;/b&gt; node, select &lt;b&gt;New-&amp;gt;Plan...&lt;/b&gt;, select &lt;b&gt;Phase Plan&lt;/b&gt; as Plan Type and complete the wizard.&lt;br/&gt;&lt;br/&gt;For additional details on defining plans using the &lt;b&gt;New Plan&lt;/b&gt; wizard, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.apt.doc/topics/t_getting_started.html&quot;&gt;Getting Started with Planning&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define the initial Product Backlog"
htmlDescription="Create a plan for the Product Backlog&lt;br/&gt;&lt;br/&gt;To define a Product Backlog for your team area:&lt;br/&gt;&lt;br/&gt;1. Open the &lt;b&gt;Team Artifacts&lt;/b&gt; view and expand the node corresponding to your connected project area.&lt;br/&gt;&lt;br/&gt;2. Right-click the &lt;b&gt;Plans&lt;/b&gt; node, select &lt;b&gt;New-&amp;gt;Plan...&lt;/b&gt;, select &lt;b&gt;Product Backlog&lt;/b&gt; as Plan Type and complete the wizard.&lt;br/&gt;&lt;br/&gt;For additional details on defining plans using the &lt;b&gt;New Plan&lt;/b&gt; wizard, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.apt.doc/topics/t_getting_started.html&quot;&gt;Getting Started with Planning&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define a new build"
htmlDescription="Define a new build&lt;br/&gt;&lt;br/&gt;To define a new build for your team area:&lt;br/&gt;&lt;br/&gt;1. Open the &lt;b&gt;Team Artifacts&lt;/b&gt; view and expand the node corresponding to your connected project area.&lt;br/&gt;&lt;br/&gt;2. Right-click the &lt;b&gt;Builds&lt;/b&gt; node and select &lt;b&gt;New Build Definition&lt;/b&gt; and follow the prompts in the wizard.&lt;br/&gt;&lt;br/&gt;For additional details on defining build definitions using the &lt;b&gt;Build Definition&lt;/b&gt; wizard, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.build.doc/topics/t_getting_started_build.html&quot;&gt;Getting Started with setting up Jazz Builds&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Share code with Jazz Source Control"
htmlDescription="Share code with Jazz Source Control&lt;br/&gt;&lt;br/&gt;To share code in your Eclipse workspace with the Jazz stream created during process initialization:&lt;br/&gt;&lt;br/&gt;1. Select a project you wish to share, right-click and select &lt;b&gt;Team-&amp;gt;Share Project...&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;2. In the &lt;b&gt;Share Project&lt;/b&gt; Wizard, select &lt;b&gt;Jazz Source Control&lt;/b&gt; and select &lt;b&gt;Next&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;3. If you have more than one repository connection, you will be prompted to choose one. On the &lt;b&gt;Jazz Repository&lt;/b&gt; page, select the repository in which you created your project area and select &lt;b&gt;Next&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;4. On the &lt;b&gt;Select Component&lt;/b&gt; page, you should see a repository workspace prefixed with the name of the project area you created.&lt;br/&gt;&lt;br/&gt;Expand this repository workspace and you will see a component. Select this component and select &lt;b&gt;Next&lt;/b&gt;. Review the ignored resources on the next page and then select &lt;b&gt;Finish&lt;/b&gt; to share your code with the specified component and repository workspace.&lt;br/&gt;&lt;br/&gt;5. Now that the code has been shared to your repository workspace, you need to deliver it from your workspace to the stream created during initialization of the process. To do this, open the &lt;b&gt;Pending Changes&lt;/b&gt; view.&lt;br/&gt;&lt;br/&gt;6. In the &lt;b&gt;Pending Changes&lt;/b&gt; view, you should see one outgoing change from your repository workspace. Right-click on the repository workspace and select &lt;b&gt;Deliver&lt;/b&gt; to deliver your code to the stream associated with your team area.&lt;br/&gt;&lt;br/&gt;For additional details on using Jazz Source Control, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.scm.doc/topics/c_intro.html&quot;&gt;Getting Started with Jazz Source Control&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define phases"
htmlDescription="Define phases&lt;br/&gt;&lt;br/&gt;When the project area was initialized, an initial timeline &amp;quot;Main Development&amp;quot; was created. Within the timeline a hierarchy of iterations(phases) has been created for you.&lt;br/&gt;&lt;br/&gt;To edit, delete, duplicate or add additional timelines and iterations(phases):&lt;br/&gt;&lt;br/&gt;1. Open the &lt;b&gt;Project Area Editor&lt;/b&gt; by right-clicking on the project area in the &lt;b&gt;Team Artifacts&lt;/b&gt; or &lt;b&gt;Team Organization&lt;/b&gt; view and selecting &lt;b&gt;Open&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;2. Go to the &lt;b&gt;Timelines&lt;/b&gt; section in the editor. To create a new iteration(phase), use either the &lt;b&gt;Create Iteration...&lt;/b&gt; action or the &lt;b&gt;Duplicate...&lt;/b&gt; action on an existing iteration(phase).&lt;br/&gt;&lt;br/&gt;3. To define the start and end dates for an existing phase(iteration), use the &lt;b&gt;Edit Properties...&lt;/b&gt; action on an existing phase(iteration).&lt;br/&gt;&lt;br/&gt;For additional details on using Jazz Team Process, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.concert.doc/topics/t_getting-started.html&quot;&gt;Getting Started with Projects, Teams, and Process&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define categories and releases for work items"
htmlDescription="Define categories and releases for work items. These values will then be available in the work item &lt;b&gt;Filed Against&lt;/b&gt; and &lt;b&gt;Found In&lt;/b&gt; fields.&lt;br/&gt;&lt;br/&gt;To define the work item categories for the project area:&lt;br/&gt;&lt;br/&gt;1. Open the &lt;b&gt;Project Area Editor&lt;/b&gt; by right-clicking on the project area in the &lt;b&gt;Team Artifacts&lt;/b&gt; or &lt;b&gt;Team Organization&lt;/b&gt; view and selecting &lt;b&gt;Open&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;2. Go to the &lt;b&gt;Work Item Categories&lt;/b&gt; tab. &lt;br/&gt;&lt;br/&gt;3. Define categories for work items as well as associate categories with the team areas responsible for the category.&lt;br/&gt;&lt;br/&gt;To define the releases to file work items against:&lt;br/&gt;&lt;br/&gt;1. Go to the &lt;b&gt;Releases&lt;/b&gt; tab of the &lt;b&gt;Project Area Editor&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;2. Add some releases to file work items against.&lt;br/&gt;&lt;br/&gt;For additional details on using Jazz Work Items, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.workitem.doc/topics/t_getting_started.html&quot;&gt;Getting Started with Work Items&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define team members"
htmlDescription="Define the team members for the project area as well as the team area&lt;br/&gt;&lt;br/&gt;To define team members for a team area or project area:&lt;br/&gt;&lt;br/&gt;1. Open the team area or project area editor by right-clicking on the project or team area in the &lt;b&gt;Team Artifacts&lt;/b&gt; or &lt;b&gt;Team Organization&lt;/b&gt; view and selecting &lt;b&gt;Open&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;2. On the &lt;b&gt;Overview&lt;/b&gt; page of the editor, there is a &lt;b&gt;Members&lt;/b&gt; section. To add a user to the team select the &lt;b&gt;Add&lt;/b&gt; button. To create a new user and add them as a member of the team, select the &lt;b&gt;Create&lt;/b&gt; button&lt;br/&gt;&lt;br/&gt;3. If you clicked &lt;b&gt;Add&lt;/b&gt;, in the &lt;b&gt;Add Team Members&lt;/b&gt; dialog, select the user(s) you wish to add to your team or project area. If you clicked &lt;b&gt;Create&lt;/b&gt;, define the new team member in the &lt;b&gt;Create User&lt;/b&gt; wizard.&lt;br/&gt;&lt;br/&gt;4. Consider what roles individuals working on your project will assume and what role-specific process should apply to each role. In addition, you will want to consider what permissions to grant to individuals in these roles. For additional details on using Jazz Team Process, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.team.concert.doc/topics/t_getting-started.html&quot;&gt;Getting Started with Projects, Teams, and Process&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;5. On &lt;b&gt;Save&lt;/b&gt; of the editor you will be prompted to send invitations to the newly added team members. This allows you to configure an email invitation that is sent to the new team member. The new team member can accept the invitation with &lt;b&gt;File-&amp;gt;Accept Team Invitation...&lt;/b&gt;. The invitation will quickly setup their Eclipse workspace to work with the team. At any time you can invite team members to join the team by selecting the team member in the &lt;b&gt;Members&lt;/b&gt; section, right click and select &lt;b&gt;Invite to Join Team...&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
<workitem
type="task"
categoryPath="Category 1"
summary="Define permissions"
htmlDescription="Review and adjust the permissions to be used for the project&lt;br/&gt;&lt;br/&gt;To review and adjust the permissions:&lt;br/&gt;&lt;br/&gt;1. Open the project area editor by right-clicking on the project or team area in the &lt;b&gt;Team Artifacts&lt;/b&gt; or &lt;b&gt;Team Organization&lt;/b&gt; view and selecting &lt;b&gt;Open&lt;/b&gt;.&lt;br/&gt;&lt;br/&gt;2. Go to the &lt;b&gt;Process Configuration&lt;/b&gt; tab.&lt;br/&gt;&lt;br/&gt;3. Select the &lt;b&gt;Permissions&lt;/b&gt; node under &lt;b&gt;Project Configuration&lt;/b&gt;, review and adjust the project level permissions.&lt;br/&gt;&lt;br/&gt;4. Select the &lt;b&gt;Permissions&lt;/b&gt; node under &lt;b&gt;Team Configuration&lt;/b&gt;, review and adjust the team level permissions.&lt;br/&gt;&lt;br/&gt;For additional details on defining permissions, consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.jazz.platform.doc/topics/c_permissions.html&quot;&gt;Permissions&lt;/a&gt; help topic.&lt;br/&gt;&lt;br/&gt;See any terms you don't recognize? You may also wish to consult the &lt;a href=&quot;http://www.ibm.com/support/knowledgecenter/SSCP65_6.0.1/com.ibm.help.common.jazz.calm.doc/topics/glossary.html&quot;&gt;Glossary for the IBM Engineering Lifecycle Management solution&lt;/a&gt;."/>
                </workitems>
            </followup-action>
            <followup-action xmlns="http://com.ibm.team.apt/setUpProject" description="Initializes a project area with the planning relevant data." id="com.ibm.team.apt.service.setUpProject" name="Setup Project for Planning" optional="true">
            <plans>
            <plan name="Release Plan" typeId="com.ibm.team.apt.plantype.release.project" iterationPath="/development/release"/>
            <plan name="Phase Plan" typeId="com.ibm.team.apt.plantype.default" iterationPath="/development/release/requirement"/>
            <plan name="Phase Plan" typeId="com.ibm.team.apt.plantype.default" iterationPath="/development/release/design"/>
            <plan name="Phase Plan" typeId="com.ibm.team.apt.plantype.default" iterationPath="/development/release/implementation"/>
            <plan name="Phase Plan" typeId="com.ibm.team.apt.plantype.default" iterationPath="/development/release/testing"/>
            </plans>
            </followup-action>
            <followup-action xmlns="http://com.ibm.team.reports/setUpProject" description="Deploys some pre-defined reports to the project area." id="com.ibm.team.reports.service.setUpProject" name="Setup Project for Reports" optional="true">
                <reports>                 
                    <report description="Actual as Percentage of Estimated Work" file="Actual as Percentage of Estimated Work.rptdesign" folder="Work Items" id="workitems.ActualAsPercentageOfEstimatedWork" isDefault="false" name="Actual as Percentage of Estimated Work" noCaching="true" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Blocking Work Items" file="Blocking Work Items.rptdesign" folder="Work Items" id="workitems.BlockingWorkItems" isDefault="false" name="Blocking Work Items" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Build Health" file="Build Health.rptdesign" folder="Build" id="build.BuildHealth" isDefault="false" name="Build Health" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Build Results" file="Build Results.rptdesign" folder="" id="build.BuildResults" isDefault="false" name="Build Results" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Burndown" file="Burndown.rptdesign" folder="Work Items" id="workitems.Burndown" isDefault="true" name="Burndown" noCaching="true" plugin="com.ibm.team.examples.reports.common" aptChart="true" />
                    <report description="Burnup" file="Burnup.rptdesign" folder="Work Items" id="workitems.Burnup" isDefault="false" name="Burnup" noCaching="true" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Release Burndown" file="Release Burndown.rptdesign" folder="Work Items" id="workitems.ReleaseBurndown" isDefault="false" name="Release Burndown" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Closed Work Items Daily" file="Closed Work Items Daily.rptdesign" folder="Work Items" id="workitems.ClosedWorkItemsDaily" isDefault="false" name="Closed Work Items Daily" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Code Health" file="Code Health.rptdesign" folder="Build" id="build.CodeHealth" isDefault="false" name="Code Health" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Defect Backlog" file="Defect Backlog.rptdesign" folder="Work Items" id="workitems.DefectBacklog" isDefault="false" name="Defect Backlog" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Defect Discovery Rate" file="Defect Discovery Rate.rptdesign" folder="Work Items" id="workitems.DefectDiscoveryRate" isDefault="false" name="Defect Discovery Rate" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Deferred Work Items" file="Deferred Work Items.rptdesign" folder="Work Items" id="workitems.DeferredWorkItems" isDefault="false" name="Deferred Work Items" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Estimate Changes" file="Estimate Changes.rptdesign" folder="Work Items" id="workitems.EstimateChanges" isDefault="false" name="Estimate Changes" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Frequent Test Failures" file="Frequent Test Failures.rptdesign" folder="Build" id="build.FrequentTestFailures" isDefault="false" name="Frequent Test Failures" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Frequent Test Regressions" file="Frequent Test Regressions.rptdesign" folder="Build" id="build.FrequentTestRegressions" isDefault="false" name="Frequent Test Regressions" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="New Work Items by Severity" file="New Work Items by Severity.rptdesign" folder="Work Items" id="workitems.NewWorkItemsBySeverity" isDefault="false" name="New Work Items by Severity" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Open vs Closed Work Items" file="Open vs Closed Work Items.rptdesign" folder="Work Items" id="workitems.OpenVsClosedWorkItems" isDefault="false" name="Open vs Closed Work Items" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Open Work Items by Type" file="Open Work Items by Type.rptdesign" folder="Work Items" id="workitems.OpenWorkItemsByType" isDefault="false" name="Open Work Items by Type" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Project Activity" file="Project Activity.rptdesign" folder="Source Control" id="scm.ProjectActivity" isDefault="false" name="Project Activity" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Team Velocity" file="Team Velocity.rptdesign" folder="Work Items" id="workitems.TeamVelocity" isDefault="false" name="Team Velocity" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Work Item Comparison" file="Work Item Comparison.rptdesign" folder="Work Items" id="workitems.WorkItemComparison" isDefault="false" name="Work Item Comparison" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Work Items by Owner" file="live/Work Items by Owner.rptdesign" folder="Work Items" id="workitems.WorkItemsByOwner" isDefault="false" name="Work Items by Owner" noCaching="true" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Work Items by Priority" file="Work Items by Priority.rptdesign" folder="Work Items" id="workitems.WorkItemsByPriority" isDefault="false" name="Work Items by Priority" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Work Items by Team Area" file="live/Work Items by Team Area.rptdesign" folder="Work Items" id="workitems.WorkItemsByTeamArea" isDefault="false" name="Work Items by Team Area" noCaching="true" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Defect Backlog by Project Area" file="cross-project/Defect Backlog by Project Area.rptdesign" folder="Work Items" id="workitems.DefectBacklogByProjectArea" isDefault="false" name="Defect Backlog by Project Area" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Work Item Comparison by Project Area" file="cross-project/Work Item Comparison by Project Area.rptdesign" folder="Work Items" id="workitems.WorkItemComparisonByProjectArea" isDefault="false" name="Work Item Comparison by Project Area" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
<report description="Micro Release Burndown" file="micro/Micro Release Burndown.rptdesign" folder="" id="workitems.MicroReleaseBurndown" isDefault="false" name="Micro Release Burndown" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Micro Burndown" file="micro/Micro Burndown.rptdesign" folder="" id="workitems.MicroBurndown" isDefault="false" name="Micro Burndown" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    <report description="Micro Team Velocity" file="micro/Micro Team Velocity.rptdesign" folder="" id="workitems.MicroTeamVelocity" isDefault="false" name="Micro Team Velocity" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
<report description="Micro Estimated vs Actual Work" file="micro/Micro Estimated vs Actual Work.rptdesign" folder="" id="workitems.MicroEstimatedVsActualWork" isDefault="false" name="Micro Estimated vs Actual Work" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
<report description="Micro Cumulative Value Flow" file="micro/Micro Cumulative Value Flow.rptdesign" folder="" id="workitems.MicroCumulativeValueFlow" isDefault="false" name="Micro Cumulative Value Flow" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
<report description="Cumulative Value Flow" file="Cumulative Value Flow.rptdesign" folder="Work Items" id="workitems.CumulativeValueFlow" isDefault="false" name="Cumulative Value Flow" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
<report description="Risks by Exposure" file="Risks by Exposure.rptdesign" folder="Work Items" id="workitems.RisksByExposure" isDefault="false" name="Risks by Exposure" noCaching="false" plugin="com.ibm.team.examples.reports.common"/>
                    </reports>
            </followup-action>
        </followup-actions>
    </server-initialization>
<client-initialization>
        <followup-actions>
            <followup-action description="Runs a query which displays any assigned work items." id="com.ibm.team.process.client.runAssignedWorkitemsQuery" name="Show Initial Work Items"/>
        </followup-actions>
    </client-initialization>
</initialization>
<permissions>
    <role id="default">
        <project-operation id="com.ibm.team.dashboard.server.savePersonalDashboard">
            <action id="any"/>
        </project-operation>
    </role>
    <role id="project_manager">
        <project-operation id="com.ibm.team.dashboard.server.saveProjectDashboard">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.process.server.saveProjectArea">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.interop.server.saveSyncRule">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.interop.server.deleteSyncRule">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.workitem.server.saveCategory">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.workitem.server.saveDeliverable">
            <action id="any"/>
        </project-operation>
    </role>
    <role id="release_engineer">
        <project-operation id="com.ibm.teamz.dep.query.server.saveQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.deleteQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.saveSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.resetSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.SaveScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.DeleteScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.promotion.promoteMetadata">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.deleteDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.saveDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.updateSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.deleteSearchPath">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.saveSearchPath">
            <action id="any"/>
        </project-operation>
    </role>
    <role id="team_lead">
        <project-operation id="com.ibm.teamz.dep.query.server.saveQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.deleteQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.saveSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.resetSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.SaveScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.DeleteScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.promotion.promoteMetadata">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.deleteDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.saveDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.updateSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.deleteSearchPath">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.saveSearchPath">
            <action id="any"/>
        </project-operation>
    </role>
    <role id="developer">
        <project-operation id="com.ibm.teamz.dep.query.server.saveQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.deleteQuery">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.saveSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.resetSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.SaveScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.source.code.data.DeleteScanConfigurationOperation">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.promotion.promoteMetadata">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveLanguageDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.deleteTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.langdef.server.saveTranslator">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.deleteDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dsdef.server.saveDataSetDefinition">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.teamz.dep.query.server.updateSourceCodeData">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.deleteSearchPath">
            <action id="any"/>
        </project-operation>
        <project-operation id="com.ibm.team.enterprise.systemdefinition.searchPath.saveSearchPath">
            <action id="any"/>
        </project-operation>
    </role>
    <role id="architect">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="any"/>
        </project-operation>
    </role>
    <role id="CM (SYS) / AGM(Sys) Approval">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="modify"/>
        </project-operation>
    </role>
    <role id="Change Co-ordinator">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="any"/>
        </project-operation>
    </role>
    <role id="Change Manager">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="any"/>
        </project-operation>
    </role>
    <role id="Database Entry">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="modify"/>
        </project-operation>
    </role>
    <role id="CM / AGM (DWH) Approval">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="modify"/>
        </project-operation>
    </role>
    <role id="DGM Approval (In case of Major CAB)">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="modify"/>
        </project-operation>
    </role>
    <role id="Governance team approval">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="modify"/>
        </project-operation>
    </role>
    <role id="Version Control">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="modify"/>
        </project-operation>
    </role>
    <role id="IBM Management Approval 2">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="modify"/>
        </project-operation>
    </role>
    <role id="Production Deployment">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="modify"/>
        </project-operation>
    </role>
    <role id="Scheduling of ETL Job">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="modify"/>
        </project-operation>
    </role>
    <role id="IBM Management Approval 1">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="modify"/>
        </project-operation>
    </role>
    <role id="CR document verification">
        <project-operation id="com.ibm.team.workitem.server.saveAttachment">
            <action id="modify"/>
        </project-operation>
    </role>
</permissions>
<data>
<configuration-data final="false" id="com.ibm.team.workitem.configuration.providers" xmlns="http://com.ibm.team.workitem/providers">
    <valueSetProviders>
        <valueSetProvider id="com.ibm.team.workitem.valueproviders.VALUE_SET_PROVIDER._9GDqsCAfEeyCtProNknDhg" name="Developer" providerId="com.ibm.team.workitem.common.internal.attributeValueProviders.RoleBasedUserProvider">
            <teamArea path="CAB/Data warehouse" role="developer"/>
            <projectArea role="Version Control"/>
        </valueSetProvider>
        <valueSetProvider id="com.ibm.team.workitem.valueproviders.VALUE_SET_PROVIDER._q120UCAgEeyCtProNknDhg" name="Project Manager" providerId="com.ibm.team.workitem.common.internal.attributeValueProviders.RoleBasedUserProvider">
            <projectArea role="project_manager"/>
        </valueSetProvider>
        <valueSetProvider id="com.ibm.team.workitem.valueproviders.VALUE_SET_PROVIDER._43wBwCAgEeyCtProNknDhg" name="Conditions" providerId="com.ibm.team.workitem.common.internal.attributeValueProviders.RoleBasedUserProvider"/>
        <valueSetProvider id="com.ibm.team.workitem.valueproviders.VALUE_SET_PROVIDER._pKGx4CcrEeyCtProNknDhg" name="Version Control" providerId="com.ibm.team.workitem.common.internal.attributeValueSetProviders.FilteredValueSetProvider">
            <mapping dependentEnumeration="constraintEnum" sourceAttribute="cabchangemanager" sourceEnumeration="contributor"/>
        </valueSetProvider>
    </valueSetProviders>
    <validators>
        <validator id="com.ibm.team.workitem.valueproviders.VALIDATOR._glRoQCKEEeyCtProNknDhg" name="dateval" providerId="com.ibm.team.workitem.shared.common.internal.valueProviders.ScriptAttributeValueProvider">
            <script class="org.example.DateValidator" path="/workitem/scripts/common/dateval.js"/>
        </validator>
    </validators>
    <valueProviders>
        <valueProvider id="com.ibm.team.tpt.shared.common.internal.providers.ExposureProvider" name="Exposure Provider" providerId="com.ibm.team.workitem.shared.common.internal.valueProviders.ScriptAttributeValueProvider">
            <script class="com.ibm.team.tpt.shared.common.internal.providers.ExposureProvider"/>
            <impactAttribute id="com.ibm.team.workitem.workItemType.risk.impact"/>
            <probabilityAttribute id="com.ibm.team.workitem.workItemType.risk.probability"/>
        </valueProvider>
        <valueProvider id="com.ibm.team.tpt.shared.common.internal.providers.ProbabilityCostProvider" name="Probability Cost Provider" providerId="com.ibm.team.workitem.shared.common.internal.valueProviders.ScriptAttributeValueProvider">
            <script class="com.ibm.team.tpt.shared.common.internal.providers.ProbabilityCostProvider"/>
            <consCostAttribute id="com.ibm.team.workitem.workItemType.risk.consequencecost"/>
            <probabilityAttribute id="com.ibm.team.workitem.workItemType.risk.probability"/>
        </valueProvider>
    </valueProviders>
    <defaultValueProviders>
        <defaultValueProvider id="com.ibm.team.workitem.valueproviders.defaultCategory" name="Default category for new work items." providerId="com.ibm.team.workitem.common.internal.attributeValueProviders.CustomDefaultCategoryProvider">
            <value content="Category 1"/>
        </defaultValueProvider>
        <defaultValueProvider id="com.ibm.team.workitem.valueproviders.DEFAULT_VALUE_PROVIDER._XBUS0CAgEeyCtProNknDhg" name="Version control" providerId="com.ibm.team.workitem.common.internal.attributeValueProviders.CustomDefaultContributorsProvider">
            <value content="IBM004376W"/>
            <value content="VIBM000Y03"/>
        </defaultValueProvider>
        <defaultValueProvider id="com.ibm.team.workitem.valueproviders.DEFAULT_VALUE_PROVIDER._XGjs4CcrEeyCtProNknDhg" name="Database Entry" providerId="com.ibm.team.workitem.common.internal.attributeValueProviders.CustomDefaultContributorsProvider">
            <value content="VIBM000UEK"/>
            <value content="DWHLDP"/>
        </defaultValueProvider>
    </defaultValueProviders>
</configuration-data>

<configuration-data final="false" id="com.ibm.team.workitem.configuration.targetTypeBinding" xmlns="http://com.ibm.team.workitem/workItemLinkTargetTypeBinding">
    <workItemLinkType linkTypeId="com.ibm.team.workitem.linktype.parentworkitem">
        <targetTypeBinding sourceTypeId="defect" targetTypeId="defect"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="task"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="projectchangerequest"/>
        <targetTypeBinding sourceTypeId="issue" targetTypeId="issue"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="com.ibm.team.workitem.workItemType.businessneed"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="com.ibm.team.workitem.workItemType.risk"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="com.ibm.team.workitem.workItemType.riskaction"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="com.ibm.team.workitem.workItemType.milestone"/>
        <targetTypeBinding sourceTypeId="task" targetTypeId="cab"/>
    </workItemLinkType>
</configuration-data>

<configuration-data final="false" id="com.ibm.team.workitem.configuration.workItemTypes" xmlns="http://com.ibm.team.workitem/workitemTypes">
    <type category="com.ibm.team.workitem.workItemType" icon="processattachment:/workitemtype/bug.gif" id="defect" name="Defect">
        <alias name="bug"/>
    </type>
    <type category="com.ibm.team.workitem.workItemType.task" icon="processattachment:/workitemtype/task.gif" id="task" name="Task">
        <alias name="work item"/>
        <alias name="workitem"/>
        <alias name="item"/>
    </type>
    <type category="com.ibm.team.workitem.workItemType.projectchangerequest" icon="processattachment:/workitemtype/projectchangerequest.gif" id="projectchangerequest" name="Project Change Request"/>
    <type category="cab" icon="processattachment:/workitemtype/projectchangerequest.gif" id="cab" name="CR"/>
    <type category="com.ibm.team.workitem.workItemType.issue" icon="processattachment:/workitemtype/issue.gif" id="issue" name="Issue"/>
    <type category="com.ibm.team.workitem.workItemType.businessneed" icon="processattachment:/workitemtype/businessneed.gif" id="com.ibm.team.workitem.workItemType.businessneed" name="Business Need"/>
    <type category="com.ibm.team.workitem.workItemType.risk" icon="processattachment:/workitemtype/risk.gif" id="com.ibm.team.workitem.workItemType.risk" name="Risk"/>
    <type category="com.ibm.team.workitem.workItemType.riskaction" icon="processattachment:/workitemtype/riskaction.gif" id="com.ibm.team.workitem.workItemType.riskaction" name="Risk Action"/>
    <type category="com.ibm.team.workitem.workItemType.milestone" icon="processattachment:/workitemtype/milestone.gif" id="com.ibm.team.workitem.workItemType.milestone" name="Milestone"/>
    <customAttributes category="com.ibm.team.workitem.workItemType">
        <customAttribute id="com.ibm.team.apt.attribute.constrainttype" name="Constraint Type" type="constraintEnum"/>
        <customAttribute id="com.ibm.team.apt.attribute.constraintdate" name="Constraint Date" type="timestamp"/>
    </customAttributes>
    <customAttributes category="com.ibm.team.workitem.workItemType.task">
        <customAttribute id="com.ibm.team.apt.attribute.constrainttype" name="Constraint Type" type="constraintEnum"/>
        <customAttribute id="com.ibm.team.apt.attribute.constraintdate" name="Constraint Date" type="timestamp"/>
        <customAttribute id="tasktype" name="Type" type="cabtype"/>
        <customAttribute id="taskstatus" name="Status Reason" type="smallString"/>
        <customAttribute id="taskrequestID" name="Request ID" type="smallString"/>
        <customAttribute id="taskstarttime" name="Start Time" type="timestamp"/>
        <customAttribute id="taskendtime" name="End Time" type="timestamp"/>
        <customAttribute id="taskassigneecompany" name="Assignee Company" type="cabAssigneeCompany"/>
        <customAttribute id="taskassigneeorg" name="Assignee Organization" type="teamArea"/>
        <customAttribute id="taskchangeorg" name="Change Organization" type="teamArea"/>
        <customAttribute id="taskassignee" name="Assignee" type="contributor"/>
        <customAttribute id="tasknotes" name="Notes" type="smallString"/>
        <customAttribute id="taskpriority" name="Priority" type="priority"/>
        <customAttribute id="tasktime" name="Time Spent" type="duration"/>
        <customAttribute id="taskplannedstartdate" name="Planned Start Date" type="timestamp"/>
        <customAttribute id="taskplannedenddate" name="Planned End Date" type="timestamp"/>
        <customAttribute id="assignee" name="Assignee List" type="contributorList"/>
    </customAttributes>
    <customAttributes category="cab">
        <customAttribute id="coordinatorgroup" name="Coordinator Group" type="teamArea"/>
        <customAttribute id="changecoordinator" name="Change Coordinator" type="contributor"/>
        <customAttribute id="changecoordinator_con_list" name="Change Coordinator" type="contributorList"/>
        <customAttribute id="class" name="Class" type="class"/>
        <customAttribute id="changereason" name="Change Reason" type="changereason"/>
        <customAttribute id="impact" name="Impact" type="cabimpact"/>
        <customAttribute id="caburgency" name="Urgency" type="urgency"/>
        <customAttribute id="cabpriority" name="Priority" type="priority"/>
        <customAttribute id="cabrisklevel" name="Risk Level" type="risklevel"/>
        <customAttribute id="cabstatus" name="Status" type="cabstatus"/>
        <customAttribute id="cabmanagergroup" name="Manager Group" type="cabmanagergroup"/>
        <customAttribute id="cabchangemanager" name="Change Manager" type="contributor"/>
        <customAttribute id="cabnote" name="Note" type="mediumString"/>
        <customAttribute id="cabscheduledstartdate" name="Scheduled Start Date" type="timestamp"/>
        <customAttribute id="cabscheduledenddate" name="Scheduled End Date" type="timestamp"/>
        <customAttribute id="cabactualStartDate" name="Actual Start Date" type="timestamp"/>
        <customAttribute id="cabActualEndDate" name="Actual End Date" type="timestamp"/>
        <customAttribute id="cabcompleteddate" name="Completed Date" type="timestamp"/>
        <customAttribute id="cabEarliestStartDate" name="Earliest Start Date" type="timestamp"/>
        <customAttribute id="cabRequestedStartDate" name="Requested Start Date" type="timestamp"/>
        <customAttribute id="cabRequestedEndDate" name="Requested End Date" type="timestamp"/>
        <customAttribute id="cabtimingresaon" name="Timing Reason" type="enumerationList$cabtimingreason"/>
        <customAttribute id="cabTimingReason" name="Timing Reason" type="cabtimingreason"/>
        <customAttribute id="cabtimespentresolvingcr" name="Time Spent Resolving change Request" type="timestamp"/>
        <customAttribute id="cabstarttime" name="Start Time" type="timestamp"/>
        <customAttribute id="cabtimespentmin" name="Time Spent (min)" type="duration"/>
        <customAttribute id="cabtotaltimespentmin" name="Total Time Spent (min)" type="duration"/>
        <customAttribute id="cabsubmitter" name="Submitter" type="contributor"/>
        <customAttribute id="cabsubmitdate" name="Submit Date" type="timestamp"/>
        <customAttribute id="cabtier1sw" name="Tier 1" type="caboperationalcattier1"/>
        <customAttribute id="cabtier2sw" name="Tier 2" type="cabOCTier2"/>
        <customAttribute id="cabtier3sw" name="Tier 3" type="cabOCtier3"/>
        <customAttribute id="cabnote1" name="Note" type="string"/>
        <customAttribute id="cabchangelocation" name="Change Location" type="cabchangelocation"/>
        <customAttribute id="manager" name="Manager Group" type="processArea"/>
        <customAttribute id="cabcategory" name="Category" type="cabcategory"/>
        <customAttribute id="test" name="Test" type="teamAreaList"/>
        <customAttribute id="change" name="Change Reason" type="smallString"/>
        <customAttribute id="testd" name="Test Done" type="testdone"/>
        <customAttribute id="tests" name="Test Successful" type="Testsuccessful"/>
        <customAttribute id="problem" name="Problem Encountered" type="ProblemEncountered"/>
        <customAttribute id="roll-back" name="Roll-back Done" type="rollback"/>
        <customAttribute id="descriptionc" name="Description of Change" type="mediumString"/>
    </customAttributes>
    <customAttributes category="com.ibm.team.workitem.workItemType.risk">
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.probability" name="Probability" type="probability"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.impact" name="Impact" type="impact"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.exposure" name="Exposure(%)" type="long"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.consequencecost" name="Consequence Cost" type="long"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.probabilitycost" name="Probability Cost" type="long"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.precision" name="Precision" type="precision"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.identificationdate" name="Identification Date" type="timestamp"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.occurrencedate" name="Occurrence Date" type="timestamp"/>
        <customAttribute id="com.ibm.team.workitem.workItemType.risk.riskcategory" name="Risk Category" type="riskcategory"/>
    </customAttributes>
    <customAttributes category="com.ibm.team.workitem.workItemType.riskaction">
        <customAttribute id="com.ibm.team.workitem.workItemType.riskaction.strategy" name="Strategy Type" type="actionstrategy"/>
        <customAttribute id="com.ibm.team.apt.attribute.constrainttype" name="Constraint Type" type="constraintEnum"/>
        <customAttribute id="com.ibm.team.apt.attribute.constraintdate" name="Constraint Date" type="timestamp"/>
    </customAttributes>
    <customAttributes category="com.ibm.team.workitem.workItemType.milestone">
        <customAttribute id="com.ibm.team.apt.attribute.constrainttype" name="Constraint Type" type="constraintEnum"/>
        <customAttribute id="com.ibm.team.apt.attribute.constraintdate" name="Constraint Date" type="timestamp"/>
    </customAttributes>
    <attributeDefinitions>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.impact" name="Impact" type="impact"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.probability" name="Probability" type="probability"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.exposure" name="Exposure(%)" type="long">
            <valueProvider providerId="com.ibm.team.tpt.shared.common.internal.providers.ExposureProvider"/>
            <dependsOn id="com.ibm.team.workitem.workItemType.risk.impact"/>
            <dependsOn id="com.ibm.team.workitem.workItemType.risk.probability"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.consequencecost" name="Consequence Cost" type="long"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.probabilitycost" name="Probability Cost" type="long">
            <valueProvider providerId="com.ibm.team.tpt.shared.common.internal.providers.ProbabilityCostProvider"/>
            <dependsOn id="com.ibm.team.workitem.workItemType.risk.consequencecost"/>
            <dependsOn id="com.ibm.team.workitem.workItemType.risk.probability"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.precision" name="Precision" type="precision"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.identificationdate" name="Identification Date" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.occurrencedate" name="Occurrence Date" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.risk.riskcategory" name="Risk Category" type="riskcategory"/>
        <attributeDefinition id="com.ibm.team.workitem.workItemType.riskaction.strategy" name="Strategy Type" type="actionstrategy"/>
        <attributeDefinition id="com.ibm.team.apt.attribute.constrainttype" name="Constraint Type" type="constraintEnum"/>
        <attributeDefinition id="com.ibm.team.apt.attribute.constraintdate" name="Constraint Date" type="timestamp"/>
        <attributeDefinition id="coordinatorgroup" name="Coordinator Group" type="teamArea">
            <dependsOn id="changecoordinator"/>
        </attributeDefinition>
        <attributeDefinition id="changecoordinator" name="Change Coordinator" type="contributor"/>
        <attributeDefinition id="class" name="Class" type="class"/>
        <attributeDefinition id="changereason" name="Change Reason" type="changereason"/>
        <attributeDefinition id="impact" name="Impact" type="cabimpact"/>
        <attributeDefinition id="caburgency" name="Urgency" type="urgency"/>
        <attributeDefinition id="cabpriority" name="Priority" type="priority"/>
        <attributeDefinition id="cabrisklevel" name="Risk Level" type="risklevel"/>
        <attributeDefinition id="cabstatus" name="Status" type="cabstatus"/>
        <attributeDefinition id="cabmanagergroup" name="Manager Group" type="cabmanagergroup"/>
        <attributeDefinition id="cabchangemanager" name="Change Manager" type="contributor"/>
        <attributeDefinition id="cabnote" name="Note" type="mediumString"/>
        <attributeDefinition id="cabscheduledstartdate" name="Scheduled Start Date" type="timestamp"/>
        <attributeDefinition id="cabscheduledenddate" name="Scheduled End Date" type="timestamp"/>
        <attributeDefinition id="cabactualStartDate" name="Actual Start Date" type="timestamp"/>
        <attributeDefinition id="cabActualEndDate" name="Actual End Date" type="timestamp"/>
        <attributeDefinition id="cabcompleteddate" name="Completed Date" type="timestamp"/>
        <attributeDefinition id="cabEarliestStartDate" name="Earliest Start Date" type="timestamp"/>
        <attributeDefinition id="cabRequestedStartDate" name="Requested Start Date" type="timestamp"/>
        <attributeDefinition id="cabRequestedEndDate" name="Requested End Date" type="timestamp"/>
        <attributeDefinition id="cabtimingresaon" name="Timing Reason" type="enumerationList$cabtimingreason"/>
        <attributeDefinition id="cabTimingReason" name="Timing Reason" type="cabtimingreason"/>
        <attributeDefinition id="cabtimespentresolvingcr" name="Time Spent Resolving change Request" type="timestamp"/>
        <attributeDefinition id="cabstarttime" name="Start Time" type="timestamp"/>
        <attributeDefinition id="cabtimespentmin" name="Time Spent (min)" type="duration"/>
        <attributeDefinition id="cabtotaltimespentmin" name="Total Time Spent (min)" type="duration"/>
        <attributeDefinition id="cabsubmitter" name="Submitter" type="contributor"/>
        <attributeDefinition id="cabsubmitdate" name="Submit Date" type="timestamp"/>
        <attributeDefinition id="cabtier1sw" name="Tier 1" type="caboperationalcattier1"/>
        <attributeDefinition id="cabtier2sw" name="Tier 2" type="cabOCTier2"/>
        <attributeDefinition id="cabtier3sw" name="Tier 3" type="cabOCtier3"/>
        <attributeDefinition id="cabnote1" name="Note" type="string"/>
        <attributeDefinition id="tasktype" name="Type" type="cabtype"/>
        <attributeDefinition id="taskstatus" name="Status Reason" type="smallString"/>
        <attributeDefinition id="taskrequestID" name="Request ID" type="smallString"/>
        <attributeDefinition id="taskstarttime" name="Start Time" type="timestamp"/>
        <attributeDefinition id="taskendtime" name="End Time" type="timestamp"/>
        <attributeDefinition id="taskassigneecompany" name="Assignee Company" type="cabAssigneeCompany"/>
        <attributeDefinition id="taskassigneeorg" name="Assignee Organization" type="teamArea"/>
        <attributeDefinition id="taskchangeorg" name="Change Organization" type="teamArea"/>
        <attributeDefinition id="taskassignee" name="Assignee" type="contributor"/>
        <attributeDefinition id="cabchangelocation" name="Change Location" type="cabchangelocation"/>
        <attributeDefinition id="manager" name="Manager Group" type="processArea"/>
        <attributeDefinition id="tasknotes" name="Notes" type="smallString"/>
        <attributeDefinition id="taskpriority" name="Priority" type="priority"/>
        <attributeDefinition id="tasktime" name="Time Spent" type="duration"/>
        <attributeDefinition id="taskplannedstartdate" name="Planned Start Date" type="timestamp">
            <dependsOn id="taskplannedenddate"/>
        </attributeDefinition>
        <attributeDefinition id="taskplannedenddate" name="Planned End Date" type="timestamp">
            <dependsOn id="taskplannedstartdate"/>
            <validator providerId="com.ibm.team.workitem.valueproviders.VALIDATOR._glRoQCKEEeyCtProNknDhg"/>
        </attributeDefinition>
        <attributeDefinition id="cabcategory" name="Category" type="cabcategory"/>
        <attributeDefinition id="changecoordinator_con_list" name="Change Coordinator" type="contributorList">
            <dependsOn id="coordinatorgroup"/>
        </attributeDefinition>
        <attributeDefinition id="test" name="Test" type="teamAreaList"/>
        <attributeDefinition id="change" name="Change Reason" type="smallString"/>
        <attributeDefinition id="testd" name="Test Done" type="testdone"/>
        <attributeDefinition id="tests" name="Test Successful" type="Testsuccessful"/>
        <attributeDefinition id="problem" name="Problem Encountered" type="ProblemEncountered"/>
        <attributeDefinition id="roll-back" name="Roll-back Done" type="rollback"/>
        <attributeDefinition id="descriptionc" name="Description of Change" type="mediumString"/>
        <attributeDefinition id="assignee" name="Assignee List" type="contributorList">
            <defaultValueProvider providerId="com.ibm.team.workitem.valueproviders.DEFAULT_VALUE_PROVIDER._XBUS0CAgEeyCtProNknDhg"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.category" name="Filed Against" type="category">
            <defaultValueProvider providerId="com.ibm.team.workitem.valueproviders.defaultCategory"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.timespent" name="Time Spent" type="duration"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.modified" name="Modified Date" readOnly="true" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.subscriptions" name="Subscribed By" type="subscriptions"/>
        <attributeDefinition id="contextId" name="Restricted Access" type="uuid"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.resolutiondate" name="Resolution Date" readOnly="true" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.resolver" name="Resolved By" readOnly="true" type="contributor"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.resolution" name="Resolution" type="smallString">
            <dependsOn id="internalState"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.modifiedby" name="Modified By" readOnly="true" type="contributor"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.comments" name="Comments" type="comments"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.workitemtype" name="Type" type="type">
            <dependsOn id="projectArea"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.summary" name="Summary" type="mediumHtml"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.severity" name="Severity" type="severity">
            <dependsOn id="projectArea"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.projectarea" name="Project Area" readOnly="true" type="projectArea"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.version" name="Found In" type="deliverable">
            <dependsOn id="projectArea"/>
        </attributeDefinition>
        <attributeDefinition id="startDate" name="Start Date" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.duration" name="Estimate" type="duration"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.creator" name="Created By" readOnly="true" type="contributor"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.id" name="Id" readOnly="true" type="integer"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.target" name="Planned For" type="interval">
            <dependsOn id="projectArea"/>
            <dependsOn id="category"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.correctedestimate" name="Corrected Estimate" type="duration"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.duedate" name="Due Date" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.tags" name="Tags" type="tags"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.owner" name="Owned By" type="contributor">
            <dependsOn id="category"/>
            <dependsOn id="target"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.state" name="Status" readOnly="true" type="smallString"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.creationdate" name="Creation Date" readOnly="true" type="timestamp"/>
        <attributeDefinition id="com.ibm.team.workitem.attribute.priority" name="Priority" type="priority">
            <dependsOn id="projectArea"/>
        </attributeDefinition>
        <attributeDefinition id="com.ibm.team.workitem.attribute.description" name="Description" type="html"/>
        <attributeDefinition id="archived" name="Archived" type="boolean"/>
    </attributeDefinitions>
</configuration-data>

<configuration-data final="false" id="com.ibm.team.workitem.configuration.workflow" xmlns="http://com.ibm.team.workitem/workflow">
    <stateGroupDefinition category="closed" id="closed" name="Closed" oslcGroup="oslc-closed"/>
    <stateGroupDefinition category="open" id="open" name="Open"/>
    <stateGroupDefinition category="inprogress" id="inprogress" name="In Progress" oslcGroup="oslc-inprogress"/>
    <stateGroupDefinition category="closed" id="verified" name="Verified" oslcGroup="oslc-verified"/>
    <workflowDefinition id="bugzillaWorkflow">
        <workflow description="This workflow is inspired by the standard Bugzilla workflow and appropriate for defects and tasks." name="Default Workflow" reopenActionId="bugzillaWorkflow.action.reopen" resolveActionId="bugzillaWorkflow.action.resolve" startActionId="bugzillaWorkflow.action.confirm">
            <resolution icon="processattachment:/workflow/unresolve.gif" id="r0" name="Unresolved"/>
            <resolution icon="processattachment:/workflow/defer.gif" id="r7" name="Later"/>
            <resolution icon="processattachment:/workflow/close.gif" id="r8" name="Fixed Upstream"/>
            <resolution icon="processattachment:/workflow/close.gif" id="r1" name="Fixed"/>
            <resolution icon="processattachment:/workflow/duplicate.gif" id="r2" name="Duplicate"/>
            <resolution icon="processattachment:/workflow/wontdo.gif" id="r3" name="Won't Fix"/>
            <resolution icon="processattachment:/workflow/works.gif" id="r4" name="Works For Me"/>
            <resolution icon="processattachment:/workflow/reject.gif" id="r5" name="Invalid"/>
            <action icon="processattachment:/workflow/verify.gif" id="bugzillaWorkflow.action.verify" name="Verify" state="bugzillaWorkflow.state.s4">
                <resolution id="r1"/>
                <resolution id="r2"/>
                <resolution id="r3"/>
                <resolution id="r4"/>
                <resolution id="r5"/>
                <resolution id="r7"/>
                <resolution id="r8"/>
            </action>
            <action icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.action.triage" name="Triage" state="bugzillaWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.action.confirm" name="Initialize" state="bugzillaWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/close.gif" id="bugzillaWorkflow.action.close" name="Close" state="bugzillaWorkflow.state.s5">
                <resolution id="r1"/>
                <resolution id="r2"/>
                <resolution id="r3"/>
                <resolution id="r4"/>
                <resolution id="r5"/>
                <resolution id="r7"/>
                <resolution id="r8"/>
            </action>
            <action icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.action.stopWorking" name="Stop Working" state="bugzillaWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/resolve.gif" id="bugzillaWorkflow.action.setResolved" name="Set Resolved" state="bugzillaWorkflow.state.s3">
                <resolution id="r1"/>
                <resolution id="r2"/>
                <resolution id="r3"/>
                <resolution id="r4"/>
                <resolution id="r5"/>
                <resolution id="r7"/>
                <resolution id="r8"/>
            </action>
            <action icon="processattachment:/workflow/reopen.gif" id="bugzillaWorkflow.action.reopen" name="Reopen" state="bugzillaWorkflow.state.s6"/>
            <action icon="processattachment:/workflow/resolve.gif" id="bugzillaWorkflow.action.resolve" name="Resolve" state="bugzillaWorkflow.state.s3">
                <resolution id="r1"/>
                <resolution id="r2"/>
                <resolution id="r3"/>
                <resolution id="r4"/>
                <resolution id="r5"/>
                <resolution id="r7"/>
                <resolution id="r8"/>
            </action>
            <action icon="processattachment:/workflow/inprogress.gif" id="bugzillaWorkflow.action.startWorking" name="Start Working" state="bugzillaWorkflow.state.s2"/>
            <action icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.action.untriage" name="Untriage" state="bugzillaWorkflow.state.s1"/>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="bugzillaWorkflow.state.s5" name="Closed" showResolution="true">
                <action id="bugzillaWorkflow.action.reopen"/>
            </state>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="bugzillaWorkflow.state.s2" name="In Progress" showResolution="false">
                <action id="bugzillaWorkflow.action.resolve"/>
                <action id="bugzillaWorkflow.action.stopWorking"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.state.s1" name="New" showResolution="false">
                <action id="bugzillaWorkflow.action.startWorking"/>
                <action id="bugzillaWorkflow.action.resolve"/>
                <action id="bugzillaWorkflow.action.triage"/>
            </state>
            <state group="open" icon="processattachment:/workflow/reopen.gif" id="bugzillaWorkflow.state.s6" name="Reopened" showResolution="false">
                <action id="bugzillaWorkflow.action.startWorking"/>
                <action id="bugzillaWorkflow.action.resolve"/>
                <action id="bugzillaWorkflow.action.triage"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/resolve.gif" id="bugzillaWorkflow.state.s3" name="Resolved" showResolution="true">
                <action id="bugzillaWorkflow.action.verify"/>
                <action id="bugzillaWorkflow.action.close"/>
                <action id="bugzillaWorkflow.action.reopen"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="bugzillaWorkflow.state.s7" name="Triaged" showResolution="false">
                <action id="bugzillaWorkflow.action.startWorking"/>
                <action id="bugzillaWorkflow.action.untriage"/>
                <action id="bugzillaWorkflow.action.resolve"/>
            </state>
            <state group="verified" icon="processattachment:/workflow/verify.gif" id="bugzillaWorkflow.state.s4" name="Verified" showResolution="true">
                <action id="bugzillaWorkflow.action.close"/>
                <action id="bugzillaWorkflow.action.reopen"/>
                <action id="bugzillaWorkflow.action.setResolved"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="com.ibm.team.workitem.taskWorkflow">
        <workflow description="Workflow used for Tasks" name="Task Workflow" resolveActionId="com.ibm.team.workitem.taskWorkflow.action.close" startActionId="com.ibm.team.workitem.taskWorkflow.action.startWorking">
            <action icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.taskWorkflow.action.startWorking" name="New" state="com.ibm.team.workitem.taskWorkflow.state.s2"/>
            <action icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.taskWorkflow.action.close" name="Completed" state="com.ibm.team.workitem.taskWorkflow.state.s4"/>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.taskWorkflow.state.s2" name="New" showResolution="false">
                <action id="com.ibm.team.workitem.taskWorkflow.action.close"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.taskWorkflow.state.s4" name="Closed" showResolution="false"/>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="com.ibm.team.workitem.projectChangeRequestWorkflow">
        <workflow description="Workflow used for Project Change Requests" name="Project Change Request Workflow" reopenActionId="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reopen" resolveActionId="com.ibm.team.workitem.projectChangeRequestWorkflow.action.resolve" startActionId="com.ibm.team.workitem.projectChangeRequestWorkflow.action.confirm">
            <action icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.assign" name="Assign" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s9"/>
            <action icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reject" name="Reject" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s4"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.open" name="Open" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/reopen.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reopen" name="Reopen" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.confirm" name="Initialize" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.close" name="Close" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s6"/>
            <action icon="processattachment:/workflow/verify.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.review" name="Review" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s8"/>
            <action icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.approve" name="Approve" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s2"/>
            <action icon="processattachment:/workflow/defer.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.defer" name="Defer" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s3"/>
            <action icon="processattachment:/workflow/resolve.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.resolve" name="Resolve" state="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s5"/>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s2" name="Approved" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.assign"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s6" name="Closed" showResolution="false"/>
            <state group="closed" icon="processattachment:/workflow/defer.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s3" name="Deferred" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reopen"/>
            </state>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s9" name="In Progress" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.resolve"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s1" name="New" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.open"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s7" name="Open" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.review"/>
            </state>
            <state group="open" icon="processattachment:/workflow/verify.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s8" name="Ready" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.approve"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reject"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s4" name="Rejected" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reopen"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/resolve.gif" id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s5" name="Resolved" showResolution="false">
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reject"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="com.ibm.team.workitem.issueWorkflow">
        <workflow description="Workflow used for Issues" name="Issue Workflow" reopenActionId="com.ibm.team.workitem.issueWorkflow.action.reopen" resolveActionId="com.ibm.team.workitem.issueWorkflow.action.resolve" startActionId="com.ibm.team.workitem.issueWorkflow.action.confirm">
            <action icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.issueWorkflow.action.reject" name="Reject" state="com.ibm.team.workitem.issueWorkflow.state.s4"/>
            <action icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.issueWorkflow.action.close" name="Close" state="com.ibm.team.workitem.issueWorkflow.state.s6"/>
            <action icon="processattachment:/workflow/defer.gif" id="com.ibm.team.workitem.issueWorkflow.action.defer" name="Defer" state="com.ibm.team.workitem.issueWorkflow.state.s3"/>
            <action icon="processattachment:/workflow/resolve.gif" id="com.ibm.team.workitem.issueWorkflow.action.resolve" name="Resolve" state="com.ibm.team.workitem.issueWorkflow.state.s5"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.issueWorkflow.action.confirm" name="Initialize" state="com.ibm.team.workitem.issueWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.issueWorkflow.action.assign" name="Assign" state="com.ibm.team.workitem.issueWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/duplicate.gif" id="com.ibm.team.workitem.issueWorkflow.action.dup" name="Duplicate" state="com.ibm.team.workitem.issueWorkflow.state.s6"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.issueWorkflow.action.reopen" name="Reopen" state="com.ibm.team.workitem.issueWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.issueWorkflow.action.start" name="Start Working" state="com.ibm.team.workitem.issueWorkflow.state.s8"/>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.issueWorkflow.state.s6" name="Closed" showResolution="false"/>
            <state group="closed" icon="processattachment:/workflow/defer.gif" id="com.ibm.team.workitem.issueWorkflow.state.s3" name="Deferred" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.reopen"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.start"/>
            </state>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="com.ibm.team.workitem.issueWorkflow.state.s8" name="In Progress" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.resolve"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.reject"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.issueWorkflow.state.s1" name="New" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.reject"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.dup"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.assign"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.issueWorkflow.state.s7" name="Open" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.start"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.issueWorkflow.state.s4" name="Rejected" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.reopen"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/resolve.gif" id="com.ibm.team.workitem.issueWorkflow.state.s5" name="Resolved" showResolution="false">
                <action id="com.ibm.team.workitem.issueWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.reopen"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="riskWorkflow">
        <workflow name="Risk Workflow" startActionId="riskWorkflow.action.new">
            <resolution icon="processattachment:/workflow/defer.gif" id="riskWorkflow.resolution.r0" name="Avoided"/>
            <resolution icon="processattachment:/workflow/transfer.gif" id="riskWorkflow.resolution.r1" name="Transferred/Shared"/>
            <resolution icon="processattachment:/workflow/close.gif" id="riskWorkflow.resolution.r2" name="Mitigated"/>
            <resolution icon="processattachment:/workflow/accepted.gif" id="riskWorkflow.resolution.r3" name="Accepted"/>
            <resolution icon="processattachment:/workflow/reject.gif" id="riskWorkflow.resolution.r4" name="Invalid"/>
            <action icon="processattachment:/workflow/new.gif" id="riskWorkflow.action.new" name="New" state="riskWorkflow.state.s1"/>
            <action icon="processattachment:/workflow/close.gif" id="riskWorkflow.action.close" name="Close" state="riskWorkflow.state.s8">
                <resolution id="riskWorkflow.resolution.r0"/>
                <resolution id="riskWorkflow.resolution.r1"/>
                <resolution id="riskWorkflow.resolution.r2"/>
                <resolution id="riskWorkflow.resolution.r3"/>
                <resolution id="riskWorkflow.resolution.r4"/>
            </action>
            <action icon="processattachment:/workflow/reject.gif" id="riskWorkflow.action.rejected" name="Reject" state="riskWorkflow.state.s4"/>
            <action icon="processattachment:/workflow/reopen.gif" id="riskWorkflow.action.reopen" name="Reopen" state="riskWorkflow.state.s9"/>
            <action icon="processattachment:/workflow/mitigated.gif" id="riskWorkflow.action.mitigated" name="Mitigate" state="riskWorkflow.state.s7"/>
            <action icon="processattachment:/workflow/accepted.gif" id="riskWorkflow.action.accepted" name="Accept" state="riskWorkflow.state.s3"/>
            <action icon="processattachment:/workflow/inprogress.gif" id="riskWorkflow.action.inprogress" name="In Progress" state="riskWorkflow.state.s6"/>
            <action icon="processattachment:/workflow/verify.gif" id="riskWorkflow.action.tobevalidated" name="To Be Validated" state="riskWorkflow.state.s2"/>
            <state group="open" icon="processattachment:/workflow/new.gif" id="riskWorkflow.state.s1" name="New" showResolution="false">
                <action id="riskWorkflow.action.tobevalidated"/>
                <action id="riskWorkflow.action.accepted"/>
                <action id="riskWorkflow.action.inprogress"/>
                <action id="riskWorkflow.action.rejected"/>
            </state>
            <state group="open" icon="processattachment:/workflow/verify.gif" id="riskWorkflow.state.s2" name="To Be Validated" showResolution="false">
                <action id="riskWorkflow.action.accepted"/>
                <action id="riskWorkflow.action.rejected"/>
            </state>
            <state icon="processattachment:/workflow/accepted.gif" id="riskWorkflow.state.s3" name="Accepted" showResolution="false">
                <action id="riskWorkflow.action.inprogress"/>
            </state>
            <state group="inprogress" icon="processattachment:/workflow/inprogress.gif" id="riskWorkflow.state.s6" name="In Progress" showResolution="false">
                <action id="riskWorkflow.action.mitigated"/>
                <action id="riskWorkflow.action.close"/>
            </state>
            <state icon="processattachment:/workflow/mitigated.gif" id="riskWorkflow.state.s7" name="Mitigated" showResolution="false">
                <action id="riskWorkflow.action.close"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/reject.gif" id="riskWorkflow.state.s4" name="Rejected" showResolution="false">
                <action id="riskWorkflow.action.close"/>
                <action id="riskWorkflow.action.reopen"/>
            </state>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="riskWorkflow.state.s8" name="Closed" showResolution="true">
                <action id="riskWorkflow.action.reopen"/>
            </state>
            <state group="open" icon="processattachment:/workflow/reopen.gif" id="riskWorkflow.state.s9" name="Reopened" showResolution="false">
                <action id="riskWorkflow.action.new"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="com.ibm.team.workitem.businessneedWorkflow">
        <workflow name="Business Need Workflow" reopenActionId="com.ibm.team.workitem.businessneedWorkflow.action.reopen" startActionId="com.ibm.team.workitem.businessneedWorkflow.action.init">
            <resolution icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_unresolv.gif" id="com.ibm.team.workitem.businessneedWorkflow.r0" name="Unresolved"/>
            <resolution icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_impl.gif" id="com.ibm.team.workitem.businessneedWorkflow.r1" name="Implemented"/>
            <resolution icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_rejected.gif" id="com.ibm.team.workitem.businessneedWorkflow.r2" name="Rejected"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_proposed.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.a1" name="Uncommit" state="com.ibm.team.workitem.businessneedWorkflow.state.s52"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_closed.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.close" name="Close" state="com.ibm.team.workitem.businessneedWorkflow.state.s55">
                <resolution id="com.ibm.team.workitem.businessneedWorkflow.r1"/>
                <resolution id="com.ibm.team.workitem.businessneedWorkflow.r2"/>
            </action>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_proposed.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.propose" name="Propose" state="com.ibm.team.workitem.businessneedWorkflow.state.s52"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_deferred.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.defer" name="Defer" state="com.ibm.team.workitem.businessneedWorkflow.state.s54"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.init" name="New" state="com.ibm.team.workitem.businessneedWorkflow.state.s51"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.reopen" name="Reopen" state="com.ibm.team.workitem.businessneedWorkflow.state.s51"/>
            <action icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_committed.gif" id="com.ibm.team.workitem.businessneedWorkflow.action.commit" name="Commit" state="com.ibm.team.workitem.businessneedWorkflow.state.s53"/>
            <state group="closed" icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_closed.gif" id="com.ibm.team.workitem.businessneedWorkflow.state.s55" name="Closed" showResolution="true">
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.reopen"/>
            </state>
            <state group="open" icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_committed.gif" id="com.ibm.team.workitem.businessneedWorkflow.state.s53" name="Approved" showResolution="false">
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.a1"/>
            </state>
            <state group="closed" icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_deferred.gif" id="com.ibm.team.workitem.businessneedWorkflow.state.s54" name="Deferred" showResolution="false">
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.commit"/>
            </state>
            <state group="open" icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif" id="com.ibm.team.workitem.businessneedWorkflow.state.s51" name="New" showResolution="false">
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.propose"/>
            </state>
            <state group="open" icon="platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_proposed.gif" id="com.ibm.team.workitem.businessneedWorkflow.state.s52" name="Proposed" showResolution="false">
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.commit"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.defer"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="com.ibm.team.workitem.milestoneWorkflow">
        <workflow name="Milestone Workflow" reopenActionId="com.ibm.team.workitem.milestoneWorkflow.action.reopen" startActionId="com.ibm.team.workitem.milestoneWorkflow.action.init">
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.milestoneWorkflow.action.reopen" name="Reopen" state="com.ibm.team.workitem.milestoneWorkflow.state.s51"/>
            <action icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.milestoneWorkflow.action.close" name="Close" state="com.ibm.team.workitem.milestoneWorkflow.state.s55"/>
            <action icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.milestoneWorkflow.action.reject" name="Reject" state="com.ibm.team.workitem.milestoneWorkflow.state.s53"/>
            <action icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.milestoneWorkflow.action.init" name="New" state="com.ibm.team.workitem.milestoneWorkflow.state.s51"/>
            <action icon="processattachment:/workflow/accepted.gif" id="com.ibm.team.workitem.milestoneWorkflow.action.approve" name="Approve" state="com.ibm.team.workitem.milestoneWorkflow.state.s52"/>
            <state group="closed" icon="processattachment:/workflow/close.gif" id="com.ibm.team.workitem.milestoneWorkflow.state.s55" name="Closed" showResolution="false">
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.reopen"/>
            </state>
            <state group="open" icon="processattachment:/workflow/open.gif" id="com.ibm.team.workitem.milestoneWorkflow.state.s51" name="New" showResolution="false">
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.approve"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.reject"/>
            </state>
            <state group="open" icon="processattachment:/workflow/accepted.gif" id="com.ibm.team.workitem.milestoneWorkflow.state.s52" name="Approved" showResolution="false">
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.close"/>
            </state>
            <state group="open" icon="processattachment:/workflow/reject.gif" id="com.ibm.team.workitem.milestoneWorkflow.state.s53" name="Rejected" showResolution="false">
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.reopen"/>
            </state>
        </workflow>
    </workflowDefinition>
    <workflowDefinition id="cab">
        <workflow name="CAB" startActionId="cab.action.a21">
            <action id="cab.action.a11" name="Approve" state="cab.state.s9"/>
            <action id="cab.action.a10" name="Recommended" state="cab.state.s8"/>
            <action id="cab.action.a21" name="Draft" state="cab.state.s1"/>
            <action id="cab.action.a20" name="Cancalled" state="cab.state.s18"/>
            <action id="cab.action.a15" name="Complete" state="cab.state.s12"/>
            <action id="cab.action.a14" name="Complete" state="cab.state.s15"/>
            <action id="cab.action.a13" name="Approve" state="cab.state.s11"/>
            <action id="cab.action.a12" name="Start Implementing" state="cab.state.s10"/>
            <action id="cab.action.a5" name="Approve" state="cab.state.s6"/>
            <action id="cab.action.a18" name="Complete" state="cab.state.s16"/>
            <action id="cab.action.a3" name="Approve" state="cab.state.s4"/>
            <action id="cab.action.a17" name="Complete" state="cab.state.s14"/>
            <action id="cab.action.a4" name="Approve" state="cab.state.s5"/>
            <action id="cab.action.a16" name="Complete" state="cab.state.s13"/>
            <action id="cab.action.a7" name="Reject" state="cab.state.s8"/>
            <action id="cab.action.a1" name="Approve" state="cab.state.s2"/>
            <action id="cab.action.a2" name="Approve" state="cab.state.s3"/>
            <state group="open" id="cab.state.s1" name="Draft" showResolution="false">
                <action id="cab.action.a10"/>
            </state>
            <state id="cab.state.s2" name="IBM Management Approval 1" showResolution="false">
                <action id="cab.action.a2"/>
                <action id="cab.action.a7"/>
            </state>
            <state id="cab.state.s3" name="IBM Management Approval 2" showResolution="false">
                <action id="cab.action.a7"/>
                <action id="cab.action.a4"/>
            </state>
            <state id="cab.state.s4" name="CM (SYS) / AGM(Sys) Approval" showResolution="false">
                <action id="cab.action.a7"/>
                <action id="cab.action.a5"/>
            </state>
            <state id="cab.state.s5" name="Governance team approval" showResolution="false">
                <action id="cab.action.a7"/>
                <action id="cab.action.a3"/>
            </state>
            <state id="cab.state.s6" name="CM / AGM (DWH) Approval" showResolution="false">
                <action id="cab.action.a7"/>
                <action id="cab.action.a11"/>
            </state>
            <state id="cab.state.s8" name="CR Document verification (SBI_INFRA)" showResolution="false">
                <action id="cab.action.a1"/>
            </state>
            <state id="cab.state.s9" name="Planning in Progress" showResolution="false">
                <action id="cab.action.a15"/>
            </state>
            <state id="cab.state.s10" name="Implementation In Progress" showResolution="false">
                <action id="cab.action.a15"/>
            </state>
            <state group="closed" id="cab.state.s11" name="Completed" showResolution="false"/>
            <state id="cab.state.s12" name="Version Control" showResolution="false">
                <action id="cab.action.a16"/>
            </state>
            <state id="cab.state.s13" name="Production Deployment" showResolution="false">
                <action id="cab.action.a17"/>
            </state>
            <state id="cab.state.s14" name="Database Entry" showResolution="false">
                <action id="cab.action.a14"/>
            </state>
            <state id="cab.state.s15" name="Scheduling of ETL Job" showResolution="false">
                <action id="cab.action.a18"/>
            </state>
            <state id="cab.state.s16" name="AGMs Sys/ CM Sys approval" showResolution="false">
                <action id="cab.action.a13"/>
            </state>
            <state id="cab.state.s18" name="Cancalled" showResolution="false"/>
        </workflow>
    </workflowDefinition>
</configuration-data>
<configuration-data final="false" id="com.ibm.team.workitem.configuration.workflowBinding" xmlns="http://com.ibm.team.workitem/workflowBinding">
    <workItemCategoryBinding workItemCategoryId="cab" workflowId="cab"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType" workflowId="bugzillaWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.businessneed" workflowId="com.ibm.team.workitem.businessneedWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.issue" workflowId="com.ibm.team.workitem.issueWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.milestone" workflowId="com.ibm.team.workitem.milestoneWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.projectchangerequest" workflowId="com.ibm.team.workitem.projectChangeRequestWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.risk" workflowId="riskWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.riskaction" workflowId="bugzillaWorkflow"/>
    <workItemCategoryBinding workItemCategoryId="com.ibm.team.workitem.workItemType.task" workflowId="com.ibm.team.workitem.taskWorkflow"/>
</configuration-data>
<configuration-data id="com.ibm.team.workitem.editor.configuration.quickinformationconfiguration" xmlns="http://com.ibm.team.workitem.editor/quickinformation">
<quickinformationConfiguration id="com.ibm.team.workitem.configuration.quickinformation.default">
<presentation title="Subscribers" kind="com.ibm.team.workitem.quickinformation.kind.subscriber">
<property key="linkTarget" value="com.ibm.team.workitem.attribute.subscriptions" />
</presentation>
<presentation title="Attachments" kind="com.ibm.team.workitem.quickinformation.kind.artifact">
<property key="linkTarget" value="com.ibm.team.workitem.presentation.attachments" />
</presentation>
<presentation title="Parent" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.parentworkitem/parent" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Children" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.parentworkitem/children" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Blocks" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.blocksworkitem/blocks" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Depends On" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.blocksworkitem/dependsOn" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
        <presentation kind="com.ibm.team.workitem.quickinformation.kind.workitem" title="Resolves">
            <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
            <property key="endpointId" value="com.ibm.team.workitem.linktype.resolvesworkitem/resolves"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.quickinformation.kind.workitem" title="Resolved By">
            <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
            <property key="endpointId" value="com.ibm.team.workitem.linktype.resolvesworkitem/resolvedBy"/>
        </presentation>
<presentation title="Duplicate Of" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.duplicateworkitem/duplicateOf" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation kind="com.ibm.team.workitem.quickinformation.kind.workitem" title="Predecessor">
            <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
            <property key="endpointId" value="com.ibm.team.workitem.linktype.schedulePredecessor/predecessor"/>
        </presentation>
<presentation kind="com.ibm.team.workitem.quickinformation.kind.workitem" title="Successor">
            <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
            <property key="endpointId" value="com.ibm.team.workitem.linktype.schedulePredecessor/successor"/>
        </presentation>
<presentation title="Duplicated By" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.duplicateworkitem/duplicates" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Related" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.relatedworkitem/" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Copies" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.copiedworkitem/copies" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Copied From" kind="com.ibm.team.workitem.quickinformation.kind.workitem">
<property key="endpointId" value="com.ibm.team.workitem.linktype.copiedworkitem/copiedFrom" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Mentions" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.workitem.linktype.textualReference/target" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Mentioned By" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.workitem.linktype.textualReference/source" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Related Artifacts" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.workitem.linktype.relatedartifact/relatedArtifact" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Change Sets" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.filesystem.workitems.change_set/com.ibm.team.scm.ChangeSet" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Reported against Builds" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.build.linktype.reportedWorkItems/com.ibm.team.build.common.link.reportedAgainstBuilds" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="Included in Builds" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.build.linktype.includedWorkItems/com.ibm.team.build.common.link.includedInBuilds" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation title="External Connection" kind="com.ibm.team.workitem.quickinformation.kind.reference">
<property key="endpointId" value="com.ibm.team.interop.linktype.item/externalConnection" />
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links" />
</presentation>
<presentation kind="com.ibm.team.workitem.quickinformation.kind.reference" title="SVN Revisions">
<property key="endpointId" value="com.ibm.team.scm.svn.linkType.workItem/source"/>
<property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
</presentation>
<presentation title="Approvals" kind="com.ibm.team.workitem.quickinformation.kind.approval">
<property key="linkTarget" value="com.ibm.team.workitem.presentation.approvals" />
</presentation>
<presentation title="Affects Test Execution" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.affectsExecutionResult/affects"/>      
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Blocks Test Execution" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.blocksTestExecutionRecord/blocks"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Affects Plan Item" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.cm.affectsPlanItem/planItem"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Affects Requirement" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.rm.relatedRequirement/requirement"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Affected By Defect" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.cm.affectedByDefect/defect"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Implements Requirement" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.implementsRequirement/implements"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tested By Test Case" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.testedByTestCase/testedby"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tracks Test Case" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.qm.relatedTestCase/testCase"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tracks Execution Record" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.qm.relatedExecutionRecord/executionRecord"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tracks Test Plan" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.qm.relatedTestPlan/testPlan"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tracks Test Script" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.qm.relatedTestScript/testScript"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Tracks Requirement" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.rm.tracksRequirement/requirement"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>
                    </presentation>
                    <presentation title="Related Change Request" kind="com.ibm.team.workitem.quickinformation.kind.enumeratingReference">
                        <property key="endpointId" value="com.ibm.team.workitem.linktype.relatedChangeManagement/relatedChangeManagement"/>
                        <property key="linkTarget" value="com.ibm.team.workitem.presentation.links"/>            
                    </presentation>
</quickinformationConfiguration>
</configuration-data>
<configuration-data final="false" id="com.ibm.team.workitem.editor.configuration.presentations" xmlns="http://com.ibm.team.workitem.editor/presentations">
    <editor id="com.ibm.team.workitem.editor.default">
        <tab tabId="com.ibm.team.workitem.editor.default.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.overview" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.links" title="Links"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="Custom">
            <property key="hideIfEmpty" value="true"/>
        </tab>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
        <tab tabId="com.ibm.team.workitem.tab.timesheet" title="Time Tracking"/>
    </editor>
    <editor id="com.ibm.team.workitem.editor.scope">
        <tab tabId="com.ibm.team.workitem.editor.scope.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.overview.scope_duplicate" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals/ Attachments"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="Custom">
            <property key="hideIfEmpty" value="true"/>
        </tab>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
    </editor>
    <editor id="com.ibm.team.workitem.editor.risk">
        <tab tabId="com.ibm.team.workitem.editor.risk.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.overview.risk" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.links" title="Links"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="Custom">
            <property key="hideIfEmpty" value="true"/>
        </tab>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
    </editor>
    <editor id="com.ibm.team.workitem.editor.businessneed">
        <tab tabId="com.ibm.team.workitem.editor.businessneed.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.businessneed_overview" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.links" title="Links"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="Custom">
            <property key="hideIfEmpty" value="true"/>
        </tab>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
    </editor>
    <editor id="com.ibm.team.workitem.editor.milestone">
        <tab tabId="com.ibm.team.workitem.editor.milestone.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.milestone_overview" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.links" title="Links"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
    </editor>
    <editor id="com.ibm.team.apt.planPreview">
        <tab tabId="com.ibm.team.apt.planPreview.default" title="Default"/>
        <tab tabId="com.ibm.team.apt.planPreview.risk" title="Risk"/>
        <tab tabId="com.ibm.team.apt.planPreview.businessneed" title="Business Need"/>
        <tab tabId="com.ibm.team.apt.planPreview.milestone" title="Milestone"/>
        <tab tabId="com.ibm.team.apt.planPreview.scope" title="Issue"/>
    </editor>
    <editor id="com.ibm.team.workitem.web.inline">
        <tab tabId="com.ibm.team.workitem.web.inline.default" title="Default"/>
        <tab tabId="com.ibm.team.workitem.web.inline.task" title="Task"/>
        <tab tabId="com.ibm.team.workitem.web.inline.risk" title="Risk"/>
        <tab tabId="com.ibm.team.workitem.web.inline.businessneed" title="Business Need"/>
        <tab tabId="com.ibm.team.workitem.web.inline.milestone" title="Milestone"/>
        <tab tabId="com.ibm.team.workitem.web.inline.scope" title="Issue"/>
    </editor>
    <editor id="com.ibm.team.workitem.lightweight">
        <tab tabId="com.ibm.team.workitem.lightweight.editor" title="Other Work Item Editor Elements"/>
    </editor>
    <editor id="com.ibm.team.workitem.editor.riskaction">
        <tab tabId="com.ibm.team.workitem.editor.riskaction.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.overview.riskaction" title="Overview"/>
        <tab tabId="com.ibm.team.workitem.tab.links" title="Links"/>
        <tab tabId="com.ibm.team.workitem.tab.approvals" title="Approvals"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="Custom">
            <property key="hideIfEmpty" value="true"/>
        </tab>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History"/>
        <tab tabId="com.ibm.team.workitem.tab.timesheet" title="Time Tracking"/>
    </editor>
    <editor id="com.ibm.team.workitem.editor.scope.cab">
        <tab tabId="com.ibm.team.workitem.editor.scope.internalHeader" title="none"/>
        <tab tabId="com.ibm.team.workitem.tab.overview.scope" title="Overview"/>
        <tab tabId="cabworkdetail" title="Work Detail"/>
        <tab tabId="cabtask" title="Task"/>
        <tab tabId="com.ibm.team.workitem.tab.customAttributes" title="UAT/Test Details">
            <property key="hideIfEmpty" value="false"/>
        </tab>
        <tab tabId="cabcategorization" title="Categorization"/>
        <tab tabId="com.ibm.team.workitem.tab.history" title="History (Activity logs)"/>
    </editor>
    <editor id="com.ibm.team.workitem.web.inline.cab">
        <tab tabId="com.ibm.team.workitem.web.inline.default" title="Default"/>
        <tab tabId="com.ibm.team.workitem.web.inline.task" title="Task"/>
        <tab tabId="com.ibm.team.workitem.web.inline.risk" title="Risk"/>
        <tab tabId="com.ibm.team.workitem.web.inline.businessneed" title="Business Need"/>
        <tab tabId="com.ibm.team.workitem.web.inline.milestone" title="Milestone"/>
        <tab tabId="com.ibm.team.workitem.web.inline.scope" title="Issue"/>
    </editor>
    <section id="com.ibm.team.workitem.section.attachments">
        <presentation id="com.ibm.team.workitem.presentation.attachments" kind="com.ibm.team.workitem.kind.internal.attachments"/>
    </section>
    <tab id="cabdatesystem" layout="builtInCustomAttributesLayout">
        <section sectionId="dates" slot="left" title="Dates">
            <property key="test" value="Krunal"/>
        </section>
    </tab>
    <tab id="com.ibm.team.workitem.editor.businessneed.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <section id="com.ibm.team.workitem.section.links">
        <presentation id="com.ibm.team.workitem.presentation.links" kind="com.ibm.team.workitem.kind.internal.links"/>
    </section>
    <section id="com.ibm.team.workitem.section.businessneed_details">
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation id="Work Progress" kind="com.ibm.team.apt.kind.internal.progress"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolutiondate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolver" kind="com.ibm.team.workitem.kind.contributor">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
    </section>
    <section id="com.ibm.team.workitem.section.discussion">
        <presentation id="com.ibm.team.workitem.presentation.discussion" kind="com.ibm.team.workitem.kind.internal.discussion"/>
    </section>
    <section id="com.ibm.team.workitem.section.quickinformation">
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation kind="com.ibm.team.workitem.kind.staticRichText">
            <property key="richText" value="&lt;b&gt;&lt;i&gt;Please attach the following list of file : &lt;br/&gt;1.DSX File,Production Deployment Document,&lt;br/&gt;2.DWH release management Additional Info, &lt;br/&gt;3.DWH Release Note,&lt;br/&gt;4.TWS Scheduling Sheet,&lt;br/&gt;5.CR Template&lt;/i&gt;&lt;/b&gt;&lt;br/&gt;&lt;b&gt;&lt;i&gt;6.Governance Sheet&lt;br/&gt;7.Solution Documents&lt;/i&gt;&lt;/b&gt;"/>
        </presentation>
        <presentation description="Please attach the following list of file (DSX File,Production Deployment Document,DWH release management Additional Info, DWH Release Note, TWS Scheduling Sheet, CR Template)" kind="com.ibm.team.workitem.kind.internal.attachments" label="Attachments"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation kind="com.ibm.team.workitem.kind.internal.discussion"/>
    </section>
    <tab id="com.ibm.team.workitem.tab.overview.scope" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.details.scope" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <tab id="com.ibm.team.apt.planPreview.scope" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.scope.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <section id="com.ibm.team.apt.planPreview.risk.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.riskcategory" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.identificationdate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probability" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.impact" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.exposure" kind="com.ibm.team.workitem.kind.long">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.precision" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.consequencecost" kind="com.ibm.team.tpt.kind.cost"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probabilitycost" kind="com.ibm.team.tpt.kind.cost">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.occurrencedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.workitem.section.collector_small">
        <presentation attributeId="testd" kind="com.ibm.team.workitem.kind.radiogroup"/>
        <presentation attributeId="tests" kind="com.ibm.team.workitem.kind.radiogroup"/>
        <presentation attributeId="problem" kind="com.ibm.team.workitem.kind.radiogroup"/>
        <presentation attributeId="roll-back" kind="com.ibm.team.workitem.kind.radiogroup"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.description" kind="com.ibm.team.workitem.kind.internal.description" label="Details of Testing done"/>
    </section>
    <tab id="cabrelationship" layout="builtInLinksLayout">
        <section sectionId="com.ibm.team.workitem.section.links" slot="links" title="Relationship"/>
    </tab>
    <tab id="com.ibm.team.workitem.tab.approvals" layout="builtInApprovalsLayout">
        <section sectionId="com.ibm.team.workitem.section.approvals" title="Approvals"/>
    </tab>
    <section id="com.ibm.team.workitem.section.timesheet">
        <presentation kind="com.ibm.team.tpt.kind.internal.timeSheet"/>
    </section>
    <tab id="com.ibm.team.workitem.tab.links" layout="builtInLinksLayout">
        <section sectionId="com.ibm.team.workitem.section.attachments" slot="attachments" title="Attachments"/>
        <section sectionId="com.ibm.team.workitem.section.subscribers" slot="subscribers" title="Subscribers"/>
        <section sectionId="com.ibm.team.workitem.section.links" slot="links" title="Links"/>
    </tab>
    <section id="com.ibm.team.workitem.web.inline.section.quickinformation">
        <presentation id="com.ibm.team.workitem.presentation.quickinformation" kind="com.ibm.team.workitem.kind.internal.quickInformation">
            <property key="hideIfCreation" value="true"/>
            <property key="quickinformationConfiguration" value="com.ibm.team.workitem.configuration.quickinformation.default"/>
        </presentation>
    </section>
    <tab id="com.ibm.team.workitem.web.inline.default" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.default.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.web.inline.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.workitem.web.inline.riskaction">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.riskaction.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
    </tab>
    <section id="com.ibm.team.workitem.section.timesheetQuickInformation">
        <presentation kind="com.ibm.team.tpt.kind.internal.timesheetEntries"/>
    </section>
    <section id="com.ibm.team.workitem.section.description">
        <presentation attributeId="descriptionc" kind="com.ibm.team.workitem.kind.string"/>
    </section>
    <section id="com.ibm.team.workitem.web.inline.scope.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
    </section>
    <tab id="com.ibm.team.workitem.web.inline.milestone" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.milestone.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.workitem.tab.businessneed_overview" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.businessneed_details" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <tab id="com.ibm.team.workitem.web.inline.scope" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.scope.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.web.inline.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="cabworkdetail" layout="builtInCustomAttributesLayout">
        <section sectionId="Note" slot="left" title="Note"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="left" title="Quick Information"/>
    </tab>
    <section id="com.ibm.team.workitem.web.inline.default.summary">
        <presentation attributeId="com.ibm.team.workitem.attribute.summary" kind="com.ibm.team.workitem.kind.smallhtml">
            <property key="labelVisible" value="true"/>
        </presentation>
    </section>
    <section id="com.ibm.team.workitem.web.inline.milestone.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="dates">
        <presentation attributeId="com.ibm.team.workitem.attribute.timespent" kind="com.ibm.team.apt.kind.internal.timespent"/>
        <presentation attributeId="cabscheduledstartdate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="cabscheduledenddate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="cabactualStartDate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="cabActualEndDate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="cabcompleteddate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="cabEarliestStartDate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="cabRequestedStartDate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="cabRequestedEndDate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="cabTimingReason" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="cabtimespentresolvingcr" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation kind="com.ibm.team.workitem.kind.lineSeparator"/>
        <presentation attributeId="cabstarttime" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="cabtimespentmin" kind="com.ibm.team.apt.kind.internal.timespent"/>
        <presentation attributeId="cabtotaltimespentmin" kind="com.ibm.team.workitem.kind.timeDuration"/>
        <presentation attributeId="cabsubmitter" kind="com.ibm.team.workitem.kind.contributor"/>
        <presentation attributeId="cabsubmitdate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.apt.planPreview.default.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duration" kind="com.ibm.team.apt.kind.internal.estimate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.timespent" kind="com.ibm.team.apt.kind.internal.timespent">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.workitem.section.details.scope">
        <presentation attributeId="tasktype" kind="com.ibm.team.workitem.kind.enumeration" label="Type"/>
        <presentation attributeId="tasknotes" kind="com.ibm.team.workitem.kind.string" label="Change Objective CAB"/>
        <presentation attributeId="taskpriority" kind="com.ibm.team.workitem.kind.enumeration" label="Priority"/>
        <presentation attributeId="taskstatus" kind="com.ibm.team.workitem.kind.string" label="Status Reason"/>
        <presentation attributeId="taskassigneecompany" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="taskassigneeorg" kind="com.ibm.team.workitem.kind.processArea" label="Assignee Group"/>
        <presentation attributeId="taskassignee" kind="com.ibm.team.workitem.kind.item.combo" label="Assignee"/>
        <presentation attributeId="taskplannedstartdate" kind="com.ibm.team.workitem.kind.timestamp" label="Planned Start Date"/>
        <presentation attributeId="taskplannedenddate" kind="com.ibm.team.workitem.kind.timestamp" label="Planned End Date"/>
        <presentation attributeId="taskstarttime" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="taskendtime" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="timestampMode" value="datetimemode"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.creator" kind="com.ibm.team.workitem.kind.contributor">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="cabnote1" kind="com.ibm.team.workitem.kind.string" label="Change Objectives CAB"/>
        <presentation attributeId="class" kind="com.ibm.team.workitem.kind.enumeration" label="Type of Change"/>
        <presentation attributeId="coordinatorgroup" kind="com.ibm.team.workitem.kind.processArea" label="Coordinator Group"/>
        <presentation attributeId="changecoordinator" kind="com.ibm.team.workitem.kind.item.combo" label="Change Coordinator"/>
        <presentation attributeId="cabchangelocation" kind="com.ibm.team.workitem.kind.enumeration" label="Change Location">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="change" kind="com.ibm.team.workitem.kind.string" label="Reason for Change">
            <property key="readonly" value="false"/>
            <property key="labelVisible" value="true"/>
        </presentation>
        <presentation attributeId="cabcategory" kind="com.ibm.team.workitem.kind.enumeration" label="Change Category"/>
        <presentation attributeId="impact" kind="com.ibm.team.workitem.kind.enumeration" label="Impact"/>
        <presentation attributeId="caburgency" kind="com.ibm.team.workitem.kind.enumeration" label="Urgency"/>
        <presentation attributeId="cabpriority" kind="com.ibm.team.workitem.kind.enumeration" label="Priority"/>
        <presentation attributeId="cabrisklevel" kind="com.ibm.team.workitem.kind.enumeration" label="Risk Level"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="manager" kind="com.ibm.team.workitem.kind.processArea" label="Manager Group"/>
        <presentation attributeId="cabchangemanager" kind="com.ibm.team.workitem.kind.item.combo" label="Change Manager"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolutiondate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolver" kind="com.ibm.team.workitem.kind.contributor">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
    </section>
    <tab id="com.ibm.team.apt.planPreview.riskaction" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.riskaction.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="cabcategorization" layout="builtInHLayout">
        <section sectionId="OC" slot="top" title="Operational Categorization">
            <property key="Key" value="Value"/>
        </section>
    </tab>
    <tab id="com.ibm.team.workitem.tab.timesheet" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.timesheet" slot="description" title="Time Tracking"/>
        <section sectionId="com.ibm.team.workitem.section.timesheetQuickInformation" slot="quickInfo" title="Quick Information"/>
    </tab>
    <section id="com.ibm.team.workitem.lightweight.editor.section">
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.summary" kind="com.ibm.team.workitem.kind.smallhtml"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.description" kind="com.ibm.team.workitem.kind.html">
            <property key="small" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.version" kind="com.ibm.team.workitem.kind.internal.deliverable"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
    </section>
    <tab id="com.ibm.team.workitem.editor.risk.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <tab id="com.ibm.team.workitem.web.inline.task" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.task.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.web.inline.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <section id="Note">
        <presentation attributeId="cabnote1" kind="com.ibm.team.workitem.kind.string"/>
    </section>
    <section id="com.ibm.team.workitem.web.inline.section.discussion">
        <presentation id="com.ibm.team.workitem.presentation.discussion" kind="com.ibm.team.workitem.kind.internal.discussion">
            <property key="hideIfCreation" value="true"/>
        </presentation>
    </section>
    <tab id="com.ibm.team.workitem.tab.overview" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.details" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <tab id="com.ibm.team.apt.planPreview.milestone" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.milestone.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <section id="com.ibm.team.apt.planPreview.businessneed.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation kind="com.ibm.team.apt.kind.internal.progress"/>
    </section>
    <section id="com.ibm.team.workitem.web.inline.riskaction.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state"/>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.version" kind="com.ibm.team.workitem.kind.internal.deliverable"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.riskaction.strategy" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
    </section>
    <section id="com.ibm.team.workitem.section.details.scope_duplicate">
        <presentation attributeId="tasktype" kind="com.ibm.team.workitem.kind.enumeration" label="Type"/>
        <presentation attributeId="tasknotes" kind="com.ibm.team.workitem.kind.string" label="Remarks"/>
        <presentation attributeId="taskassigneecompany" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="taskassigneeorg" kind="com.ibm.team.workitem.kind.processArea" label="Assignee Group"/>
        <presentation attributeId="taskassignee" kind="com.ibm.team.workitem.kind.item.combo" label="Assignee"/>
        <presentation attributeId="taskstarttime" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="taskendtime" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="timestampMode" value="datetimemode"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation kind="com.ibm.team.workitem.kind.workflow.state" label="Status">
            <property key="labelVisible" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.creator" kind="com.ibm.team.workitem.kind.contributor">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="cabnote1" kind="com.ibm.team.workitem.kind.string"/>
        <presentation attributeId="class" kind="com.ibm.team.workitem.kind.enumeration" label="Class"/>
        <presentation attributeId="coordinatorgroup" kind="com.ibm.team.workitem.kind.processArea" label="Coordinator Group"/>
        <presentation attributeId="changecoordinator" kind="com.ibm.team.workitem.kind.item.combo" label="Change Coordinator"/>
        <presentation attributeId="cabchangelocation" kind="com.ibm.team.workitem.kind.enumeration" label="Change Location">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="changereason" kind="com.ibm.team.workitem.kind.enumeration" label="Change Reason"/>
        <presentation attributeId="cabcategory" kind="com.ibm.team.workitem.kind.enumeration" label="Category"/>
        <presentation attributeId="impact" kind="com.ibm.team.workitem.kind.enumeration" label="Impact"/>
        <presentation attributeId="caburgency" kind="com.ibm.team.workitem.kind.enumeration" label="Urgency"/>
        <presentation attributeId="cabpriority" kind="com.ibm.team.workitem.kind.enumeration" label="Priority"/>
        <presentation attributeId="cabrisklevel" kind="com.ibm.team.workitem.kind.enumeration" label="Risk Level"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="manager" kind="com.ibm.team.workitem.kind.processArea" label="Manager Group"/>
        <presentation attributeId="cabchangemanager" kind="com.ibm.team.workitem.kind.item.combo" label="Change Manager"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolutiondate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolver" kind="com.ibm.team.workitem.kind.contributor">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.internal.links">
            <property key="linkTypeFilter" value="[com.ibm.team.workitem.linktype.parentworkitem]"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
    </section>
    <section id="com.ibm.team.workitem.section.milestone_details">
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.creationdate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.creator" kind="com.ibm.team.workitem.kind.contributor">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.workitem.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.version" kind="com.ibm.team.workitem.kind.internal.deliverable"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.creationdate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.creator" kind="com.ibm.team.workitem.kind.contributor">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duration" kind="com.ibm.team.apt.kind.internal.estimate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.timespent" kind="com.ibm.team.apt.kind.internal.timespent">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation id="com.ibm.team.apt.presentation.plannedtime" kind="com.ibm.team.apt.kind.internal.plannedtime"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolutiondate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolver" kind="com.ibm.team.workitem.kind.contributor">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
    </section>
    <section id="com.ibm.team.workitem.header.default">
        <presentation attributeId="com.ibm.team.workitem.attribute.summary" kind="com.ibm.team.workitem.kind.smallhtml"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation description="This is the current status of CR" kind="com.ibm.team.workitem.kind.staticRichText">
            <property key="richText" value="&lt;b&gt;CR- Status&lt;/b&gt;"/>
            <property key="text" value="Status"/>
        </presentation>
        <presentation description="Current status of CR" kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="labelVisible" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution">
            <property key="labelVisible" value="false"/>
        </presentation>
    </section>
    <section id="com.ibm.team.apt.planPreview.scope.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
    </section>
    <tab id="com.ibm.team.workitem.editor.milestone.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <section id="com.ibm.team.apt.planPreview.milestone.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.apt.planPreview.riskaction.section.details">
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.riskaction.strategy" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duration" kind="com.ibm.team.apt.kind.internal.estimate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.timespent" kind="com.ibm.team.apt.kind.internal.timespent">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <tab id="com.ibm.team.workitem.tab.history" layout="builtInHistoryLayout">
        <section sectionId="com.ibm.team.workitem.section.history" title="History"/>
    </tab>
    <section id="com.ibm.team.workitem.web.inline.task.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="OC">
        <presentation attributeId="cabtier1sw" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="cabtier2sw" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="cabtier3sw" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation kind="com.ibm.team.workitem.kind.lineSeparator"/>
        <presentation kind="com.ibm.team.workitem.kind.internal.quickInformation">
            <property key="quickinformationConfiguration" value="com.ibm.team.workitem.configuration.quickinformation.default"/>
        </presentation>
    </section>
    <tab id="com.ibm.team.workitem.editor.default.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <tab id="com.ibm.team.apt.planPreview.risk" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.risk.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.apt.planPreview.businessneed" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.businessneed.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <section id="com.ibm.team.workitem.web.inline.risk.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target" label="Identified For"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.riskcategory" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.identificationdate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probability" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.impact" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.exposure" kind="com.ibm.team.workitem.kind.long">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.precision" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.consequencecost" kind="com.ibm.team.tpt.kind.cost"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probabilitycost" kind="com.ibm.team.tpt.kind.cost">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.occurrencedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.workitem.web.inline.businessneed.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
    </section>
    <section id="com.ibm.team.apt.planPreview.default.section.summary">
        <presentation attributeId="com.ibm.team.workitem.attribute.summary" kind="com.ibm.team.workitem.kind.smallhtml">
            <property key="labelVisible" value="true"/>
        </presentation>
    </section>
    <tab id="com.ibm.team.workitem.tab.customAttributes" layout="builtInCustomAttributesLayout">
        <section sectionId="com.ibm.team.workitem.section.collector_small" slot="left" title="Deatils of Testing Done">
            <property key="width" value="small"/>
            <property key="autocollect" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.collector_wide" slot="right" title="Miscellaneous">
            <property key="width" value="wide"/>
            <property key="autocollect" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.apt.planPreview.default" layout="builtInHLayout">
        <section sectionId="com.ibm.team.apt.planPreview.default.section.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.apt.planPreview.default.section.details" slot="left" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <section id="com.ibm.team.workitem.section.subscribers">
        <presentation attributeId="com.ibm.team.workitem.attribute.subscriptions" kind="com.ibm.team.workitem.kind.contributorList"/>
        <presentation kind="com.ibm.team.workitem.kind.internal.discussion"/>
        <presentation kind="com.ibm.team.workitem.kind.internal.quickInformation">
            <property key="quickinformationConfiguration" value="com.ibm.team.workitem.configuration.quickinformation.default"/>
        </presentation>
    </section>
    <tab id="cabtask" layout="builtInCustomAttributesLayout">
        <section sectionId="com.ibm.team.workitem.section.subscribers" slot="right" title="Subscriber"/>
        <section sectionId="com.ibm.team.workitem.section.links" slot="left" title="Task"/>
    </tab>
    <tab id="com.ibm.team.workitem.editor.scope.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <tab id="com.ibm.team.workitem.tab.milestone_overview" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.milestone_details" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <section id="com.ibm.team.workitem.section.history">
        <presentation id="com.ibm.team.workitem.presentation.history" kind="com.ibm.team.workitem.kind.internal.history"/>
    </section>
    <section id="com.ibm.team.workitem.section.details.riskaction">
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.version" kind="com.ibm.team.workitem.kind.internal.deliverable"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.riskaction.strategy" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.creationdate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.creator" kind="com.ibm.team.workitem.kind.contributor">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duration" kind="com.ibm.team.apt.kind.internal.estimate"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.timespent" kind="com.ibm.team.apt.kind.internal.timespent">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.apt.attribute.constrainttype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.apt.attribute.constraintdate" kind="com.ibm.team.apt.kind.internal.constraintdate"/>
        <presentation id="com.ibm.team.apt.presentation.plannedtime" kind="com.ibm.team.apt.kind.internal.plannedtime"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.duedate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolutiondate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolver" kind="com.ibm.team.workitem.kind.contributor">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
    </section>
    <section id="com.ibm.team.workitem.section.details.risk">
        <presentation attributeId="com.ibm.team.workitem.attribute.workitemtype" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.creationdate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.creator" kind="com.ibm.team.workitem.kind.contributor">
            <property key="readonly" value="true"/>
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation id="com.ibm.team.workitem.presentation.teamArea" kind="com.ibm.team.workitem.kind.internal.teamarea"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.tags" kind="com.ibm.team.workitem.kind.internal.tags"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target" label="Identified For"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolutiondate" kind="com.ibm.team.workitem.kind.timestamp">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.attribute.resolver" kind="com.ibm.team.workitem.kind.contributor">
            <property key="hideIfEmpty" value="true"/>
            <property key="readonly" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probability" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.impact" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.exposure" kind="com.ibm.team.workitem.kind.long">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation id="com.ibm.team.tpt.presentation.risk.matrix" kind="com.ibm.team.tpt.risk.kind.matrix"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.precision" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.consequencecost" kind="com.ibm.team.tpt.kind.cost"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.probabilitycost" kind="com.ibm.team.tpt.kind.cost">
            <property key="readonly" value="true"/>
        </presentation>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.riskcategory" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.identificationdate" kind="com.ibm.team.workitem.kind.timestamp"/>
        <presentation attributeId="com.ibm.team.workitem.workItemType.risk.occurrencedate" kind="com.ibm.team.workitem.kind.timestamp"/>
    </section>
    <section id="com.ibm.team.workitem.section.approvals">
        <presentation id="com.ibm.team.workitem.presentation.approvals" kind="com.ibm.team.workitem.kind.internal.approvals">
            <property key="toBeLinkedPartId" value="com.ibm.team.workitem.presentation.discussion"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.internal.links">
            <property key="linkTypeFilter" value="[com.ibm.team.workitem.linktype.parentworkitem]"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.internal.attachments"/>
    </section>
    <tab id="com.ibm.team.workitem.tab.overview.riskaction" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.details.riskaction" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <section id="com.ibm.team.workitem.web.inline.default.details">
        <presentation kind="com.ibm.team.workitem.kind.workflow.state">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.workflow.resolution">
            <property key="hideIfCreation" value="true"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.severity" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.version" kind="com.ibm.team.workitem.kind.internal.deliverable"/>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.category" kind="com.ibm.team.workitem.kind.internal.category"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.owner" kind="com.ibm.team.workitem.kind.contributor">
            <property key="warningMessage" value="Owner does not belong to Team Area"/>
        </presentation>
        <presentation kind="com.ibm.team.workitem.kind.separator"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.priority" kind="com.ibm.team.workitem.kind.enumeration"/>
        <presentation attributeId="com.ibm.team.workitem.attribute.target" kind="com.ibm.team.workitem.kind.internal.target"/>
    </section>
    <tab id="com.ibm.team.workitem.lightweight.editor" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.lightweight.editor.section" title="Lightweight Creator"/>
    </tab>
    <tab id="com.ibm.team.workitem.editor.riskaction.internalHeader" layout="internalHeader">
        <section sectionId="com.ibm.team.workitem.header.default" title="none"/>
    </tab>
    <tab id="com.ibm.team.workitem.web.inline.businessneed" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.businessneed.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.workitem.tab.overview.scope_duplicate" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.details.scope_duplicate" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
    <tab id="com.ibm.team.workitem.web.inline.risk" layout="builtInHLayout">
        <section sectionId="com.ibm.team.workitem.web.inline.default.summary" slot="top" title="Summary">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.risk.details" slot="left" title="Details">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.web.inline.section.quickinformation" slot="right" title="Quick Information">
            <property key="noHeader" value="true"/>
        </section>
        <section sectionId="com.ibm.team.workitem.section.description" slot="bottom" title="Description"/>
        <section sectionId="com.ibm.team.workitem.web.inline.section.discussion" slot="bottom" title="Discussion">
            <property key="expanded" value="false"/>
        </section>
    </tab>
    <tab id="com.ibm.team.workitem.tab.overview.risk" layout="builtInOverviewLayout">
        <section sectionId="com.ibm.team.workitem.section.details.risk" slot="details" title="Details"/>
        <section sectionId="com.ibm.team.workitem.section.quickinformation" slot="quickInfo" title="Quick Information"/>
        <section sectionId="com.ibm.team.workitem.section.description" slot="description" title="Description"/>
        <section sectionId="com.ibm.team.workitem.section.discussion" slot="discussion" title="Discussion"/>
    </tab>
</configuration-data>

<configuration-data final="false" id="com.ibm.team.workitem.editor.configuration.workitemTypeEditorIdBinding" xmlns="http://com.ibm.team.workitem.editor/workitemTypeEditorIdBinding">
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview" workitemType="defect"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.scope" workitemType="task"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.scope" workitemType="projectchangerequest"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.scope" workitemType="issue"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.businessneed" workitemType="com.ibm.team.workitem.workItemType.businessneed"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.milestone" workitemType="com.ibm.team.workitem.workItemType.milestone"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.risk" workitemType="com.ibm.team.workitem.workItemType.risk"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.riskaction" workitemType="com.ibm.team.workitem.workItemType.riskaction"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="defect"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="task"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="projectchangerequest"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="issue"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="com.ibm.team.workitem.workItemType.businessneed"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="com.ibm.team.workitem.workItemType.milestone"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="com.ibm.team.workitem.workItemType.risk"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.lightweight.editor.section" target="com.ibm.team.workitem.editor.lightweight" workitemType="com.ibm.team.workitem.workItemType.riskaction"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.default" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="defect"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.default" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="task"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.scope" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="projectchangerequest"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.scope" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="issue"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.businessneed" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="com.ibm.team.workitem.workItemType.businessneed"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.milestone" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="com.ibm.team.workitem.workItemType.milestone"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.risk" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="com.ibm.team.workitem.workItemType.risk"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.apt.planPreview.riskaction" target="com.ibm.team.apt.ui.internal.previewPane" workitemType="com.ibm.team.workitem.workItemType.riskaction"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.default" target="com.ibm.team.workitem.web.inline" workitemType="defect"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.task" target="com.ibm.team.workitem.web.inline" workitemType="task"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.scope" target="com.ibm.team.workitem.web.inline" workitemType="projectchangerequest"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.scope" target="com.ibm.team.workitem.web.inline" workitemType="issue"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.businessneed" target="com.ibm.team.workitem.web.inline" workitemType="com.ibm.team.workitem.workItemType.businessneed"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.milestone" target="com.ibm.team.workitem.web.inline" workitemType="com.ibm.team.workitem.workItemType.milestone"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.risk" target="com.ibm.team.workitem.web.inline" workitemType="com.ibm.team.workitem.workItemType.risk"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.web.inline.riskaction" target="com.ibm.team.workitem.web.inline" workitemType="com.ibm.team.workitem.workItemType.riskaction"/>
    <workitemTypeEditorIdBinding editorId="com.ibm.team.workitem.editor.scope.cab" workitemType="cab"/>
</configuration-data>

<configuration-data final="false" id="com.ibm.team.workitem.configuration.enumerations" xmlns="http://com.ibm.team.workitem/enumerations">
    <enumeration attributeTypeId="priority" name="Priority">
        <literal icon="processattachment:/enumeration/unassigned.gif" id="priority.literal.l1" name="Unassigned"/>
        <literal default="true" icon="processattachment:/enumeration/low.gif" id="priority.literal.l2" name="Low"/>
        <literal icon="processattachment:/enumeration/medium.gif" id="priority.literal.l3" name="Medium"/>
        <literal icon="processattachment:/enumeration/high.gif" id="priority.literal.l4" name="High"/>
        <literal icon="processattachment:/enumeration/critical.gif" id="priority.literal.l6" name="Critical" null="true"/>
    </enumeration>
    <enumeration attributeTypeId="severity" name="Severity">
        <literal icon="processattachment:/enumeration/unassigned2.gif" id="severity.literal.l1" name="Unclassified"/>
        <literal icon="processattachment:/enumeration/minor.gif" id="severity.literal.l2" name="Minor"/>
        <literal default="true" icon="processattachment:/enumeration/normal.gif" id="severity.literal.l3" name="Normal"/>
        <literal icon="processattachment:/enumeration/major.gif" id="severity.literal.l4" name="Major"/>
        <literal icon="processattachment:/enumeration/critical.gif" id="severity.literal.l5" name="Critical"/>
        <literal icon="processattachment:/enumeration/blocker.gif" id="severity.literal.l6" name="Blocker"/>
    </enumeration>
    <enumeration attributeTypeId="impact" name="Impact">
        <literal default="true" icon="processattachment:/enumeration/minor.gif" id="risk.impact.literal.l20" name="20% - Minor"/>
        <literal icon="processattachment:/enumeration/normal.gif" id="risk.impact.literal.l40" name="40% - Normal"/>
        <literal icon="processattachment:/enumeration/major.gif" id="risk.impact.literal.l60" name="60% - Major"/>
        <literal icon="processattachment:/enumeration/critical.gif" id="risk.impact.literal.l80" name="80% - Critical"/>
        <literal icon="processattachment:/enumeration/blocker.gif" id="risk.impact.literal.l100" name="100% - Blocker"/>
    </enumeration>
    <enumeration attributeTypeId="probability" name="Probability">
        <literal default="true" id="risk.probability.literal.l20" name="20% - Very Low"/>
        <literal id="risk.probability.literal.l40" name="40% - Low"/>
        <literal id="risk.probability.literal.l60" name="60% - Moderate"/>
        <literal id="risk.probability.literal.l80" name="80% - High"/>
        <literal id="risk.probability.literal.l100" name="100% - Very High"/>
    </enumeration>
    <enumeration attributeTypeId="precision" name="Precision">
        <literal icon="processattachment:/enumeration/low.gif" id="risk.precision.literal.l1" name="Low"/>
        <literal default="true" icon="processattachment:/enumeration/medium.gif" id="risk.precision.literal.l2" name="Medium"/>
        <literal icon="processattachment:/enumeration/high.gif" id="risk.precision.literal.l3" name="High"/>
    </enumeration>
    <enumeration attributeTypeId="constraintEnum" name="Constraint">
        <literal default="true" id="constraintEnum.literal.asap" name="As Soon As Possible"/>
        <literal id="constraintEnum.literal.snet" name="Start No Earlier Than"/>
        <literal id="constraintEnum.literal.fnlt" name="Finish No Later Than"/>
    </enumeration>
    <enumeration attributeTypeId="actionstrategy" name="Action Strategy">
        <literal default="true" id="actionstrategy.literal.l1" name="Mitigation"/>
        <literal id="actionstrategy.literal.l2" name="Contingency"/>
        <literal id="actionstrategy.literal.l3" name="Avoidance"/>
    </enumeration>
    <enumeration attributeTypeId="riskcategory" name="Risk Category">
        <literal default="true" id="riskcategory.literal.l1" name="Socio-cultural"/>
        <literal id="riskcategory.literal.l2" name="Political"/>
        <literal id="riskcategory.literal.l3" name="Economic"/>
        <literal id="riskcategory.literal.l4" name="Competitive"/>
        <literal id="riskcategory.literal.l5" name="Technology"/>
        <literal id="riskcategory.literal.l6" name="Regulatory/legal"/>
        <literal id="riskcategory.literal.l7" name="Uncertainty/risk"/>
        <literal id="riskcategory.literal.l8" name="Market"/>
    </enumeration>
    <enumeration attributeTypeId="class" name="Class">
        <literal default="true" id="class.literal.l13" name="ETL/Job Realted Changes"/>
        <literal id="class.literal.l14" name="Application Level Changes"/>
        <literal id="class.literal.l15" name="Infrastructure Level Changes"/>
        <literal id="class.literal.l16" name="Database Level Changes"/>
    </enumeration>
    <enumeration attributeTypeId="changereason" name="Change Reason">
        <literal id="changereason.literal.l1" name="Fix/Repair"/>
        <literal id="changereason.literal.l2" name="New Functionality"/>
        <literal id="changereason.literal.l3" name="Maintenance"/>
        <literal id="changereason.literal.l4" name="Upgrade"/>
        <literal default="true" id="changereason.literal.l5" name="Other"/>
        <literal id="changereason.literal.l6" name="None"/>
    </enumeration>
    <enumeration attributeTypeId="urgency" name="Urgency">
        <literal id="urgency.literal.l2" name="1-High"/>
        <literal id="urgency.literal.l3" name="2-Medium"/>
        <literal id="urgency.literal.l4" name="3-Moderate"/>
        <literal default="true" id="urgency.literal.l1" name="4-Low"/>
    </enumeration>
    <enumeration attributeTypeId="risklevel" name="Risk Level">
        <literal id="risklevel.literal.l2" name="Risk Level 1"/>
        <literal id="risklevel.literal.l4" name="Risk Level 2"/>
        <literal id="risklevel.literal.l6" name="Risk Level 3"/>
        <literal id="risklevel.literal.l8" name="Risk Level 4"/>
        <literal id="risklevel.literal.l10" name="Risk Level 5"/>
        <literal default="true" id="risklevel.literal.l12" name="None"/>
    </enumeration>
    <enumeration attributeTypeId="cabimpact" name="Impact">
        <literal default="true" id="cabimpact.literal.l7" name="4-Minor/Localized"/>
        <literal id="cabimpact.literal.l9" name="3-Moderate/Limited"/>
        <literal id="cabimpact.literal.l11" name="2-Significant/Large"/>
        <literal id="cabimpact.literal.l13" name="1-Extensive/Widespread"/>
    </enumeration>
    <enumeration attributeTypeId="cabstatus" name="Status">
        <literal default="true" id="cabstatus.literal.l2" name="Draft"/>
        <literal id="cabstatus.literal.l4" name="Pending"/>
        <literal id="cabstatus.literal.l6" name="Cancelled"/>
        <literal id="cabstatus.literal.l8" name="Request For Authorization"/>
    </enumeration>
    <enumeration attributeTypeId="cabmanagergroup" name="Manager Group">
        <literal default="true" id="cabmanagergroup.literal.l2" name="CC"/>
        <literal id="cabmanagergroup.literal.l4" name="CC-GITC-Analytics"/>
        <literal id="cabmanagergroup.literal.l6" name="CC-GITC-CRM"/>
        <literal id="cabmanagergroup.literal.l8" name="CC-GITC-Core Banking-Tech Operations"/>
        <literal id="cabmanagergroup.literal.l10" name="CC-GITC-E&amp;TA"/>
        <literal id="cabmanagergroup.literal.l12" name="CC-GITC-EIS"/>
        <literal id="cabmanagergroup.literal.l14" name="CC-GITC-F&amp;OA"/>
        <literal id="cabmanagergroup.literal.l16" name="CC-GITC-HRMS"/>
        <literal id="cabmanagergroup.literal.l18" name="CC-GITC-INB"/>
        <literal id="cabmanagergroup.literal.l20" name="CC-GITC-IT Retail Loans"/>
        <literal id="cabmanagergroup.literal.l22" name="CC-GITC-IT-ATM"/>
        <literal id="cabmanagergroup.literal.l24" name="CC-GITC-IT-HR"/>
        <literal id="cabmanagergroup.literal.l26" name="CC-GITC-IT-Innovation &amp; Software Factory"/>
        <literal id="cabmanagergroup.literal.l28" name="CC-GITC-IT-PS"/>
        <literal id="cabmanagergroup.literal.l30" name="CC-GITC-IT-TSS (Global Markets)"/>
        <literal id="cabmanagergroup.literal.l32" name="CC-GITC-MAB IT_OPS"/>
        <literal id="cabmanagergroup.literal.l34" name="CC-GITC-MSMB"/>
        <literal id="cabmanagergroup.literal.l36" name="CC-GITC-Network"/>
        <literal id="cabmanagergroup.literal.l38" name="CC-GITC-PE1"/>
        <literal id="cabmanagergroup.literal.l40" name="CC-GITC-PE2"/>
        <literal id="cabmanagergroup.literal.l42" name="CC-GITC-RFAA"/>
        <literal id="cabmanagergroup.literal.l44" name="CC-GITC-SP2"/>
        <literal id="cabmanagergroup.literal.l46" name="Data Warehouse"/>
        <literal id="cabmanagergroup.literal.l48" name="GITC"/>
        <literal id="cabmanagergroup.literal.l50" name="LHO-FRT TDS"/>
    </enumeration>
    <enumeration attributeTypeId="cabchange" name="Change Location Company"/>
    <enumeration attributeTypeId="caboperationalcattier1" name="Tier 1+">
        <literal default="true" id="caboperationalcattier1.literal.l1" name="Data Warehouse"/>
    </enumeration>
    <enumeration attributeTypeId="cabOCTier2" name="Tier 2">
        <literal default="true" id="cabOCTier2.literal.l1" name="Others"/>
    </enumeration>
    <enumeration attributeTypeId="cabOCtier3" name="Tier 3">
        <literal default="true" id="cabOCtier3.literal.l1" name="Others"/>
    </enumeration>
    <enumeration attributeTypeId="cabtimingreason" name="Timing Reason"/>
    <enumeration attributeTypeId="cabtype" name="Type">
        <literal default="true" id="cabtype.literal.l2" name="Manual"/>
    </enumeration>
    <enumeration attributeTypeId="cabAssigneeCompany" name="Assignee Company">
        <literal default="true" id="cabAssigneeCompany.literal.l2" name="State Bank of India"/>
    </enumeration>
    <enumeration attributeTypeId="cabchangelocation" name="Change Location">
        <literal default="true" id="cabchangelocation.literal.l2" name="GITC-DWH"/>
    </enumeration>
    <enumeration attributeTypeId="cabcategory" name="Category">
        <literal default="true" id="cabcategory.literal.l4" name="Standard"/>
    </enumeration>
    <enumeration attributeTypeId="testdone" name="Test Done">
        <literal default="true" id="testdone.literal.l2" name="Yes"/>
        <literal id="testdone.literal.l4" name="No"/>
        <literal id="testdone.literal.l6" name="NA"/>
    </enumeration>
    <enumeration attributeTypeId="Testsuccessful" name="Test Successful">
        <literal default="true" id="Testsuccessful.literal.l2" name="Yes"/>
        <literal id="Testsuccessful.literal.l4" name="No"/>
        <literal id="Testsuccessful.literal.l6" name="NA"/>
    </enumeration>
    <enumeration attributeTypeId="ProblemEncountered" name="Problem Encountered">
        <literal default="true" id="ProblemEncountered.literal.l2" name="Yes"/>
        <literal id="ProblemEncountered.literal.l6" name="NA"/>
        <literal id="ProblemEncountered.literal.l4" name="No"/>
    </enumeration>
    <enumeration attributeTypeId="rollback" name="Roll-back Done">
        <literal default="true" id="rollback.literal.l2" name="Yes"/>
        <literal id="rollback.literal.l4" name="No"/>
        <literal id="rollback.literal.l6" name="NA"/>
    </enumeration>
</configuration-data>

<!-- Shared Queries -->
<configuration-data id="com.ibm.team.workitem.configuration.queries" xmlns="http://com.ibm.team.workitem/queries">
<query description="A business need covers a feature or API that is to be added to the product or some aspect of the product that is to be improved. A business need explains the work at a suitably high enough level so that everyone can readily understand what the work is without having to understand the nitty-gritty detail." name="Business Needs" id="com.ibm.team.workitem.queries.predefined.businessNeeds">
                <select>
                    <column attribute="id"/>
                    <column attribute="internalState"/>
                    <column attribute="summary"/>
                    <column attribute="owner"/>
                </select>
                <where>
                    <condition operator="contains">
                        <attribute name="workItemType"/>
                        <value content="com.ibm.team.workitem.workItemType.businessneed" type="type"/>
                    </condition>
                </where>
                <orderBy attribute="internalState" direction="desc"/>
            </query>   
            <query description="A milestone is a reference point that marks a major event in a project and is used to monitor the project's progress." name="Milestones" id="com.ibm.team.workitem.queries.predefined.milestones">
                <select>
                    <column attribute="id"/>
                    <column attribute="internalState"/>
                    <column attribute="summary"/>
                    <column attribute="owner"/>
                </select>
                <where>
                    <condition operator="contains">
                        <attribute name="workItemType"/>
                        <value content="com.ibm.team.workitem.workItemType.milestone" type="type"/>
                    </condition>
                </where>
                <orderBy attribute="internalState" direction="desc"/>
            </query>   
<query name="All Risks" description="Lists all Risks" id="com.ibm.team.workitem.queries.predefined.allRisks">
<select>
<column attribute="id"/>
<column attribute="internalState"/>
<column attribute="summary"/>
<column attribute="owner"/>
</select>
<where>
<condition operator="is">
<attribute name="workItemType"/>
<value content="com.ibm.team.workitem.workItemType.risk" type="type"/>
</condition>
</where>
<orderBy attribute="internalState" direction="desc"/>
</query>

<query description="Lists all open Risks" name="Open Risks" id="com.ibm.team.workitem.queries.predefined.openRisks">
<select>
<column attribute="id"/>
<column attribute="internalState"/>
<column attribute="summary"/>
<column attribute="owner"/>
</select>
<where>
<and>
<condition operator="is">
<attribute name="workItemType"/>
<value content="com.ibm.team.workitem.workItemType.risk" type="type"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable arguments="open or in progress" type="state"/>
</condition>
</and>
</where>
<orderBy attribute="id" direction="desc"/>
</query>
<query description="Lists all open Risk Actions" name="Open Risk Actions" id="com.ibm.team.workitem.queries.predefined.openRiskActions">
<select>
<column attribute="id"/>
<column attribute="internalState"/>
<column attribute="summary"/>
<column attribute="owner"/>
</select>
<where>
<and>
<condition operator="is">
<attribute name="workItemType"/>
<value content="com.ibm.team.workitem.workItemType.riskaction" type="type"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable arguments="open or in progress" type="state"/>
</condition>
</and>
</where>
<orderBy attribute="id" direction="desc"/>
</query>
<query description="Lists all open Issues" name="Open Issues" id="com.ibm.team.workitem.queries.predefined.openIssues">
<select>
<column attribute="id"/>
<column attribute="internalState"/>
<column attribute="summary"/>
<column attribute="owner"/>
</select>
<where>
<and>
<condition operator="is">
<attribute name="workItemType"/>
<value content="issue" type="type"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable arguments="open or in progress" type="state"/>
</condition>
</and>
</where>
<orderBy attribute="id" direction="desc"/>
</query>
<query description="Lists all Project Change Requests" name="Open Project Change Requests" id="com.ibm.team.workitem.queries.predefined.openProjectChangeRequests">
<select>
<column attribute="id"/>
<column attribute="internalState"/>
<column attribute="summary"/>
<column attribute="owner"/>
</select>
<where>
<and>
<condition operator="is">
<attribute name="workItemType"/>
<value content="projectchangerequest" type="type"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable arguments="open or in progress" type="state"/>
</condition>
</and>
</where>
<orderBy attribute="id" direction="desc"/>
</query>
<query name="Open created by me" description="Work items I have created which are open or in progress" id="com.ibm.team.workitem.queries.predefined.openCreated">
<where>
<and>
<condition operator="is">
<attribute name="creator"/>
<variable type="currentUser"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="open or in progress"/>
</condition>
</and>
</where>
</query>
<query name="Closed created by me" description="Work items I have created which have been resolved" id="com.ibm.team.workitem.queries.predefined.closedCreated">
<where>
<and>
<condition operator="is">
<attribute name="creator"/>
<variable type="currentUser"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="closed"/>
</condition>
</and>
</where>
</query>
<query name="Resolved by me" description="Work items I have resolved" id="com.ibm.team.workitem.queries.predefined.myResolved">
<where>
<and>
<condition operator="is">
<attribute name="resolver"/>
<variable type="currentUser"/>
</condition>
</and>
</where>
</query>
<query name="Open subscribed by me" description="My subscriptions to open or in progress work items" id="com.ibm.team.workitem.queries.predefined.openSubscribed">
<where>
<and>
<condition operator="containing">
<attribute name="internalSubscriptions"/>
<variable type="currentUser"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="open or in progress"/>
</condition>
</and>
</where>
</query>
<query name="Closed subscribed by me" description="My subscriptions to resolved work items" id="com.ibm.team.workitem.queries.predefined.closedSubscribed">
<where>
<and>
<condition operator="containing">
<attribute name="internalSubscriptions"/>
<variable type="currentUser"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="closed"/>
</condition>
</and>
</where>
</query>
<query name="Open assigned to me (current milestone)" description="To do list for the current milestone" id="com.ibm.team.workitem.queries.predefined.myOpenCurrent">
<where>
<and>
<condition operator="is">
<attribute name="owner"/>
<variable type="currentUser"/>
</condition>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="open or in progress"/>
</condition>
<condition operator="is">
<attribute name="target"/>
<variable type="current milestone"/>
</condition>
</and>
</where>
</query>
<query name="Recently modified" description="Modified in the last 12 hours" id="com.ibm.team.workitem.queries.predefined.recentlyModified">
<where>
<condition operator="after">
<attribute name="modified"/>
<variable type="now" arguments="-12h"/>
</condition>
</where>
<orderBy attribute="modified" direction="desc"/>
</query>
<query name="Recently modified by me" description="Work Items I have modified in the last 12 hours" id="com.ibm.team.workitem.queries.predefined.myRecentlyModified">
<where>
<and>
<condition operator="after">
<attribute name="modified"/>
<variable type="now" arguments="-12h"/>
</condition>
<condition operator="is">
<attribute name="modifiedBy"/>
<variable type="currentUser"/>
</condition>
</and>
</where>
<orderBy attribute="modified" direction="desc"/>
</query>
<query name="Recently created by me" description="Work Items I have created in the last 12 hours" id="com.ibm.team.workitem.queries.predefined.myRecentlyCreated">
<where>
<and>
<condition operator="after">
<attribute name="creationDate"/>
<variable type="now" arguments="-12h"/>
</condition>
<condition operator="is">
<attribute name="creator"/>
<variable type="currentUser"/>
</condition>
</and>
</where>
<orderBy attribute="creationDate" direction="desc"/>
</query>
<query name="My current work" description="Work Items in progress and assigned to me" id="com.ibm.team.workitem.queries.predefined.myInProgress">
<where>
<and>
<condition operator="is">
<attribute name="internalState"/>
<variable type="state" arguments="progress"/>
</condition>
<condition operator="is">
<attribute name="owner"/>
<variable type="currentUser"/>
</condition>
</and>
</where>
<orderBy attribute="id" direction="desc"/>
</query>
<query name="Recently closed" description="Closed in the last 12 hours" id="com.ibm.team.workitem.queries.predefined.recentlyClosed">
<where>
<condition operator="after">
<attribute name="resolutionDate"/>
<variable type="now" arguments="-12h"/>
</condition>
</where>
<orderBy attribute="resolutionDate" direction="desc"/>
</query>
<query name="Pending approvals for me" description="Pending requests for approvals or reviews that involve me" id="com.ibm.team.workitem.queries.predefined.pendingApprovals">
<where>
<condition operator="pending by">
<attribute name="internalApprovals"/>
<variable type="currentUser"/>
</condition>
</where>
</query>

<query description="All open Project Change Request workitems that are assigned to me" name="Project Change Requests open assigned to me" id="com.ibm.team.workitem.queries.predefined.myOpenCRs" type="com.ibm.team.workitem.workItemType">
    <select/>
    <where>
        <and>
            <or>
                <condition operator="is">
                    <attribute name="owner"/>
                    <variable type="currentUser"/>
                </condition>
            </or>
            <or>
                <condition operator="is">
                    <attribute name="internalState"/>
                    <value content="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s1" type="smallString"/>
                </condition>
                <condition operator="is">
                    <attribute name="internalState"/>
                    <value content="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s7" type="smallString"/>
                </condition>
                <condition operator="is">
                    <attribute name="internalState"/>
                    <value content="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s8" type="smallString"/>
                </condition>
            </or>
            <or>
                <condition operator="is">
                    <attribute name="workItemType"/>
                    <value content="projectchangerequest" type="type"/>
                </condition>
            </or>
        </and>
    </where>
</query>
</configuration-data>
        <configuration-data xmlns="http://com.ibm.team.dashboard/templates" id="com.ibm.team.dashboard.configuration.templates">
            <dashboard-template title="${scope}" type="project">
                <page title="General">
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.welcome" trim="orange"/>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.customize" trim="gold">
                            <preference id="hide-templates" value="true"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.description" title="Project Description" trim="blue"/>
                    </column>
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.teams" trim="blue"/>
                        <viewlet id="com.ibm.team.workitem.viewlet.queries" title="${scope} Queries" trim="blue">
                            <memento>
                                <property name="queryStringIds" type="xsd:string">
                                    <value>com.ibm.team.workitem.queries.predefined.recentlyCreated</value>
                                    <value>com.ibm.team.workitem.queries.predefined.recentlyModified</value>
                                    <value>com.ibm.team.workitem.queries.predefined.recentlyClosed</value>
                                    <value>com.ibm.team.workitem.queries.predefined.incoming</value>
                                </property>
                            </memento>
                        </viewlet>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.bookmarks" title="Useful Links" trim="blue">
                            <memento>
                                <property name="bookmarks" type="xsd:string">
                                    <memento>
                                        <property name="title" type="xsd:string">Tester</property>
                                        <property name="href" type="xsd:string">http://eclipse.org</property>
                                        <property name="id" type="int">1</property>
                                        <property name="category" type="xsd:string">technology</property>
                                        <property name="description" type="xsd:string">Eclipse community site</property>
                                    </memento>
                                    <memento>
                                        <property name="title" type="xsd:string">Jazz</property>
                                        <property name="href" type="xsd:string">http://jazz.net</property>
                                        <property name="id" type="int">2</property>
                                        <property name="category" type="xsd:string">technology</property>
                                        <property name="description" type="xsd:string">Jazz platform community site</property>
                                    </memento>
                                </property>
                                <property name="nextId" type="int">3</property>
                            </memento>
                        </viewlet>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.status" trim="blue"/>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.feed" title="News from Jazz" trim="blue">
                            <preference id="url" value="https://jazz.net/pub/community/news/feed.rss?externalize=true"/>
                        </viewlet>
                    </column>
                    <column>
                        <viewlet id="com.ibm.team.apt.viewlet.plans" trim="blue">
                            <preference id="defaultLine" value="development"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.workitem.viewlet.statistics" trim="blue">
                            <preference id="presentation" value="pie"/>
                            <preference id="query" value="com.ibm.team.workitem.queries.predefined.recentlyModified"/>
                            <preference id="parameter" value="com.ibm.team.workitem.attribute.category"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.workitem.viewlet.statistics" trim="blue">
                            <preference id="presentation" value="bar"/>
                            <preference id="query" value="com.ibm.team.workitem.queries.predefined.recentlyModified"/>
                            <preference id="parameter" value="com.ibm.team.workitem.attribute.priority"/>
                        </viewlet>
                    </column>
                </page>
            </dashboard-template>
            <dashboard-template title="${scope}" type="team">
                <page title="General">
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.welcome" trim="orange"/>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.customize" trim="gold">
                            <preference id="hide-templates" value="true"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.description" title="Team Description" trim="blue"/>
                    </column>
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.members" trim="blue"/>
                        <viewlet id="com.ibm.team.apt.viewlet.plans" trim="blue"/>
                        <viewlet id="com.ibm.team.build.viewlet.builds" trim="blue"/>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.feed.jazz" title="Events Log" trim="blue">
                            <preference id="items" value="10"/>
                        </viewlet>
                    </column>
                </page>
            </dashboard-template>
            <dashboard-template title="${scope}'s Dashboard" type="contributor" id="contributor">
                <page title="General">
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.welcome" title="Welcome" trim="orange"/>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.customize" trim="gray"/>
                    </column>
                    <column>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.projects">
                        <preference id="showHomeMenuUA" value="true"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.dashboard.viewlets.web.feed" title="My Work Item Changes">
                            <preference id="items" value="5"/>
                            <preference id="url" value="${server-URL}/service/com.ibm.team.repository.common.internal.IFeedService?itemType=WorkItem&amp;user=${current_user}"/>
                        </viewlet>
                    </column>
                    <column>
                        <viewlet id="com.ibm.team.workitem.viewlet.statistics" title="My Work">
                            <preference id="presentation" value="h-bar"/>
                            <preference id="query" value="com.ibm.team.workitem.queries.predefined.myOpenCurrent"/>
                            <preference id="queryCategory" value="${project-item-id}"/>
                            <preference id="parameter" value="com.ibm.team.workitem.attribute.severity"/>
                        </viewlet>
                        <viewlet id="com.ibm.team.workitem.viewlet.queryresults" title="Pending Approvals for Me">
                            <preference id="defaultQuery" value="com.ibm.team.workitem.queries.predefined.pendingApprovals"/>
                            <preference id="queryCategory" value="${project-item-id}"/>
                            <preference id="items" value="5"/>
                            <preference id="secondIcon" value="severity"/>
                        </viewlet>
                    </column>
                </page>
            </dashboard-template>
        </configuration-data>
        <configuration-data id="com.ibm.team.dashboard.configuration.entries" xmlns="http://com.ibm.team.dashboard/entries">
          <viewlet-entry 
            category="com.ibm.team.dashboard.viewlets.web.feeds"
title="News from Jazz"
            icon="https://jazz.net/favicon.ico"
            preview="com.ibm.team.dashboard.viewlets.service/graphics/feeds/images/preview-jazz-news.png"
viewlet-id="com.ibm.team.dashboard.viewlets.web.feed">
<description>
Latest news from jazz.net web site.
</description>
          </viewlet-entry>  
          <viewlet-entry 
            category="com.ibm.team.dashboard.viewlets.web.feeds"
            icon="http://eclipse.org/favicon.ico"
title="News from Eclipse"
preview = "com.ibm.team.dashboard.viewlets.service/graphics/feeds/images/preview-eclipse-news.png"
viewlet-id="com.ibm.team.dashboard.viewlets.web.feed">
<description>
Latest news from Eclipse.org web site.
</description>
        <preference id="url" value="http://www.eclipse.org/home/eclipseinthenews.rss"/>
          </viewlet-entry>            
</configuration-data>

<!-- Query Editor Layout -->
<configuration-data id="com.ibm.team.workitem.query.editor.configuration" xmlns="http://com.ibm.team.workitem.query.editor/configuration">
<query-type id="com.ibm.team.workitem.workItemType">
<presentations>
<presentation typeId="duration" kind="com.ibm.team.apt.kind.internal.duration"/>
</presentations>
</query-type>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt.configuration/processNature" id="com.ibm.team.apt.configuration.processNature">
<processNature id="com.ibm.team.planning.processNature.traditional" name="Traditional Process Nature">
<properties>
<property key="processType" value="traditional"/>
</properties>
</processNature>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt.configuration/planConfigurationElement" id="com.ibm.team.apt.configuration.planConfigurationElement">
<scheduler
id="com.ibm.team.apt.scheduler.traditionalScheduler" 
name="Traditional Scheduler"
description="Traditional Scheduler calculates the critical path and the schedule dates by resolving the dependencies and considering the constraints." 
implementation="com.ibm.team.apt.attribute.scheduler.traditional">
</scheduler>
<filter description="Exclude risk work items." id="com.ibm.team.apt.filter.excludeRisk" implementation="com.ibm.team.apt.shared.ui.internal.filter.WorkItemTypeFilter" name="Risks">
<parameters>
<parameter key="exclude-types" value="com.ibm.team.workitem.workItemType.risk"/>
</parameters>
</filter>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt.configuration/planEditorTabs" id="com.ibm.team.apt.configuration.planEditorTabs">
<staticTab 
id="com.ibm.team.tpt.allocation.web.ui.allocation" 
implementation="com.ibm.team.tpt.web.ui.allocation.internal.tab.AllocationTab" 
priority="40"
name="Resources">
<parameters>
<parameter key="uaKey" value="com.ibm.team.apt.web.ui.tab_plan_resource_web"/>
</parameters>
    </staticTab>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt/complexityAttribute" id="com.ibm.team.apt.configuration.attributes">
<attribute id="com.ibm.team.apt.attribute.planitem.constraintType" implementation="com.ibm.team.apt.client.WorkItemAttribute" name="Constraint Type" readOnly="false" type="ENUMERATION">
<parameters>
<parameter key="attribute" value="com.ibm.team.apt.attribute.constrainttype"/>
</parameters>
</attribute>
<attribute id="com.ibm.team.apt.attribute.planitem.constraintDate" implementation="com.ibm.team.apt.client.WorkItemAttribute" name="Constraint Date" readOnly="false" type="INSTANT">
<parameters>
<parameter key="attribute" value="com.ibm.team.apt.attribute.constraintdate"/>
</parameters>
</attribute>
<attribute id="com.ibm.team.apt.attribute.scheduler.traditional" implementation="com.ibm.team.apt.client.BuiltInAttribute" name="Traditional Scheduler" type="VOID" readOnly="true" internal="true"/>
</configuration-data>
            <configuration-data xmlns="http://com.ibm.team.apt/topLevelPlanWorkItemBinding" id="com.ibm.team.apt.configuration.topLevelPlanWorkItemBinding">
                <topLevelPlanWorkItemBinding workitemType="com.ibm.team.workitem.workItemType.businessneed"/>
<topLevelPlanWorkItemBinding workitemType="projectchangerequest"/>
            </configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt.configuration/snapshotTypes" id="com.ibm.team.apt.configuration.snapshotTypes">
                <snapshotType id="com.ibm.team.apt.plansnapshot.proposed" name="Proposed"/>
            </configuration-data>
            
<configuration-data xmlns="http://com.ibm.team.apt/workItemProgressMode" id="com.ibm.team.apt.configuration.workItemProgressMode">
    <backlogIteration id="development" path="/development/backlog"/>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt/workResourcesSpecification" id="com.ibm.team.apt.configuration.workResourcesSpecification">
    <workResourcesSpecification disallowAllocationBySelf="true" workDays="5" workHours="8"/>
</configuration-data>

<configuration-data xmlns="http://com.ibm.team.apt.configuration/planModes" id="com.ibm.team.apt.configuration.planmodes">
<planmode id="com.ibm.team.apt.viewmodes.internal.workBreakdown" name="Work Breakdown" progressMode="LOAD">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree" />
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk"/>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.owner"/>
<column attribute="com.ibm.team.apt.attribute.planitem.estimate" />
<column attribute="com.ibm.team.apt.attribute.planitem.constraintType"/>
<column attribute="com.ibm.team.apt.attribute.planitem.constraintDate"/>
<column attribute="com.ibm.team.apt.attribute.planitem.progress" />
<column attribute="com.ibm.team.apt.attribute.planitem.priority" />
<column attribute="com.ibm.team.apt.attribute.planitem.state" />
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.projectWorkBreakdown" name="Work Breakdown" progressMode="NONE">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree" />
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk"/>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.planitem.estimate" />
<column attribute="com.ibm.team.apt.attribute.planitem.constraintType"/>
<column attribute="com.ibm.team.apt.attribute.planitem.constraintDate"/>
<column attribute="com.ibm.team.apt.attribute.planitem.progress" />
<column attribute="com.ibm.team.apt.attribute.planitem.priority" />
<column attribute="com.ibm.team.apt.attribute.planitem.plannedFor" />
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.iterationGantt" name="Work Breakdown and Schedule" progressMode="LOAD">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree"/>
<groupmode definition="com.ibm.team.apt.groupmode.iteration"/>
<sortmode definition="com.ibm.team.apt.sortmode.plannedTime"/>
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk"/>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.planitem.estimate" />
<column attribute="com.ibm.team.apt.attribute.planitem.constraintType"/>
<column attribute="com.ibm.team.apt.attribute.planitem.constraintDate"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.schedulePredecessor" />
<column attribute="com.ibm.team.apt.attribute.planitem.id" />
<column attribute="com.ibm.team.apt.attribute.accumulatedTime" />
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute" />
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.gantt" name="Work Breakdown and Schedule" progressMode="LOAD">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree" />
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.plannedTime"/>
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.owner"/>
<column attribute="com.ibm.team.apt.attribute.planitem.estimate" />
<column attribute="com.ibm.team.apt.attribute.planitem.constraintType"/>
<column attribute="com.ibm.team.apt.attribute.planitem.constraintDate"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.schedulePredecessor" />
<column attribute="com.ibm.team.apt.attribute.planitem.id" />
<column attribute="com.ibm.team.apt.attribute.accumulatedTime" />
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute" />
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.scheduleVariance" name="Schedule Variance" progressMode="LOAD">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree"/>
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.proposedStartDate"/>
<column attribute="com.ibm.team.apt.attribute.proposedEndDate"/>
<column attribute="com.ibm.team.apt.attribute.plannedStartDate"/>
<column attribute="com.ibm.team.apt.attribute.plannedEndDate"/>
<column attribute="com.ibm.team.apt.attribute.planitem.id"/>
<column attribute="com.ibm.team.apt.attribute.accumulatedTime"/>
</columns>
<colors>
<color enabled="true" expression="variance>0.9" label="Variance &gt; 0.9d" priority="0" value="#f7941d"/>
</colors>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.milestone.traceability" name="Traceability" progressMode="NONE" optional="true">
<viewmode definition="com.ibm.team.apt.internal.viewmode.tree"/>
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.topLevelTypes"/>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="planning/source/com.ibm.team.workitem.linktype.implementsRequirement" optional="true"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.testedByTestCase" optional="true"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.cm.affectedByDefect" optional="true"/>
</columns>
<colors>
<color enabled="true" label="Failure" expression="failingTestCases:set" priority="0" value="#DB2D3C" />
</colors>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<!-- ** Ranked List ****** -->
<planmode id="com.ibm.team.apt.viewmodes.internal.formalRankedList" name="Ranked List" progressMode="NONE">
<viewmode definition="com.ibm.team.apt.internal.viewmode.backlog"/>
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.planitem.estimate" />
<column attribute="com.ibm.team.apt.attribute.planitem.priority"/>
<column attribute="com.ibm.team.apt.attribute.planitem.humanReadableRanking"/>
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.release.traceability" name="Traceability" progressMode="NONE" optional="true">
<viewmode definition="com.ibm.team.apt.internal.viewmode.backlog"/>
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.topLevelTypes"/>
<filter definition="com.ibm.team.apt.filter.resolved"/>
</filters>
<columns>
<column attribute="planning/source/com.ibm.team.workitem.linktype.implementsRequirement" optional="true"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.testedByTestCase" optional="true"/>
<column attribute="planning/source/com.ibm.team.workitem.linktype.cm.affectedByDefect" optional="true"/>
</columns>
<colors>
<color enabled="true" label="Failure" expression="failingTestCases:set" priority="0" value="#DB2D3C" />
</colors>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
<planmode id="com.ibm.team.apt.viewmodes.internal.productBacklog.ranking" name="Ranked List" progressMode="NONE">
<viewmode definition="com.ibm.team.apt.internal.viewmode.backlog"/>
<groupmode definition="com.ibm.team.apt.groupmode.none"/>
<sortmode definition="com.ibm.team.apt.sortmode.ranking"/>
<filters>
<filter definition="com.ibm.team.apt.filter.resolved"/>
<filter definition="com.ibm.team.apt.filter.topLevelTypes"/>
</filters>
<columns>
<column attribute="com.ibm.team.apt.attribute.planitem.complexity" />
<column attribute="com.ibm.team.apt.attribute.planitem.priority"/>
<column attribute="com.ibm.team.apt.attribute.planitem.humanReadableRanking"/>
</columns>
<checks>
<check attribute="com.ibm.team.apt.plancheck.traditionalSchedulingCheck.attribute"/>
</checks>
</planmode>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.apt.configuration/planTypes" id="com.ibm.team.apt.configuration.plantypes">
<plantype id="com.ibm.team.apt.plantype.default" name="Phase Plan" icon="icons/obj16/iteration_plan.gif">
<planitems definition="com.ibm.team.apt.planitems.iterationPlan" />
<scheduler definition="com.ibm.team.apt.scheduler.traditionalScheduler"/>
<planmodes default="com.ibm.team.apt.viewmodes.internal.gantt">
<planmode definition="com.ibm.team.apt.viewmodes.internal.gantt"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.workBreakdown"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.scheduleVariance"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.formalRankedList"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.milestone.traceability" optional="true"/>
</planmodes>
<planchecks>
<plancheck definition="com.ibm.team.apt.plancheck.schedulingCheck"/>
<plancheck definition="com.ibm.team.apt.plancheck.invalidEstimateCheck"/>
<plancheck definition="com.ibm.team.apt.plancheck.requiredAttribute"/>
</planchecks>
</plantype>
<plantype id="com.ibm.team.apt.plantype.release.project" name="Release Plan" icon="icons/obj16/release_plan.gif">
<planitems definition="com.ibm.team.apt.planitems.projectReleasePlan" />
<scheduler definition="com.ibm.team.apt.scheduler.traditionalScheduler"/>
<planmodes default="com.ibm.team.apt.viewmodes.internal.iterationGantt">
<planmode definition="com.ibm.team.apt.viewmodes.internal.iterationGantt"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.projectWorkBreakdown"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.scheduleVariance"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.formalRankedList"/>
<planmode definition="com.ibm.team.apt.viewmodes.internal.release.traceability" optional="true"/>
</planmodes>
<planchecks>
<plancheck definition="com.ibm.team.apt.plancheck.requiredAttribute"/>
<plancheck definition="com.ibm.team.apt.plancheck.invalidEstimateCheck"/>
</planchecks>
</plantype>
<plantype id="com.ibm.team.apt.plantype.product.backlog" name="Product Backlog" icon="icons/obj16/backlog_plan_obj.gif" deprecated="true">
<planitems definition="com.ibm.team.apt.planitems.projectReleasePlan" />
<planmodes default="com.ibm.team.apt.viewmodes.internal.productBacklog.ranking">
<planmode definition="com.ibm.team.apt.viewmodes.internal.formalRankedList"/>
</planmodes>
</plantype>
</configuration-data>

<configuration-data xmlns="http://com.ibm.team.tpt/financial" id="com.ibm.team.tpt.configuration">
<configuration id="currency">
                <currencies>
<currency id="currency.literal.l1" name="USD" default="true"/>
</currencies>
            </configuration>
</configuration-data>
<configuration-data xmlns="http://com.ibm.team.tpt/timetracking" id="com.ibm.team.tpt.timetracking">
<timeTrackingSpecification syncTimeSpentWithTimeTracking="true"/>
<configuration id="timecode">
<timecodes>
<timecode id="timecode.literal.l1" name="Default"/>
<timecode id="timecode.literal.l2" name="Coding"/>
<timecode id="timecode.literal.l3" name="Review"/>
<timecode id="timecode.literal.l4" name="Documentation"/>
<timecode id="timecode.literal.l5" name="Testing"/>
</timecodes>
</configuration>
</configuration-data>

<configuration-data final="false" id="com.ibm.team.workitem.configuration" xmlns="http://com.ibm.team.workitem/workitemConfiguration">
    <configuration id="com.ibm.team.workitem.configuration.oslc.types">
        <typeBinding oslcTypeId="defect" workItemTypeId="defect"/>
        <typeBinding oslcTypeId="planItem" workItemTypeId="projectchangerequest"/>
        <typeBinding oslcTypeId="task" workItemTypeId="task"/>
        <typeBinding oslcTypeId="requirementChangeRequest" workItemTypeId="task"/>
    </configuration>
    <configuration id="com.ibm.team.workitem.configuration.stateGroups">
        <stateGroup id="com.ibm.team.rqm.stateGroup.readyForTesting.defect">
            <resolution id="r1"/>
        </stateGroup>
        <stateGroup id="com.ibm.team.rqm.stateGroup.readyForTesting">
            <state id="com.ibm.team.workitem.projectChangeRequestWorkflow.state.s5"/>
        </stateGroup>
    </configuration>
</configuration-data>
    <configuration-data final="false" id="com.ibm.team.process.service.configurationData.teamInvitation" xmlns="http://com.ibm.team.process/teamInvitation">
    <emailSubject value="Welcome to the ${teamAreaName} Team"/>
    <emailBody value="You have been invited to join the Jazz team ${teamAreaName}.&amp;#10;&amp;#10;You can explore the related project area via the web client at ${projectAreaDashboardUrl}.&amp;#10;&amp;#10;Use File&amp;gt;Accept Team Invitation within the IBM Engineering Workflow Management client to open the Accept Team Invitation dialog.&amp;#10;Copy the invitation below and paste into the Accept Invitation text field.&amp;#10;&amp;#10;"/>
    <copySelf value="true"/>
</configuration-data>
<configuration-data id="com.ibm.team.workitem.configuration.templates" xmlns="http://com.ibm.team.workitem/templates">
<template content="processattachment:/workitemtemplates/com.ibm.team.workitem.template1.xml" description="" identifier="com.ibm.team.workitem.template1" name="Change Control Committee (CCC)"/>
</configuration-data>
<configuration-data final="false" id="com.ibm.team.workitem.configuration.approvalTracking" xmlns="http://com.ibm.team.workitem/approvalTracking">
    <approvalTracking approvalTarget="com.ibm.team.workitem.approvalState.approved" approvalType="com.ibm.team.workitem.approvalType.approval" workflowAction="cab.action.a10" workflowId="cab"/>
</configuration-data>
</data>
</project-configuration>
<team-configuration>
<permissions>
    <role id="analyst">
        <operation id="com.ibm.team.reports.service.report.display">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.folder.management">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.query.deployment">
            <action id="any"/>
        </operation>
    </role>
    <role id="team_lead">
        <operation id="com.ibm.team.build.server.cancelPendingRequest">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildDefinition">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildDefinition">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildResult">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildResult">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.abandonBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.requestBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.buildLifecycle">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.manageBuildFolders">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.dashboard.server.saveTeamDashboard">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.saveIterationPlan">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.deleteIterationPlan">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.saveSnapshot">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.deleteSnapshot">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.process.server.saveTeamArea">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.process.server.generateTeamInvitation">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyStream">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.deliver">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyBaseline">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyComponent">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifySnapshot">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="any"/>
            </action>
            <action id="create">
                <action id="any"/>
            </action>
            <action id="action">
                <action id="bugzillaWorkflow.action.verify"/>
                <action id="bugzillaWorkflow.action.triage"/>
                <action id="bugzillaWorkflow.action.confirm"/>
                <action id="bugzillaWorkflow.action.close"/>
                <action id="bugzillaWorkflow.action.stopWorking"/>
                <action id="bugzillaWorkflow.action.setResolved"/>
                <action id="bugzillaWorkflow.action.reopen"/>
                <action id="bugzillaWorkflow.action.resolve"/>
                <action id="bugzillaWorkflow.action.startWorking"/>
                <action id="bugzillaWorkflow.action.untriage"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.reopen"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.startWorking"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.a2"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.a1"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.triage"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.confirm"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.a4"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.a3"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.assign"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reject"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.open"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reopen"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.confirm"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.review"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.approve"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.resolve"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.reject"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.resolve"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.confirm"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.assign"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.dup"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.reopen"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.start"/>
                <action id="riskWorkflow.action.new"/>
                <action id="riskWorkflow.action.close"/>
                <action id="riskWorkflow.action.rejected"/>
                <action id="riskWorkflow.action.reopen"/>
                <action id="riskWorkflow.action.mitigated"/>
                <action id="riskWorkflow.action.accepted"/>
                <action id="riskWorkflow.action.inprogress"/>
                <action id="riskWorkflow.action.tobevalidated"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.a1"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.propose"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.init"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.reopen"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.commit"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.reopen"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.reject"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.init"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.approve"/>
                <action id="cab.action.a11"/>
                <action id="cab.action.a10"/>
                <action id="cab.action.a20"/>
                <action id="cab.action.a15"/>
                <action id="cab.action.a14"/>
                <action id="cab.action.a13"/>
                <action id="cab.action.a12"/>
                <action id="cab.action.a5"/>
                <action id="cab.action.a19"/>
                <action id="cab.action.a6"/>
                <action id="cab.action.a18"/>
                <action id="cab.action.a3"/>
                <action id="cab.action.a17"/>
                <action id="cab.action.a4"/>
                <action id="cab.action.a16"/>
                <action id="cab.action.a7"/>
                <action id="cab.action.a2"/>
                <action id="cab.action.a21"/>
            </action>
            <action id="bulk"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.saveQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.deleteQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.supa.server.saveSearchEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.supa.server.deleteSearchEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.build.service.changes.ignoreChangesForDependencyBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.supa.server.saveSearchConfiguration">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.langdef.buildablesubset.deleteSubset">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.langdef.buildablesubset.saveBuildableSubset">
            <action id="create"/>
            <action id="modify"/>
        </operation>
        <operation id="com.ibm.team.process.server.authoring.saveProcessDescription">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.promotion.promoteWorkItems">
            <action id="previewPromoteWorkItems"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.artifactfolders.modify">
            <action id="any"/>
        </operation>
    </role>
    <role id="project_manager">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="com.ibm.team.apt.attribute.constrainttype"/>
                <action id="com.ibm.team.apt.attribute.constraintdate"/>
                <action id="tasktype"/>
                <action id="taskstatus"/>
                <action id="taskrequestID"/>
                <action id="taskstarttime"/>
                <action id="taskendtime"/>
                <action id="taskassigneecompany"/>
                <action id="taskassigneeorg"/>
                <action id="taskchangeorg"/>
                <action id="taskassignee"/>
                <action id="tasknotes"/>
                <action id="taskpriority"/>
                <action id="tasktime"/>
                <action id="taskplannedstartdate"/>
                <action id="taskplannedenddate"/>
                <action id="coordinatorgroup"/>
                <action id="changecoordinator"/>
                <action id="changecoordinator_con_list"/>
                <action id="class"/>
                <action id="changereason"/>
                <action id="impact"/>
                <action id="caburgency"/>
                <action id="cabpriority"/>
                <action id="cabrisklevel"/>
                <action id="cabstatus"/>
                <action id="cabmanagergroup"/>
                <action id="cabchangemanager"/>
                <action id="cabnote"/>
                <action id="cabscheduledstartdate"/>
                <action id="cabscheduledenddate"/>
                <action id="cabactualStartDate"/>
                <action id="cabActualEndDate"/>
                <action id="cabcompleteddate"/>
                <action id="cabEarliestStartDate"/>
                <action id="cabRequestedStartDate"/>
                <action id="cabRequestedEndDate"/>
                <action id="cabtimingresaon"/>
                <action id="cabTimingReason"/>
                <action id="cabtimespentresolvingcr"/>
                <action id="cabstarttime"/>
                <action id="cabtimespentmin"/>
                <action id="cabtotaltimespentmin"/>
                <action id="cabsubmitter"/>
                <action id="cabsubmitdate"/>
                <action id="cabtier1sw"/>
                <action id="cabtier2sw"/>
                <action id="cabtier3sw"/>
                <action id="cabnote1"/>
                <action id="cabchangelocation"/>
                <action id="manager"/>
                <action id="cabcategory"/>
                <action id="test"/>
                <action id="com.ibm.team.workitem.workItemType.risk.probability"/>
                <action id="com.ibm.team.workitem.workItemType.risk.impact"/>
                <action id="com.ibm.team.workitem.workItemType.risk.exposure"/>
                <action id="com.ibm.team.workitem.workItemType.risk.consequencecost"/>
                <action id="com.ibm.team.workitem.workItemType.risk.probabilitycost"/>
                <action id="com.ibm.team.workitem.workItemType.risk.precision"/>
                <action id="com.ibm.team.workitem.workItemType.risk.identificationdate"/>
                <action id="com.ibm.team.workitem.workItemType.risk.occurrencedate"/>
                <action id="com.ibm.team.workitem.workItemType.risk.riskcategory"/>
                <action id="com.ibm.team.workitem.workItemType.riskaction.strategy"/>
                <action id="changelocation"/>
                <action id="com.ibm.team.apt.attribute.planitem.newRanking._pm7NmRYUEd6L1tNIGdz5qQ"/>
                <action id="com.ibm.team.apt.attribute.planitem.priority._pm7NmRYUEd6L1tNIGdz5qQ"/>
                <action id="com.ibm.team.apt.estimate.maximal"/>
                <action id="com.ibm.team.apt.estimate.minimal"/>
                <action id="projectArea"/>
                <action id="contextId"/>
                <action id="archived"/>
                <action id="summary"/>
                <action id="type"/>
                <action id="workflow"/>
                <action id="resolution"/>
                <action id="description"/>
                <action id="comments"/>
                <action id="severity"/>
                <action id="version"/>
                <action id="category"/>
                <action id="tags">
                    <action id="any"/>
                </action>
                <action id="owner"/>
                <action id="priority"/>
                <action id="target"/>
                <action id="subscriptions"/>
                <action id="duration"/>
                <action id="correctedEstimate"/>
                <action id="timeSpent"/>
                <action id="dueDate"/>
                <action id="startDate"/>
                <action id="approvals"/>
                <action id="approvalDescriptors"/>
                <action id="references">
                    <action id="blocks">
                        <action id="any"/>
                    </action>
                    <action id="copiedFrom">
                        <action id="any"/>
                    </action>
                    <action id="copies">
                        <action id="any"/>
                    </action>
                    <action id="dependsOn">
                        <action id="any"/>
                    </action>
                    <action id="parent"/>
                    <action id="children">
                        <action id="any"/>
                    </action>
                    <action id="attachment">
                        <action id="add"/>
                        <action id="remove"/>
                        <action id="modify"/>
                    </action>
                </action>
                <action id="assignee"/>
            </action>
            <action id="create">
                <action id="any"/>
            </action>
            <action id="action">
                <action id="bugzillaWorkflow.action.verify"/>
                <action id="bugzillaWorkflow.action.triage"/>
                <action id="bugzillaWorkflow.action.confirm"/>
                <action id="bugzillaWorkflow.action.close"/>
                <action id="bugzillaWorkflow.action.stopWorking"/>
                <action id="bugzillaWorkflow.action.setResolved"/>
                <action id="bugzillaWorkflow.action.reopen"/>
                <action id="bugzillaWorkflow.action.resolve"/>
                <action id="bugzillaWorkflow.action.startWorking"/>
                <action id="bugzillaWorkflow.action.untriage"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.reopen"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.startWorking"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.a2"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.a1"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.triage"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.confirm"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.a4"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.a3"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.assign"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reject"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.open"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.reopen"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.confirm"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.review"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.approve"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.projectChangeRequestWorkflow.action.resolve"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.reject"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.resolve"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.confirm"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.assign"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.dup"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.reopen"/>
                <action id="com.ibm.team.workitem.issueWorkflow.action.start"/>
                <action id="riskWorkflow.action.new"/>
                <action id="riskWorkflow.action.close"/>
                <action id="riskWorkflow.action.rejected"/>
                <action id="riskWorkflow.action.reopen"/>
                <action id="riskWorkflow.action.mitigated"/>
                <action id="riskWorkflow.action.accepted"/>
                <action id="riskWorkflow.action.inprogress"/>
                <action id="riskWorkflow.action.tobevalidated"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.a1"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.propose"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.defer"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.init"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.reopen"/>
                <action id="com.ibm.team.workitem.businessneedWorkflow.action.commit"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.reopen"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.close"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.reject"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.init"/>
                <action id="com.ibm.team.workitem.milestoneWorkflow.action.approve"/>
                <action id="cab.action.a11"/>
                <action id="cab.action.a10"/>
                <action id="cab.action.a20"/>
                <action id="cab.action.a15"/>
                <action id="cab.action.a14"/>
                <action id="cab.action.a13"/>
                <action id="cab.action.a12"/>
                <action id="cab.action.a5"/>
                <action id="cab.action.a19"/>
                <action id="cab.action.a6"/>
                <action id="cab.action.a18"/>
                <action id="cab.action.a3"/>
                <action id="cab.action.a17"/>
                <action id="cab.action.a4"/>
                <action id="cab.action.a16"/>
                <action id="cab.action.a7"/>
                <action id="cab.action.a2"/>
                <action id="cab.action.a21"/>
            </action>
            <action id="bulk"/>
            <action id="import"/>
            <action id="remove"/>
        </operation>
        <operation id="com.ibm.team.dashboard.server.saveTeamDashboard">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.interop.server.synchronize">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.saveIterationPlan">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.deleteIterationPlan">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.saveSnapshot">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.apt.server.deleteSnapshot">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.process.server.saveTeamArea">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.process.server.generateTeamInvitation">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.display">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.folder.management">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.query.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.deliver">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyStream">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyComponent">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.saveQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.deleteQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyBaseline">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifySnapshot">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.process.server.authoring.saveProcessDescription">
            <action id="any"/>
        </operation>
    </role>
    <role id="architect">
        <operation id="com.ibm.team.interop.server.synchronize">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.display">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.folder.management">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.query.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="projectArea"/>
                <action id="summary"/>
                <action id="type"/>
                <action id="resolution"/>
                <action id="description"/>
                <action id="comments"/>
                <action id="severity"/>
                <action id="version"/>
                <action id="category"/>
                <action id="tags">
                    <action id="any"/>
                </action>
                <action id="priority"/>
                <action id="subscriptions"/>
                <action id="duration"/>
                <action id="correctedEstimate"/>
                <action id="timeSpent"/>
                <action id="dueDate"/>
                <action id="com.ibm.team.apt.attribute.constrainttype"/>
                <action id="com.ibm.team.apt.attribute.constraintdate"/>
                <action id="approvals"/>
                <action id="approvalDescriptors"/>
                <action id="references">
                    <action id="any"/>
                </action>
                <action id="assignee"/>
            </action>
            <action id="import"/>
            <action id="create">
                <action id="any"/>
            </action>
            <action id="action">
                <action id="any"/>
            </action>
            <action id="bulk"/>
            <action id="remove"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.saveQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.deleteQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.operation.workItemDelete">
            <action id="any"/>
        </operation>
    </role>
    <role id="developer">
        <operation id="com.ibm.team.interop.server.synchronize">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.display">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.folder.management">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.query.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.deliver">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyStream">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyComponent">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyChangeset">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifyBaseline">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.scm.server.modifySnapshot">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.langdef.buildablesubset.deleteSubset">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.langdef.buildablesubset.saveBuildableSubset">
            <action id="create"/>
            <action id="modify"/>
        </operation>
        <operation id="com.ibm.teamz.promotion.promoteWorkItems">
            <action id="previewPromoteWorkItems"/>
        </operation>
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="assignee"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
        </operation>
    </role>
    <role id="stakeholder">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="create">
                <action id="type">
                    <action id="defect"/>
                    <action id="task"/>
                </action>
            </action>
            <action id="modify">
                <action id="category"/>
                <action id="summary"/>
                <action id="resolution"/>
                <action id="comments"/>
                <action id="subscriptions"/>
                <action id="tags">
                    <action id="add"/>
                </action>
                <action id="references">
                    <action id="attachment">
                        <action id="add"/>
                    </action>
                </action>
                <action id="approvals"/>
                <action id="type"/>
                <action id="severity"/>
                <action id="description"/>
                <action id="version"/>
                <action id="assignee"/>
            </action>
        </operation>
    </role>
    <role id="tester">
        <operation id="com.ibm.team.build.server.abandonBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.requestBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.buildLifecycle">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.interop.server.synchronize">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.display">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.report.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.folder.management">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.reports.service.query.deployment">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.server.saveQuery">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="summary"/>
                <action id="resolution"/>
                <action id="description"/>
                <action id="comments"/>
                <action id="severity"/>
                <action id="version"/>
                <action id="category"/>
                <action id="tags">
                    <action id="any"/>
                </action>
                <action id="owner"/>
                <action id="subscriptions"/>
                <action id="duration"/>
                <action id="correctedEstimate"/>
                <action id="timeSpent"/>
                <action id="approvals"/>
                <action id="approvalDescriptors"/>
                <action id="references">
                    <action id="any"/>
                </action>
                <action id="dueDate"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="task"/>
                    <action id="cab"/>
                </action>
            </action>
            <action id="bulk"/>
        </operation>
    </role>
    <role id="release_engineer">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="create">
                <action id="defect"/>
                <action id="task"/>
            </action>
            <action id="action">
                <action id="any"/>
            </action>
            <action id="bulk"/>
            <action id="modify">
                <action id="projectArea"/>
                <action id="summary"/>
                <action id="type"/>
                <action id="resolution"/>
                <action id="description"/>
                <action id="comments"/>
                <action id="severity"/>
                <action id="version"/>
                <action id="category"/>
                <action id="tags">
                    <action id="any"/>
                </action>
                <action id="subscriptions"/>
                <action id="duration"/>
                <action id="correctedEstimate"/>
                <action id="timeSpent"/>
                <action id="dueDate"/>
                <action id="approvals"/>
                <action id="approvalDescriptors"/>
                <action id="references">
                    <action id="any"/>
                </action>
            </action>
        </operation>
        <operation id="com.ibm.team.build.server.cancelPendingRequest">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildDefinition">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildDefinition">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildResult">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildResult">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.deleteBuildEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.saveBuildEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.abandonBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.requestBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.buildLifecycle">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.team.build.server.manageBuildFolders">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.supa.server.saveSearchEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.supa.server.deleteSearchEngine">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.build.service.changes.ignoreChangesForDependencyBuild">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.supa.server.saveSearchConfiguration">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.langdef.buildablesubset.deleteSubset">
            <action id="any"/>
        </operation>
        <operation id="com.ibm.teamz.langdef.buildablesubset.saveBuildableSubset">
            <action id="create"/>
            <action id="modify"/>
        </operation>
        <operation id="com.ibm.teamz.promotion.promoteWorkItems">
            <action id="previewPromoteWorkItems"/>
        </operation>
    </role>
    <role id="Change Co-ordinator">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="action">
                <action id="com.ibm.team.workitem.taskWorkflow.action.startWorking"/>
                <action id="cab.action.a21"/>
                <action id="cab.action.a10"/>
                <action id="cab.action.a18"/>
                <action id="cab.action.a15"/>
            </action>
            <action id="create">
                <action id="any"/>
            </action>
            <action id="modify">
                <action id="any"/>
            </action>
        </operation>
        <operation id="com.ibm.team.workitem.operation.workItemDelete">
            <action id="any"/>
        </operation>
    </role>
    <role id="Change Manager">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="any"/>
            </action>
            <action id="action">
                <action id="cab.action.a13"/>
                <action id="cab.action.a21"/>
                <action id="cab.action.a10"/>
                <action id="cab.action.a18"/>
                <action id="cab.action.a15"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
        </operation>
    </role>
    <role id="default">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="assignee"/>
                <action id="references">
                    <action id="blocks">
                        <action id="any"/>
                    </action>
                    <action id="copiedFrom">
                        <action id="any"/>
                    </action>
                    <action id="copies">
                        <action id="any"/>
                    </action>
                    <action id="dependsOn">
                        <action id="any"/>
                    </action>
                    <action id="parent"/>
                    <action id="children">
                        <action id="any"/>
                    </action>
                    <action id="attachment">
                        <action id="add"/>
                        <action id="remove"/>
                        <action id="modify"/>
                    </action>
                </action>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
            <action id="action">
                <action id="com.ibm.team.workitem.taskWorkflow.action.startWorking"/>
                <action id="cab.action.a19"/>
            </action>
        </operation>
    </role>
    <role id="CM (SYS) / AGM(Sys) Approval">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="references">
                    <action id="attachment">
                        <action id="add"/>
                    </action>
                </action>
                <action id="summary"/>
            </action>
            <action id="action">
                <action id="cab.action.a3"/>
                <action id="cab.action.a7"/>
                <action id="cab.action.a21"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
        </operation>
    </role>
    <role id="CM / AGM (DWH) Approval">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="references">
                    <action id="attachment">
                        <action id="add"/>
                    </action>
                </action>
                <action id="summary"/>
            </action>
            <action id="action">
                <action id="cab.action.a21"/>
                <action id="cab.action.a11"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
        </operation>
    </role>
    <role id="DGM Approval (In case of Major CAB)">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="references">
                    <action id="attachment">
                        <action id="add"/>
                    </action>
                </action>
                <action id="summary"/>
            </action>
            <action id="action">
                <action id="cab.action.a6"/>
                <action id="cab.action.a11"/>
                <action id="cab.action.a21"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
        </operation>
    </role>
    <role id="Governance team approval">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="references">
                    <action id="attachment">
                        <action id="add"/>
                    </action>
                </action>
                <action id="summary"/>
            </action>
            <action id="action">
                <action id="cab.action.a7"/>
                <action id="cab.action.a21"/>
                <action id="cab.action.a3"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
        </operation>
    </role>
    <role id="Version Control">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="references">
                    <action id="attachment">
                        <action id="add"/>
                    </action>
                </action>
                <action id="summary"/>
            </action>
            <action id="action">
                <action id="cab.action.a21"/>
                <action id="cab.action.a16"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.close"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
        </operation>
    </role>
    <role id="IBM Management Approval 2">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="references">
                    <action id="attachment">
                        <action id="add"/>
                    </action>
                </action>
                <action id="summary"/>
            </action>
            <action id="action">
                <action id="cab.action.a7"/>
                <action id="cab.action.a21"/>
                <action id="cab.action.a4"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
        </operation>
    </role>
    <role id="IBM Management Approval 1">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="action">
                <action id="cab.action.a7"/>
                <action id="cab.action.a21"/>
                <action id="cab.action.a2"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
            <action id="modify">
                <action id="summary"/>
            </action>
        </operation>
    </role>
    <role id="Database Entry">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="references">
                    <action id="attachment">
                        <action id="add"/>
                    </action>
                </action>
                <action id="summary"/>
            </action>
            <action id="action">
                <action id="cab.action.a17"/>
                <action id="cab.action.a21"/>
                <action id="cab.action.a14"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.close"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
        </operation>
    </role>
    <role id="Production Deployment">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="references">
                    <action id="attachment">
                        <action id="add"/>
                    </action>
                </action>
                <action id="summary"/>
            </action>
            <action id="action">
                <action id="cab.action.a21"/>
                <action id="cab.action.a17"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.close"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
        </operation>
    </role>
    <role id="Scheduling of ETL Job">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="references">
                    <action id="attachment">
                        <action id="add"/>
                    </action>
                </action>
                <action id="summary"/>
            </action>
            <action id="action">
                <action id="cab.action.a14"/>
                <action id="cab.action.a21"/>
                <action id="cab.action.a18"/>
                <action id="com.ibm.team.workitem.taskWorkflow.action.close"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
        </operation>
    </role>
    <role id="AGM sys/CM sys">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="action">
                <action id="cab.action.a18"/>
                <action id="cab.action.a13"/>
                <action id="cab.action.a21"/>
                <action id="cab.action.a11"/>
            </action>
            <action id="create">
                <action id="type">
                    <action id="cab"/>
                    <action id="task"/>
                </action>
            </action>
            <action id="modify">
                <action id="summary"/>
            </action>
        </operation>
    </role>
    <role id="CR document verification">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <action id="modify">
                <action id="references">
                    <action id="attachment">
                        <action id="add"/>
                        <action id="modify"/>
                    </action>
                </action>
            </action>
            <action id="action">
                <action id="cab.action.a1"/>
            </action>
        </operation>
    </role>
</permissions>
<behavior>
    <role id="default">
        <operation id="com.ibm.team.workitem.operation.workItemSave">
            <preconditions>
                <precondition description="Constraint Date is a required field if the Constraint Type is 'Finish No Later Than' or 'Start No Earlier Than'" id="com.ibm.team.apt.advisor.requiredConstraintDate" name="Required Constraint Date"/>
                <precondition description="Time tracking entries can be added only by the owner of the Work Item " id="com.ibm.team.tpt.advisor.checkOwnerTimeTracking" name="Time tracking Owner Check"/>
                <precondition description="Requires that a work item can only be resolved if all of its children are resolved." id="com.ibm.team.workitem.advisor.allChildrenClosed" name="All Children Resolved"/>
                <precondition description="Verifies that a work item that matches the selected types or states can only be saved if the selected attributes are unchanged" id="com.ibm.team.workitem.advisor.readOnlyAttributesByTypeAndState" name="Read-Only Attributes For Type and State" xmlns="http://com.ibm.team.workitem/readOnlyAttributesByTypeAndState">
                    <workflowProperties stateId="com.ibm.team.workitem.taskWorkflow.state.s2" workItemType="task">
                        <property id="taskplannedstartdate"/>
                        <property id="taskplannedenddate"/>
                    </workflowProperties>
                    <workflowProperties stateId="cab.state.s2" workItemType="cab">
                        <property id="cabrisklevel"/>
                        <property id="caburgency"/>
                        <property id="manager"/>
                        <property id="impact"/>
                        <property id="coordinatorgroup"/>
                        <property id="cabchangelocation"/>
                        <property id="cabchangemanager"/>
                        <property id="cabnote1"/>
                        <property id="changecoordinator_con_list"/>
                        <property id="cabcategory"/>
                        <property id="class"/>
                        <property id="cabmanagergroup"/>
                        <property id="changereason"/>
                        <property id="com.ibm.team.workitem.attribute.priority"/>
                    </workflowProperties>
                    <workflowProperties stateId="cab.state.s3" workItemType="cab">
                        <property id="cabrisklevel"/>
                        <property id="caburgency"/>
                        <property id="manager"/>
                        <property id="impact"/>
                        <property id="coordinatorgroup"/>
                        <property id="cabchangelocation"/>
                        <property id="cabchangemanager"/>
                        <property id="cabnote1"/>
                        <property id="changecoordinator_con_list"/>
                        <property id="cabpriority"/>
                        <property id="cabcategory"/>
                        <property id="class"/>
                        <property id="changereason"/>
                        <property id="com.ibm.team.workitem.attribute.priority"/>
                    </workflowProperties>
                    <workflowProperties stateId="cab.state.s4" workItemType="cab">
                        <property id="cabrisklevel"/>
                        <property id="cabchangemanager"/>
                        <property id="caburgency"/>
                        <property id="manager"/>
                        <property id="changecoordinator_con_list"/>
                        <property id="impact"/>
                        <property id="cabcategory"/>
                        <property id="coordinatorgroup"/>
                        <property id="cabchangelocation"/>
                        <property id="class"/>
                        <property id="changereason"/>
                        <property id="com.ibm.team.workitem.attribute.priority"/>
                    </workflowProperties>
                    <workflowProperties stateId="cab.state.s5" workItemType="cab">
                        <property id="cabrisklevel"/>
                        <property id="caburgency"/>
                        <property id="manager"/>
                        <property id="impact"/>
                        <property id="coordinatorgroup"/>
                        <property id="cabchangelocation"/>
                        <property id="cabchangemanager"/>
                        <property id="cabnote1"/>
                        <property id="changecoordinator_con_list"/>
                        <property id="cabcategory"/>
                        <property id="class"/>
                        <property id="changereason"/>
                        <property id="com.ibm.team.workitem.attribute.priority"/>
                    </workflowProperties>
                    <workflowProperties stateId="cab.state.s6" workItemType="cab">
                        <property id="cabrisklevel"/>
                        <property id="caburgency"/>
                        <property id="manager"/>
                        <property id="impact"/>
                        <property id="coordinatorgroup"/>
                        <property id="cabchangelocation"/>
                        <property id="cabchangemanager"/>
                        <property id="cabnote1"/>
                        <property id="changecoordinator_con_list"/>
                        <property id="cabcategory"/>
                        <property id="class"/>
                        <property id="changereason"/>
                        <property id="com.ibm.team.workitem.attribute.priority"/>
                    </workflowProperties>
                    <workflowProperties stateId="cab.state.s9" workItemType="cab">
                        <property id="cabrisklevel"/>
                        <property id="caburgency"/>
                        <property id="manager"/>
                        <property id="impact"/>
                        <property id="coordinatorgroup"/>
                        <property id="cabchangelocation"/>
                        <property id="cabchangemanager"/>
                        <property id="cabnote1"/>
                        <property id="changecoordinator_con_list"/>
                        <property id="cabcategory"/>
                        <property id="class"/>
                        <property id="changereason"/>
                        <property id="com.ibm.team.workitem.attribute.priority"/>
                    </workflowProperties>
                    <workflowProperties stateId="cab.state.s8" workItemType="cab">
                        <property id="cabrisklevel"/>
                        <property id="caburgency"/>
                        <property id="changecoordinator"/>
                        <property id="manager"/>
                        <property id="change"/>
                        <property id="impact"/>
                        <property id="coordinatorgroup"/>
                        <property id="cabchangelocation"/>
                        <property id="cabchangemanager"/>
                        <property id="cabnote"/>
                        <property id="cabnote1"/>
                        <property id="changecoordinator_con_list"/>
                        <property id="cabpriority"/>
                        <property id="cabcategory"/>
                        <property id="class"/>
                        <property id="cabmanagergroup"/>
                        <property id="changereason"/>
                        <property id="com.ibm.team.workitem.attribute.priority"/>
                    </workflowProperties>
                </precondition>
                <precondition description="The precondition prevents a work item from being edited in certain states." id="com.ibm.team.workitem.advisor.stateBasedModification" name="Prevent Editing">
                    <checks>
                        <check state="com.ibm.team.workitem.taskWorkflow.state.s4" type="task"/>
                        <check state="cab.state.s11" type="cab"/>
                    </checks>
                    <options allowActions="false" doNotAllowChildLink="false" doNotAllowParentLink="false"/>
                </precondition>
                <precondition description="Requires all children to be resolved before the parent can be resolved, and requires the parent to be open before a child can be added or re-opened." id="com.ibm.team.workitem.advisor.strictGroupResolution" name="Strict Group Resolution"/>
                <precondition description="Verifies that a work item that matches the selected types or states can only be saved if the selected attributes are different from the default value or the null value (for enumerations)" id="com.ibm.team.workitem.advisor.requiredProperties" name="Required Attributes For Type and State" xmlns="http://com.ibm.team.workitem/requiredProperties">
                    <workflowProperties stateId="com.ibm.team.workitem.taskWorkflow.state.s4" workItemType="task">
                        <property id="taskendtime"/>
                        <property id="taskstarttime"/>
                    </workflowProperties>
                    <workflowProperties stateId="cab.state.s8" workItemType="cab">
                        <property id="cabrisklevel"/>
                        <property id="caburgency"/>
                        <property id="changecoordinator"/>
                        <property id="manager"/>
                        <property id="impact"/>
                        <property id="coordinatorgroup"/>
                        <property id="cabchangelocation"/>
                        <property id="cabchangemanager"/>
                        <property id="com.ibm.team.workitem.attribute.summary"/>
                        <property id="cabpriority"/>
                        <property id="cabcategory"/>
                        <property id="class"/>
                    </workflowProperties>
                </precondition>
                <precondition description="Verifies that a work item can only be saved if all attribute values are valid." id="com.ibm.team.workitem.advisor.validation" name="Attribute Validation"/>
                <precondition description="Verifies that a work item that matches the selected types or states can only be saved if the selected attributes are different from the default value or the null value (for enumerations)" id="com.ibm.team.workitem.advisor.requiredProperties" name="Required Attributes For Type and State" xmlns="http://com.ibm.team.workitem/requiredProperties"/>
                <precondition description="The precondition prevents a work item from being edited in certain states." id="com.ibm.team.workitem.advisor.stateBasedModification" name="Prevent Editing"/>
            </preconditions>
        </operation>
        <operation id="com.ibm.team.scm.client.deliver">
            <preconditions>
                <precondition description="Require that there are no errors in affected projects when a change set is delivered." id="com.ibm.team.process.deliver.prohibitCompilationErrors" name="Prohibit Workspace Errors" overrulable="true" xmlns="http://com.ibm.team.process/prohibitCompilationErrors"/>
                <precondition description="All change sets should be associated with a work item which is planned for the current iteration.&#10;&#10;This makes it easier for the team to track its progress through the iteration and allows other users to understand why your changes were made." id="com.ibm.team.process.deliver.requireWorkItem" name="Require Work Items and Comments" overrulable="true" xmlns="http://com.ibm.team.process/requireWorkItem">
                    <requires value="workitem-or-comment"/>
                </precondition>
            </preconditions>
        </operation>
        <operation id="com.ibm.team.build.server.abandonBuild"/>
    </role>
</behavior>
<iteration-type id="requirement">
<behavior>
                <role id="default">
                    <operation id="com.ibm.team.scm.client.deliver">
<preconditions>
<precondition id="com.ibm.team.process.deliver.prohibitCompilationErrors" xmlns="http://com.ibm.team.process/prohibitCompilationErrors"
                             name="Prohibit Workspace Errors"
                             description="Require that there are no errors in affected projects when a change set is delivered."
                             overrulable="true"/>
                             <precondition id="com.ibm.team.process.deliver.requireWorkItem" xmlns="http://com.ibm.team.process/requireWorkItem"
                             name="Descriptive Change Sets"
                             description="All change sets should be associated with a work item which is planned for the current iteration.&#10;&#10;This makes it easier for the team to track its progress through the iteration and allows other users to understand why your changes were made."
                             overrulable="true">
                                <requires value="workitem-or-comment">
                                    <workitem owner="optional" target="optional"/>
                                </requires>
                             </precondition>
</preconditions>
</operation>
                </role>
            </behavior>
</iteration-type>
<iteration-type id="design">
            <behavior>
                <role id="default">
                    <operation id="com.ibm.team.scm.client.deliver">
                        <preconditions>
                            <precondition id="com.ibm.team.process.deliver.prohibitCompilationErrors" xmlns="http://com.ibm.team.process/prohibitCompilationErrors"
                             name="Prohibit Workspace Errors"
                             description="Require that there are no errors in affected projects when a change set is delivered."
                             overrulable="true"/>
                            <precondition id="com.ibm.team.process.deliver.prohibitUnusedImports" xmlns="http://com.ibm.team.process/prohibitUnusedImports"
                             name="Prohibit Unused Java Imports"
                             description="Require that there are no unused imports in Java files when a change set is delivered. Note that the Eclipse Java compiler must be configured to create errors or warnings for unused imports for this to function."
                             overrulable="true">
                            </precondition>
                            <precondition id="com.ibm.team.process.deliver.requireWorkItem" xmlns="http://com.ibm.team.process/requireWorkItem"
                             name="Descriptive Change Sets"
                             description="All change sets should be associated with a work item which is planned for the current iteration.&#10;&#10;This makes it easier for the team to track its progress through the iteration and allows other users to understand why your changes were made."
                             overrulable="true">
                                <requires value="workitem-or-comment">
                                    <workitem owner="optional" target="optional"/>
                                </requires>
                            </precondition>
                        </preconditions>
                    </operation>
                </role>
            </behavior>
</iteration-type>
<iteration-type id="implementation">
            <behavior>
                <role id="default">
                    <operation id="com.ibm.team.scm.client.deliver">
                        <preconditions>
                            <precondition id="com.ibm.team.process.deliver.prohibitCompilationErrors" xmlns="http://com.ibm.team.process/prohibitCompilationErrors"
                             name="Prohibit Workspace Errors"
                             description="Require that there are no errors in affected projects when a change set is delivered."
                             overrulable="true"/>
                            <precondition id="com.ibm.team.process.deliver.prohibitUnusedImports" xmlns="http://com.ibm.team.process/prohibitUnusedImports"
                             name="Prohibit Unused Java Imports"
                             description="Require that there are no unused imports in Java files when a change set is delivered. Note that the Eclipse Java compiler must be configured to create errors or warnings for unused imports for this to function."
                             overrulable="true">
                            </precondition>
                            <precondition id="com.ibm.team.process.deliver.requireWorkItem" xmlns="http://com.ibm.team.process/requireWorkItem"
                             name="Descriptive Change Sets"
                             description="All change sets should be associated with a work item which is planned for the current iteration.&#10;&#10;This makes it easier for the team to track its progress through the iteration and allows other users to understand why your changes were made."
                             overrulable="true">
                                <requires value="workitem-or-comment">
                                    <workitem owner="required" target="optional"/>
                                </requires>
                            </precondition>
                            <precondition id="com.ibm.team.process.deliver.requireWorkItemApproval" xmlns="http://com.ibm.team.process/requireWorkItemApproval"
                             name="Peer Review"
                             description="Significant changes should be peer-reviewed before being shared with the team.&#10;&#10;The workitem associated with your change set requires a &quot;Review&quot; that is approved by a team member with the Developer role."
                             overrulable="true">
                                <requires>
                                    <approval type="Review">
                                        <approvers number-of-approvers="1" role="developer"/>
                                    </approval>
                                </requires>
                            </precondition>
                        </preconditions>
                    </operation>
                </role>
            </behavior>
</iteration-type>
<iteration-type id="testing">
            <behavior>
                <role id="default">
                    <operation id="com.ibm.team.scm.client.deliver">
                        <preconditions>
                            <precondition id="com.ibm.team.process.deliver.prohibitCompilationErrors" xmlns="http://com.ibm.team.process/prohibitCompilationErrors"
                             name="Prohibit Workspace Errors"
                             description="Require that there are no errors in affected projects when a change set is delivered."
                             overrulable="true"/>
                            <precondition id="com.ibm.team.process.deliver.prohibitUnusedImports" xmlns="http://com.ibm.team.process/prohibitUnusedImports"
                             name="Prohibit Unused Java Imports"
                             description="Require that there are no unused imports in Java files when a change set is delivered. Note that the Eclipse Java compiler must be configured to create errors or warnings for unused imports for this to function."
                             overrulable="true">
                            </precondition>
                            <precondition id="com.ibm.team.process.deliver.requireWorkItem" xmlns="http://com.ibm.team.process/requireWorkItem"
                             name="Descriptive Change Sets"
                             description="All change sets should be associated with a work item which is planned for the current iteration.&#10;&#10;This makes it easier for the team to track its progress through the iteration and allows other users to understand why your changes were made."
                             overrulable="true">
                                <requires value="workitem-or-comment">
                                    <workitem owner="required" target="optional"/>
                                </requires>
                            </precondition>
                            <precondition id="com.ibm.team.process.deliver.requireWorkItemApproval" xmlns="http://com.ibm.team.process/requireWorkItemApproval"
                             name="Required Approvals"
                             description="During Transition, all changes must be approved before being shared with the team.&#10;&#10;The workitem associated with your change set requires one &quot;Approval&quot; that is approved by an Architect and one that is approved by a Project Manager."
                             overrulable="true">
                                <requires>
                                    <approval type="Approval">
                                        <approvers number-of-approvers="1" role="architect"/>
                                        <approvers number-of-approvers="1" role="project_manager"/>
                                    </approval>
                                </requires>
                            </precondition>
                        </preconditions>
                    </operation>
                </role>
            </behavior>
</iteration-type>
</team-configuration>
</process-specification>