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?