cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Assign role without provisioning to target system

Assign role without provisioning to target system

I had scenario where I wanted to provision the business role but not provision entitlements to the target system. This can be done very easily by setting argument noRoleExpansion to true while compiling the provisioning plan.

 

In a workflow,

 

<Step action="call:compileProvisioningProject" icon="Task" name="Compile Project" posX="121" posY="15" resultVariable="project">

    <Arg name="identityName" value="ref:identityName"/>

    <Arg name="plan" value="ref:plan"/>

    ...

   <Arg name="noRoleExpansion " value="true"/>   

   ...

 

</Step>

 

In a rule,

 

Provisioner prov = new Provisioner(context);

prov.setNoRoleExpansion(true);

ProvisioningProject proj = prov.compile(plan);

Labels (3)
Version history
Revision #:
3 of 3
Last update:
‎May 16, 2026 09:01 PM
Updated by: