how to supress system messages [message #82190] |
Mon, 05 May 2003 02:18 |
Nancy
Messages: 19 Registered: March 2002
|
Junior Member |
|
|
hi,
i have commit in my forms. so when i run the forms, it is telling FRM-40401 NO CHANGES TO SAVE. I HAVE TO ELIMINATE THIS MESSAGE.Can anybody help me.
Thanks in advance
Nancy.
|
|
|
|
Re: how to supress system messages [message #82193 is a reply to message #82190] |
Mon, 05 May 2003 03:59 |
|
Maaher
Messages: 7065 Registered: December 2001
|
Senior Member |
|
|
From Forms Help:
----------------------------------------------------------------------
When you build multiple-form applications, you might want to suppress messages regarding transaction posting and committing. To do so, set the SYSTEM.MESSAGE_LEVEL system variable to 5 just before a post or commit, then reset it to the desired value.
----------------------------------------------------------------------
This clearly states the way to do what you want (suppressing information messages).
To make the messages of lowest severity disappear, put this in the WHEN-NEW-FORM-INSTANCE: :SYSTEM.Message_level:=5;
MHE
|
|
|