Click to See Complete Forum and Search --> : How to output array value


Srinivas_Sharma
10-24-2003, 05:46 AM
I got the foll. pl/sql code

DECLARE
thisvar TASKARRAY;
....
...

...

FOR TASK_REC IN TASK_CUR LOOP
thisvar := TASKARRAY();
FOR i in 1..n_recs LOOP
thisvar.extend();
thisvar(i) := TASK(task_rec.task_code,
task_rec.specified,
task_rec.bonus_amt,
'N/A',
task_rec.operative_no);


i need to output thisvar(i).values, how can i print the output.

Rgds

Srini

Srinivas_Sharma
10-24-2003, 06:43 AM
Hi guys

I got it working

Srini

ganga
10-26-2003, 10:44 AM
Hi Srini,

How did you get work?