WORKAROUND
Modify the Migration Wizard classes.xml file to include Automation Workflow parameters
- Navigate to C:\Program Files (x86)\One Identity\Active Roles\7.2\ConfigurationTransferWizard\Scripts\Common
- Take a backup of the classes.xml file
- Open the classes.xml file in a text editor
- Locate the following line/header
- <Class objectClass="edsAutomationWorkflowDefinition" IsContainer="false" weight="3">
- Add the following line underneath
- <attribute name="edsaWorkflowParameters" type="WorkflowParameter" />
- Save and close the file
Sample Original text
<Class objectClass="edsAutomationWorkflowDefinition" IsContainer="false" weight="3">
<attribute name="displayName" type="DirectoryString"/>
<attribute name="description" type="CDATA" />
<attribute name="edsaWorkflowDefinition" type="Workflow" />
<attribute name="edsaWorkflowIsDisabled" type="Boolean" />
<attribute name="edsaWorkflowScheduleSettings" type="DirectoryString"/>
</Class>
Sample Modified text
<Class objectClass="edsAutomationWorkflowDefinition" IsContainer="false" weight="3">
<attribute name="displayName" type="DirectoryString"/>
<attribute name="description" type="CDATA" />
<attribute name="edsaWorkflowDefinition" type="Workflow" />
<attribute name="edsaWorkflowIsDisabled" type="Boolean" />
<attribute name="edsaWorkflowParameters" type="WorkflowParameter" />
<attribute name="edsaWorkflowScheduleSettings" type="DirectoryString"/>
</Class>
These changes must be implemented on both the Source and the Destination servers.
STATUS
Waiting for fix in a future release of Active Roles.