Sailpoint IIQ Quicklink Launch Workflow showing Form Value
1. Create a quick link make sure the below category is created follow the step from the previous post
1. Create a quick link make sure the below category is created follow the step from the previous post
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE QuickLink PUBLIC "sailpoint.dtd" "sailpoint.dtd"> <QuickLink action="workflow" category="Service Account Management" messageKey="Manage Service Account" name="Service Account View QuickLink"> <Attributes> <Map> <entry key="workflowName" value="Service Account View Workflow"/> </Map> </Attributes> <Description>QuickLink to View Service Account in IIQ table</Description> <QuickLinkOptions allowSelf="true"> <DynamicScopeRef> <Reference class="sailpoint.object.DynamicScope" name="Self Service"/> </DynamicScopeRef> </QuickLinkOptions> </QuickLink>
2.Import the form created in the previous post
3.import the below Workflow
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE Workflow PUBLIC "sailpoint.dtd" "sailpoint.dtd"> <Workflow explicitTransitions="true" name="Service Account View Workflow"> <Variable editable="true" input="true" name="launcher"> <Description>Launcher name.</Description> </Variable> <Variable initializer="true" name="transient"/> <Variable initializer="true" name="trace"> <Description>Used for debugging this workflow and when set to true trace will be sent to stdout.</Description> </Variable> <Step icon="Start" name="Start" posX="229" posY="21"> <Transition to="Display Form"/> </Step> <Step icon="Approval" name="Display Form" posX="427" posY="21"> <Approval mode="serial" name="Display Form" owner="ref:launcher"> <Arg name="workItemType" value="Approval"/> <Arg name="workItemDescription" value="Service Account Details"/> <Arg name="workItemForm" value="string:Service Account Details Form"/> <Arg name="workItemFormBasePath"/> </Approval> <Description> Display the Service Account form . </Description> <Transition to="Stop"/> </Step> <Step icon="Stop" name="Stop" posX="611" posY="21"/> </Workflow>