Trying to use the following statement inside an event
IF EXPENSE_RULE_VALUE in ('STD') and #USER_ID# not in ('7889','013588') THEN
Raise_application_error(-20199,'Select the expense t : ' || EXPENSE_RULE_VALUE || ' can not be used any more' );
END IF;
But we encounter the below error
>ORA-06550]: line 27, column 74:
PLS-00201: identifier 'IFSAPP' must be declared
ORA-06550: line 27, column 2:
any way to use the #USER_ID# properly ?