Hello Sailors,
if(object != void){
String type = (string) object.getObjectType();
if(type != null && type.equalsIgnoreCase (“group”)){
String userName = object.getAttribute(“service”);
if(userName != null && userName.equalsIgnoreCase(“xyz”))
return object;
}
}
When I plug in the above customization rule to get only some groups out of all groups from a webservices app it is fetching only the requested group
But problem is
When I run account aggregation it is successful but not returning any accounts
When I remove this account aggregation is working file
I want both account aggregation and some entitlements from this custom rule
Where I’m missing any leads will help me
Thanks in advance