Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can i disable question - Do You Want to save ...

Status
Not open for further replies.

LimonaM

Programmer
Oct 27, 2004
50
SI
Hello

How can i disable question - Do You Want to save the changes? (Y,N,Cancle).


I put from LOV one entry to my form just to see it, but allways when i'm exiting my form this question appears.

Thanks
 
In which trigger? When i want to use enter query then this question appear.
 
Put the above code in a KEY-EXIT trigger.

For entering queries, use something like this:

in KEY-ENTQRY trigger:

Clear_Block(NO_VALIDATE);
Enter_Query;

in KEY-EXEQRY trigger:

Clear_Block(NO_VALIDATE);
Execute_Query;
 
In fact this is a normal behavior for auto generated master-detail relation.
When you change master record on-clear-details fires and calls Clear_All_Master_Details, containing clear_block(ask_commit) for detail block marked as changed if any. You may replace this behavior by editing Clear_All_Master_Details procedure or on-clear-details trigger.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top