Hi all..
Please help me with the following issue.
I have a PL/SQL process on a page (after submit process).
I am using
""apex_application.g_print_success_message"" variable to show any error message.
Ex: apex_application.g_print_success_message := 'Process failed at this step';
It seems "apex_application.g_print_success_message" variable is for success messages .
I want my "'error message"" to show in the same way as my ""validation error messages"" , as they are really ""error message"".
I also tried to use ""apex_application.g_notification"" but it didn't worked. My message is not showing up.
I tried to use the following code, but it seems it counts the error count
only for the ""validation error messages"" , not the error message that i set in the process.
{code}
if nvl(apex_application.g_inline_validation_error_cnt,0) = 0 then
<real code here>
end if;
{code}
Thanks