Hi All,
In my apllication i am handling raised application error as shown below:
IF pcount > 0 THEN
RAISE_APPLICATION_ERROR
(-20002,
'Symbol is available in Work in Progress .
Click here to go back.'
);
END IF;
it is displaying as it is the error, but for the endsuer will say that is an oracle error. \
So what i have done insetad of that i have use return statemengt as shoen below:
RETURN '<font size="7" color="red">'Symbol is available in Work in Progress
Click here</font> <font size="7" color="red">to generate.</font>';
This will not work in plsql, then i have tried using with
IF pcount > 0 THEN
apex_application.g_print_success_message := '<font size="7" color="red">'Symbol is available in Work in Progress please
Click here</font> <font size="7" color="red">to generate.</font>';
In this case the message is not all displaying at all..
How to handle this scenerio'
Thanks in Advance,
Anoo..
Edited by: Anoo on Dec 9, 2009 8:51 AM