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 error at runtime

Hi

Under APEX 24 I have a validation. It works well on SQL commands. But at runtime an error message is displayed :

“Error during treatment of validation” :

select 1
 from ve_reservation
where date_reservation = TO_DATE(:P10_DATE_RESERVATION, 'DD/MM/YYYY')
  and exists (
      select 1
        from ve_reservation
       where date_reservation = TO_DATE(:P10_DATE_RESERVATION, 'DD/MM/YYYY')
       group by date_reservation
       having count(*) < 20
    )
  and rownum = 1;

Best regards.

This post has been answered by Christian Pitet 2 on Mar 19 2025
Jump to Answer
Comments
Post Details
Added on Mar 17 2025
2 comments
155 views