Provisioning

Make CorrelationConfiguration available in uniqueness check scripts
Currently, the CorrelationConfiguration is not available in the uniqueness check script through the ActionContext . Because of this, when performing uniqueness checks in correlation scenarios, the correlation values need to be manually defined in the uniqueness check script. Why this is a problem The same configuration effectively needs to be maintained in two places: The Correlation Configuration of the target system. The uniqueness check script. When correlation attributes are added or changed, the uniqueness check script must also be updated manually. This creates duplicate configuration and makes it easy to overlook one of the locations. If these configurations become inconsistent, uniqueness checks may behave incorrectly. For example, during a correlate scenario with a unique value without iteration, the uniqueness check may incorrectly detect the person's own account as a conflict. Suggested Improvement Make the CorrelationConfiguration available in uniqueness check scripts through the ActionContext . This would allow the uniqueness check script to dynamically use the configured correlation attributes instead of requiring them to be manually duplicated. This would: Prevent duplicate configuration. Reduce the risk of configuration inconsistencies. Make uniqueness check scripts more generic and reusable across connectors. Prevent issues when correlation attributes are changed without updating the uniqueness check script. In short: expose the CorrelationConfiguration through the ActionContext so uniqueness check scripts can use the configured correlation values directly.
0
Load More