Hi,
I am trying to add multiple entitlements using loop in my before provisioning rule for JDBC connector as below
AttributeRequest attributeRequest = new ProvisioningPlan.AttributeRequest();
attributeRequest.setName(attributeName);
attributeRequest.setOperation(ProvisioningPlan.Operation.Add);
attributeRequest.setValue(attributeValue);
The rule is working as expected and provisioning works as expected.
But the issue I faced, where Account Details of the JDBC account did not recognize entire added entitlements. It seems it only recognize the last entitlement added in the plan.
Scenario:
Entitlement A, Entitlement B, Entitlement C are added into provisioning plan in this sequence.
Upon successful provisioning and account created, under Account Details : Only Entitlement C shown under Entitlements
Not sure anywhere I am missing.