Hi all,
While trying to aggregate a single account from Workday I am getting the below error:
Could not get ResourceObject: EE1234
But when I remove the customization rule, it works. The customization has a logic to return null for a few specific Filenumbers.
Am I missing something?
Thanks in advance
How you are calling single account aggregation ? via custom rule ?
@rishavghoshacc one option you can try, either create another rule or method and use deepCopy(context) and setCustomizationRule(null)
Application appObject = context.getObjectByName(Application.class, applicationName);
appObject = (Application) appObject.deepCopy(context);
if(skip) appObject.setCustomizationRule(null);
String appConnName = appObject.getConnector();
...continue next steps.
Let me know your thoughts.