Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Forms 4.5:Do you want to save changes?

Re: Forms 4.5:Do you want to save changes?

From: Vitaliy Mogilevskiy <vit100gain_at_earthlink.net>
Date: Tue, 16 Feb 1999 10:54:26 -0800
Message-ID: <7acer7$dii$1@holly.prod.itd.earthlink.net>


You probably have POST_QUERY TRIGGER on one of your BLOCKS Whenever you query that block or item it changes it's value which causes message:
"Do you want to save chances?"

To avoid this use this:


  1. Use VIEWS instead of joining two tables
  2. Put the following code in your POST_QUERY trigger:

record_id := to_number(:system.cursor_record); set_record_property(record_id,'<BLOCK_NAME>',STATUS,QUERY_STATUS);

Vitaliy Mogilevskiy Received on Tue Feb 16 1999 - 12:54:26 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US