Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: pop up window in form
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
![]() |
![]() |