disabling save option in custom designed form in oracle applications [message #86065] |
Thu, 26 August 2004 22:58 |
senthilc
Messages: 1 Registered: August 2004
|
Junior Member |
|
|
Hi,
can anyone help me.I have designed one form which is used only for displaying data from the pracle apps backend.there is no insert or update operation carried out.but when i tried to close the form it pops up one message box saying that
"do you want to save the changes "
i dont want this message to be displayed.i want to disable it.
plz help.thanks in advance
with regards,
senthilc
|
|
|
Re: disabling save option in custom designed form in oracle applications [message #86079 is a reply to message #86065] |
Sat, 28 August 2004 22:02 |
omar
Messages: 19 Registered: February 2002
|
Junior Member |
|
|
Hi,
You get that message because one or more records in the
datablocks you have created have been changed. you can avoid this by setting the (insert,update,delete) properties of the datablocks to no , or user CLEAR_BLOCK(NO_COMMIT) when exiting the form ! this will clear the block and when the form exits there will be no changes and thus no message will be displayed!
hope it will work
|
|
|