Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: FRM-40401 Error
ebru2w wrote:
> Hi,
>
> I want to know how to vanish the frm-40401 message in my forms module ?
>
> Thank you
>
> --
> Posted via http://dbforums.com
In your form level on-error trigger
DECLARE
ErrCode NUMBER := error_code;
BEGIN
IF error_code = 40401 THEN
NULL;
END IF;
END;
Be careful what you wish for. Some might think it makes more sense to fix
the problem causing the error in the first place.
-- Daniel Morgan http://www.outreach.washington.edu/extinfo/certprog/oad/oad_crs.asp http://www.outreach.washington.edu/extinfo/certprog/aoa/aoa_main.asp damorgan_at_x.washington.edu (replace 'x' with a 'u' to reply)Received on Fri Aug 29 2003 - 10:24:30 CDT
![]() |
![]() |