Version 8.4.
I am trying to build a workflow for vendor creation form. I am trying to add a step to buildIdentity model, but I cannot see ‘getIdentityModel’ in the call method. Any idea, what is missing
Version 8.4.
I am trying to build a workflow for vendor creation form. I am trying to add a step to buildIdentity model, but I cannot see ‘getIdentityModel’ in the call method. Any idea, what is missing
Hello @himabindu306
Could you please elaborate more on how actually are you using it? getIdentityModel comes with OOTB libraries and thus require a call. Below is the snippet to use it
<Step action="call:getIdentityModel" icon="Task" name="Build Identity Model" resultVariable="identityModel">
<Arg name="identityName" value="ref:identityName"/>
<Arg name="expandLinks" value="true"/>
<Arg name="expandIdentity" value="true"/>
<Description>
For now, build a map of the data. Eventually this will use the Identity
transformer to build a Map based on an existing identityName, or
Identity object.
</Description>
<Transition to="Update IdentityModel"/>
</Step>
Hello @himabindu306
Its always better to share problem code so that right repsonse can be provided. getIdentityModel can be called by passing identityName.
<Step action="getIdentityModel" name="Get Identity Model" resultVariable="identityModel">
<Arg name="identityName" value="ref:identityName"/>
<Transition to="Next Step"/>
</Step>
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.