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!

apex_application.g_print_success_message

894843Jan 4 2012 — edited Nov 25 2012
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 23 2012
Added on Jan 4 2012
10 comments
37,440 views