Change Insert message [message #82815] |
Mon, 07 July 2003 23:43 |
Anju
Messages: 33 Registered: September 2000
|
Member |
|
|
Hi friends,
Can anyone tell me is it possible to change the insert message in form programmatically or any other way or to get rid of that message. I mean as we insert a record, it gives us message frm-XXX : 1 Record inserted....some thing like that.
I want to change that message to some different message or just get rid of that. Can anyone tell me how to do that?
And also let me know whether is it possible to do it or not.
Thanks in advance,
Anju
|
|
|
|
Re: Change Insert message [message #82822 is a reply to message #82815] |
Tue, 08 July 2003 00:48 |
SCP
Messages: 21 Registered: June 2003
|
Junior Member |
|
|
Just set the message level using the System Variable
SYSTEM.MESSAGE_LEVEL.The message severity levels are
0, 5, 10, 15, 20, or 25. The default value is 0.
Just set SYSTEM.MESSAGE_LEVEL:=value.All the messages below the indicated severity level will be suppressed.
Or else you can use the ON_MESSAGE trigger and supress the message.
|
|
|
|