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: pop up window in form

Re: pop up window in form

From: Venkatesh Krishnamoorthy <vkrishnamoorthy_at_worldnet.att.net>
Date: 1998/03/31
Message-ID: <6fqjgj$por@bgtnsc03.worldnet.att.net>#1/1

In the block property sheet set the records displayed to whatever number you want.
When the user hits the accept button write When Button Pressed trigger
go_block('block name');
first record;
loop

    sum_value := sum_value + record_value;     exit when :system.last_record ='TRUE';     next_record;
end loop;
sum_tally_field_original_screen := sum_value; if the original screen is in the same form then just assign it as :block.field value.
If it the differernt form then you might have to use parameters. Hope it helps

Venkatesh Krishnamoorthy Received on Tue Mar 31 1998 - 00:00:00 CST

Original text of this message

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