Hello
I am new to One Identity manager, and am basically setting up a custom process.
I have created a process via the process Orchestration in designer tool and I want this process to execute a custom script stored in the Script library of One Identity manager
I have developed the custom script, and I want the process step to pass some parameter values to this custom script, but I am not sure on how to do that.
I have defined the parameters in the process step ( parameterValue0: Value = $firstname$) , parameterValue1: value= $Lastname$ etc)
so how can I pass these parameters to my process step?
for eg I want my code to execute as shown below:
Dim firstName As String = (ParameterValue0 from the parameter I have set in the process step)
Dim lastName As String = (ParameterValue1 from the parameter I have set in the process step)
Can someone help me with correcting my code to have the parameters read from the process step?
Thank you