Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Validation in Page Item | Oracle APEX 21.1

Omar BaigNov 22 2022

I have 2 page items (a, b) and their "Type" is "Number". I create validation on item "a" and validation "Type" is "Function Body (returning Boolean)" and PL/SQL code is
BEGIN
IF NVL(:a, 0) <= NVL(:b, 0) THEN
return true;
ELSE
return false;
END IF;
END;
furthermore i use "Expression" as well where "SQL Expression" is
NVL(:P8_PORD_VALUE, 0) <= NVL(:P8_UBALANCE, 0)

but these are not working properly.

This post has been answered by fac586 on Nov 22 2022
Jump to Answer
Comments
Post Details
Added on Nov 22 2022
2 comments
779 views