Hi,
I am working on Apex 5.1.2. I have a requirement like I have to save, newly added rows in IG, in database table. But I have to save them through passing the rows to DB procedure (Not through the 'Automatic Row Processing' process).
Here is the procedure, it is getting parameters as "TYPE".
PROCEDURE pr_add_company_contact_data (
p_contact IN OUT pkg_prm_list.company_contact_type,
p_log_id IN NUMBER,
p_status OUT VARCHAR2);
Now I am not sure how can I pass, my newly created rows in IG, into this procedure.
Please help me out resolving this.
Thanks
Mudi