createBlankWorkPlan

Purpose

This operation creates a blank work plan for the specified project.

Input

One of the following:

  • Project ID

  • Project name

Return

If the operation is successful, no results are returned to the client.

Java Examples

See webservice_toolkit:

java\client\src\examples\pm\ProjectServiceClient.java

createBlankWorkPlan ()

String projectName = "Project 1";
// Create inpput document
CreateBlankWorkPlanDocument crtblkWpDoc =
CreateBlankWorkPlanDocument.Factory.newInstance();
// create and add an empty CreateBlankWorkPlan element
CreateBlankWorkPlan cbwp =
crtblkWpDoc.addNewCreateBlankWorkPlan();
// Create and add an empty WorkPlanInputType element
WorkPlanInputType wpit = cbwp.addNewProjectInput();
// Set the value for this element
wpit.setProjectName(projectName);
stub.createBlankWorkPlan(crtblkWpDoc);