Get All Form Items Procedure
543461Nov 6 2006 — edited Jan 19 2007Dear All,
i would like to create a procedure to retrieve the form items and save it into a table.
i.e:
create procedure retrieve_form_item( form_name in varchar2)
begin
code..........................
for loop
insert into table t1
values( block_name.item_name);
end;
end procedure;
and i will send the fmb to the procedure to call the form and then do the processing to get all the informations i need
thanks all