Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: FRM-40401 Error

Re: FRM-40401 Error

From: Daniel Morgan <damorgan_at_exxesolutions.com>
Date: Fri, 29 Aug 2003 08:24:30 -0700
Message-ID: <3F4F702E.7E5E9725@exxesolutions.com>


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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US