Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Hi Team,
we are facing issues with Business Rules Execution.
we are using WC 11.1 M010.
While execution Only prepareForValidation() is getting executed not the performValidation() method as we can see SOP in MS logs, hence empty validationResult, code doesnt show any errors even after we have enabled the logs trace levels.
is there any steps that i am missing while calling the business rule?
any suggestions why this issue is occurring ?
Do you have the object type you're trying to validate in the list of supported classes?
Example for WTDocument.class
@Override public Class[] getSupportedClasses(RuleValidationKey rVKey) { return new Class[] {WTDocument.class}; }