Currently, our implementation uses the standard Create Identity form in SailPoint IIQ, and it has been functioning well for our existing requirements. However, we now have a new use case: we need to collect additional information after the first form is submitted. This requires displaying a second form immediately after the first one is completed and submitted.
Challenge Encountered
To address this, I created second form in the LCM Create and Update workflow. While I was able to trigger the first form as expected, the second form did not appear immediately as desired. Instead, it was routed as a WorkItem, which breaks the continuity and simplicity of the process for the end-user.
Key Questions
Is this achievable with the OOTB (Out-of-the-Box) Create Identity form functionality? I haven’t seen any clear documentation or example that supports sequential form rendering directly using standard configuration.
Plan Behavior in LCM Workflows: LCM Create and Update workflow requires a plan. However, it’s unclear when this plan is generated, how it is passed into the workflow, and where we can hook into it. if we wanted to insert additional steps or forms.
Avoiding Custom Workflows: While I’m aware this could be accomplished with a fully custom workflow, I’m trying to keep the solution as simple and maintainable as possible
You can begin with a custom input workflow that gathers the required data through multiple forms;
once all information is captured, build the identity object and call the standard LCM create/update workflow.
Yes, I agree with you 100% that we can do it that way. However, problem is we have to define each form in custom workflow then generating a plan and using custom models to store data. making it complex.
I was asking for multiple forms for create identity OOTB. Is it possible? or can we add form in LCM create and update, it will pop up directly after submitting the create identity form.
Thank you so much for code snippet. That’s what I mentioned in my previous reply either we need to work on custom identity model or identity model and then compile a plan. At the end send that to the LCM create and update.
As I can see from your comments, I think it is not possible with create identity form?
The reason i am looking something like this is because our customer is already familiar with this workflow along with it’s working. Changing everything just for a simple form is not an ideal solution, we can expand this form if not possible.
If updating the workflow is too complex, the only viable alternative is to merge all forms into a single form—though this will degrade the user experience