If you developed custom workflow scripts using the Workflow API in previous versions of CA Identity Manager, do the following:
public void approvalRequired(ClientContextEJB clientContext, SymbolTable symbolTable, JobData ThisJobData) throws Exception
change it as follows:
public void approvalRequired(ClientContext clientContext, SymbolTable symbolTable, JobData ThisJobData) throws Exception
JobUserDataTable imsIdUD = job.getUserData("ims-id");
imsId = (String)imsIdUD.getVariableValue();
WorkflowContext workflowContext = (new
WorkflowCallbackHelper()).generateWorkflowContext(imsId);
change it as follows:
JobUserDataTable imsIdUD = job.getUserData("ims-id");
imsId = (String)imsIdUD.getVariableValue();
envOid = (String)job.getUserData("ime-id").getVariableValue();
WorkflowContext workflowContext = (new
WorkflowCallbackHelper()).generateWorkflowContext(imsId,envOid);
| Copyright © 2010 CA. All rights reserved. | Email CA Technologies about this topic |