I have customized one workflow. In that workflow I configured 2 inline forms.
And I have configured “userID” as one of the field in my 1st inline form. now I need to use this “userID” value in my 2nd form. How to use the userId in 2nd form?
Hi @shruthi_m,
Define the “userID” variable in the workflow.
<Variable editable="true" name="userID">
<Description>user ID.</Description>
</Variable>
Include the return attribute and specify the userID in the first form.
<Approval name="form1" owner="ref:launcher" return="userID" >
You can reference the userID in the second form.
<Field displayName="user ID" helpKey="enter the identity Name" name="userID" required="true" type="string"/>
Regards,
Arun
1 Like
Thanks Arun Kumar.
But I already tried this approach. it’s not working.
Could you please share the workflow?
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.