hi
How do I insert records in my table based on a selection from LOV or a select list?
e.g.
3 items are selected and I want to insert three records
begin
for i in 1..selection.count loop
insert into mytable
(a,b,c) values (:a,:b,:c);
end loop;
end;
How do I capture the count here?
I am working on 5.1