Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to handle FRM-40508 error

1049879Feb 16 2015 — edited Feb 20 2015

Hello guys,

I am trying to display a message when this error occurs. I used the following code in my save button , it didn't work.

I am using Developer 6i

declare

errcode NUMBER := ERROR_CODE;

dbmserrcode NUMBER;

dbmserrtext VARCHAR2(200);

begin

IF errcode = -40508 THEN

Message('Your number is too large. Try again.'); message(' ');

end if ;

I used the positive value  of the number, it also didn't work. How do I show a message ?

I also get an error if I want to use the form builder help and it opens the windows help

Do you have any idea how to solve such a problem?

This post has been answered by HamidHelal on Feb 20 2015
Jump to Answer

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Mar 20 2015
Added on Feb 16 2015
3 comments
1,459 views