Hi all,
Is there a way to skip the creation of an identity Cube during aggregation? Something besides Customization rule?
Thanks in advance
Hi all,
Is there a way to skip the creation of an identity Cube during aggregation? Something besides Customization rule?
Thanks in advance
Hi @rishavghoshacc,
if return null into the customization rule, the identity will be not created.
@rishavghoshacc ,
If you are trying to aggregate nonauthoritative sources, you can check the prosperity in the aggregation task “Only create links if they can be correlated to an existing identity.”
If you need an authoritative source, you can return a null resource object for specific conditions or call object.setDelete(true) before returning the resource object.
Thank you
Siva
please try the below code and see
String fileNumber="FILENUMBER";
String empId = object.getAttribute(fileNumber);
if (Util.isNotNullOrEmpty(empId)){
if (empId.equalsIgnoreCase("xxxxxx")){
return null;
}
}
return object;