Create Plan with owner by Team Area in Prosess Template
Dear All,
in RTC process template , we can create Team Area and Categories automatically with Project Area Initialization
Create Team Area and Categories in Prosess Template.
We want to create Plan that the owner attribute selected by Team Area that already created
in my follow up action the onwer of Release Plan 1.0 by Project Area
is this possible ?
Thanks..
in RTC process template , we can create Team Area and Categories automatically with Project Area Initialization
Create Team Area and Categories in Prosess Template.
<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">
<team-area name="Telkomsel Team" timeline="development"/>
<workitems>
<category htmlDescription="Common Workitem." path="Application Management"/>
</workitems>
</followup-action>
We want to create Plan that the owner attribute selected by Team Area that already created
in my follow up action the onwer of Release Plan 1.0 by Project Area
is this possible ?
<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">
<plans>
<plan iterationPath="/development/release1" name="Release Plan 1.0" typeId="com.ibm.team.apt.plantype.default"/>
</plans>
</followup-action>
Thanks..