Search This Blog

Thursday, May 23, 2019

Error Message In Oracle Apex

Red Error :

<h7 style="color:#de0a0a;">#SQLERRM_TEXT#</h7>

Error Message Like Raise_application_error.

apex_error.add_error(
p_message=> 'Error Message!!!' ,
p_display_location=> apex_error.c_inline_in_notification   
) ;

No comments:

Post a Comment

Search String Inside Oracle Database Objects SQL

SELECT owner, name, type, line, text  FROM dba_source WHERE instr(UPPER(text), UPPER('string')) > 0;