I’m trying to skip the creation of an identity Cube during aggregation using the Customization rule on Workday. I am returning null from the rule if I encounter a specific criteria
Hi @rishavghoshacc ,
Please add the loggers and evaluate the resource object.
if(object != null) {
log.error(object.toXml());
//if you are getting the resouce object, you can further add your condition
return object;
}
return null;