Warning Message While Validating object function with Boolean input
(Doc ID 2563981.1)
Last updated on JUNE 22, 2022
Applies to:
Oracle Fusion Sales Cloud Service - Version 11.13.19.04.0 and laterInformation in this document applies to any platform.
Goal
Customer created object function with Boolean input.
While calling the function with Boolean parameter they are getting warning message.
However the trigger is working fine functionally.
Trigger Name : AccountMandatoryFields
--------------------------------------------
if(adf.util.doNotProcess()) {
return true;
}
boolean flag = false
if (X_MandatoryFields_c != "Y") {
flag = true
}
AccountMandatoryFields(flag)
----------------------------------------------------
Warning(10,1) : Cannot find matching method
run#AccountMandatoryFields(boolean). Please check if the declared type is
right and if the method exists.
This is issue for all object function with Boolean input.
Solution
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Goal |
Solution |