Not able to use raise application error in oracle forms
Below is my code
When in used rasie_application_error in program unit proc
Iam getting compilation error
'identifer RAISE_APPLICATION_ERROR' must be declared.
I have used this in my exception below is the code.
Exception
WHEN NO_DATA_FOUND THEN
RAISE_APPLICATION_ERROR (-20001, 'This ID is invalid');
END;
Can anyone help me in this