Hello Everyone,
I am working on a requirement where I have to add members to AD group. I am able to create plan below
<ProvisioningPlan>
<AccountRequest application="AD App" nativeIdentity="CN=test,OU=test,DC=dev,DC=test,DC=com" op="Modify">
<AttributeRequest name="memberOf" op="Add" value="CN=testgroup,OU=test_POC,DC=dev,DC=test,DC=com"/>
</AccountRequest>
</ProvisioningPlan>
While I am compiling this entire plan is converting as project (expected), but adding Create plan.
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE ProvisioningProject PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<ProvisioningProject identity="myIdentity">
<Attributes>
<Map>
<entry key="doRefresh" value="false"/>
<entry key="noFiltering" value="false"/>
<entry key="noLocking" value="true"/>
<entry key="optimisticProvisioning" value="false"/>
<entry key="source" value="LCM"/>
</Map>
</Attributes>
<MasterPlan>
<ProvisioningPlan>
<AccountRequest application="AD App" nativeIdentity="CN=test,OU=test,DC=dev,DC=test,DC=com" op="Modify">
<AttributeRequest name="memberOf" op="Add" value="CN=testgroup,OU=test_POC,DC=dev,DC=test,DC=com"/>
</AccountRequest>
<Attributes>
<Map>
<entry key="source" value="LCM"/>
</Map>
</Attributes>
</ProvisioningPlan>
</MasterPlan>
<Messages>
<Message key="No account creation template for application: AD App" type="Info"/>
</Messages>
<ProvisioningPlan targetIntegration="AD App" trackingId="35e0c37b16774bXXXXXX">
<AccountRequest application="AD App" nativeIdentity="CN=test,OU=test,DC=dev,DC=test,DC=com" op="Create">
<AttributeRequest name="memberOf" op="Add" value="CN=testgroup,OU=test_POC,DC=dev,DC=test,DC=com"/>
</AccountRequest>
<Attributes>
<Map>
<entry key="source" value="LCM"/>
</Map>
</Attributes>
</ProvisioningPlan>
</ProvisioningProject>
This requested user already having the AD account in that application and I don’t have any create provisioning policies set.
How can I remove/rectify that additional create plan from the master plan.
By running the above plan getting below error
ERROR https-jsse-nio-443-exec-1 sailpoint.connector.RPCService:554 - Exception occurred while executing the RPCRequest: Errors returned from IQService. “The object already exists. 00002071: UpdErr: DSID-030503C4, problem 6005 (ENTRY_EXISTS), data 0 . HRESULT:[0x80071392] For identity: CN=test,OU=test,DC=dev,DC=test,DC=com”
Any suggestions can helps.