executeWorkflowTransition
Purpose
This operation executes one workflow transition step from the current available steps.
Input
The following inputs are required:
-
Transition step name
The step name must be one of the visible step names available on the Project Details tab in the PPM user interface.
-
One of the following:
-
Project ID
-
Project name
-
Request ID
-
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
executeWorkflowTransition ()
String transition = "Launch";
ExecuteWorkflowTransitionDocument updateProjStatusDoc = ExecuteWorkflowTransitionDocument.Factory.newInstance();
ExecuteWorkflowTransition ups = updateProjStatusDoc.addNewExecuteWorkflowTransition();
// create projectInputType ProjectInputType pit = ups.addNewProjectInput(); pit.setProjectName(projectName);
ups.setTransition(transition);
stub.executeWorkflowTransition(updateProjStatusDoc)