thebull1
Programmer
- Oct 24, 2001
- 68
I have a non-displaying datablock that is being populated using the following cursor:-
for readingrec in reading loop
:db_gross_next.rtime := readingrec.rtime;
:db_gross_next.meter_read := readingrec.meter_read;
ll_curr_gross := Get_Block_property('db_gross_next',current_record);
next_record;
end loop;
My problems are:-
1. The count ll_curr_gross remains as 1(One) throughout even when the cursor loops many times...
2. Consequently, I have some code on the post_change of :db_gross_next.meter_read that is not executed at all, which I xpected at next_record of every loop run..
Please help...
for readingrec in reading loop
:db_gross_next.rtime := readingrec.rtime;
:db_gross_next.meter_read := readingrec.meter_read;
ll_curr_gross := Get_Block_property('db_gross_next',current_record);
next_record;
end loop;
My problems are:-
1. The count ll_curr_gross remains as 1(One) throughout even when the cursor loops many times...
2. Consequently, I have some code on the post_change of :db_gross_next.meter_read that is not executed at all, which I xpected at next_record of every loop run..
Please help...