Hi
Apex 18
I have a page load process that loads data into the page items.
After this I have another process to show an error on ther page
if p_lk_bem is null
then
APEX_ERROR.ADD_ERROR(
p_message => 'Add a note',
p_display_location => apex_error.c_inline_in_notification
);
end if;
When the page loads, no error is shown
Any ideas why ?
Regards
Gus