Which IIQ version are you inquiring about?
*8.4
All,
We have a webservice application where we use group aggregation to pull entitlement values. But entitlements are getting created twice one with appguid in value and one with correct value. But two records are gettign created for single entitlement as below
Can you please suggest how do we remove this dupe entitlement creation.
Group aggregation after rule
Map resultMap = new HashMap();
//List listOfObjects = new ArrayList();
for (Map map : processedResponseObject){
String nativeIdentity = map.get(“Name”);
String GroupId = map.get(“Id”);
}
return processedResponseObject;
