Hi All,
Using APEX 5.1.3 with universal theme. I have a dynamic action to throw APEX_ERROR through a PLSQL code.
Somehow it is not getting triggered at all.
I verified the conditions of the event which is fired on change. All good.
When I use a javascript action with an alert statement it seems to work fine.
alert("show error");
I replace this 'Execute JavaScript Code' action with 'Execute PLSQL code' and within the PLSQL code just have something like this does not seem to throw an error.
begin
APEX_ERROR.ADD_ERROR(p_message => ' Show ERROR', p_display_location => apex_error.c_inline_in_notification);
end;
Please advise what's happening here, Is dynamic actions with PLSQL in reality AJAX.
Thanks