exportWorkPlanFromProject
Purpose
This operation exports all the tasks in a work plan.
Function
Rather than all data, only those properties that are defined in the TaskType data type are exported.
Input
One of the following:
-
Project name
-
Project ID
Return
If the operation is successful, a list of tasks as defined in the TaskType is returned to the client.
Java Examples
ExportWorkPlanFromProjectDocument expWPDoc = ExportWorkPlanFromProjectDocument.Factory.newInstance();
ExportWorkPlanFromProject expWP = expWPDoc.addNewExportWorkPlanFromProject(); WorkPlanInputType wpit = expWP.addNewWorkPlanInput();
wpit.setProjectName(projectName);
ExportWorkPlanFromProjectResponseDocument expWPResDoc = stub.exportWorkPlanFromProject(expWPDoc);
TaskType[] tasks = expWPResDoc.getExportWorkPlanFromProjectResponse().getReturnArr ay();