Hi All,
We’ve deployed our cloud rule in local I’m able to check the use cases it was working as expected but in tenant it failed, It shows “There was an exception while calculating the value for this attribute. Error running rule transform:sailpoint.tools.GeneralException: The application script threw an exception: java.lang.IllegalArgumentException: Supported operations include “StartsWith” and “Equals” only. BSF info: CloudLifeCycleState”
String hasUidAttribute = identity.getAttribute("uid");
String hasUid = hasUidAttribute != null ? hasUidAttribute.trim() : null;
int count = idn.countIdentitiesBySearchableIdentityAttribute("uid", "equals", "hasUid");
Is this because I used “equals” where system allows only “Equals” ?