RollbackStep
Workflow Manager
This method is called whenever a Workflow is rolled back. Workflow Manager passes the information of the Workflow phase and step from where it is rolled back.
Syntax
This method has the following syntax:
RollbackStep(string ApplicationID, ref string AppXMLInfo)
Parameters
This method implements the following parameters:
Parameter |
Description |
strAppId |
Application ID of the current workflow request. |
strAppXMLInfo |
XML formatted string for the current workflow request. |
Example of strAppXMLInfo for RollbackStep
The following is an example of a strAppXMLInfo string for RollbackStep, with returned messages.
<ApplicationInfo>
<CompanyName>Workflow Consumer</CompanyName>
<AppId>5980ac99-e83d-46b8-97da-9f0419015e38</AppId>
<AppSName>WF assign </AppSName>
<AppLName>WF assign work event</AppLName>
<Rollback>
<FromPhase>817ac3bf-e4df-4fd6-b975-598401ae0b7a</FromPhase>
<FromStep>066734f2-7f87-43df-b6cc-b0cd48a378fe</FromStep>
<FromStepName>Step2</FromStepName>
<ToPhase>817ac3bf-e4df-4fd6-b975-598401ae0b7a</ToPhase>
<ToStep>b027c76d-8e47-4a7e-9d15-40c20c047030</ToStep>
<ToStepName>Step 1</ToStepName>
</Rollback>
</ApplicationInfo>
See Also