It's all about the answers!

Ask a question

How to create a new Plan Type .


vinitha dsouza (1451685) | asked Sep 30 '15, 2:30 a.m.
Hello

I am working on change management .

I want to create a new Plan Type ....Currently i do not see any option to create a new "Plan Type" under

Project Configuration-->Configuration Data-->Planning-->Plan Type.


Please Help ..

One answer



permanent link
Noel Gimeno (1521317) | answered Sep 30 '15, 11:17 a.m.
You can actually create a new Plan type and even configure your own Plan Views.

Look for the "com.ibm.team.apt.configuration.plantypes" configuration-data section in the Process Configuration Source.
Just as an example of Plan type using Agile scheduler:

  <plantype icon="/icons/obj16/iteration_plan.gif" id="com.ibm.personal.apt.plantype.myBL" name="My Sprint Backlog">
                    <planitems definition="com.ibm.team.apt.planitems.iterationPlan"/>
                    <planmodes default="com.ibm.team.apt.viewmodes.internal.workBreakdown">
                        <planmode definition="com.ibm.team.apt.viewmodes.internal.milestone.roadmap"/>
                        <planmode definition="com.ibm.team.apt.viewmodes.internal.developersTaskboard"/>
                    </planmodes>
                    <planchecks>
                        <plancheck definition="com.ibm.team.apt.plancheck.schedulingCheck"/>
                    </planchecks>
                    <scheduler definition="com.ibm.team.apt.scheduler.agileScheduler"/>
                </plantype>

Your answer


Register or to post your answer.