Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Problem with Apex_application.f01(i),Apex_application.f02(i),

NarenderNov 11 2011 — edited Nov 14 2011
Hi,

I have written Apex_item.check box,apex_item.text in SQL query,so i got check box and text item to each row in a report..
here my requirement is that i should pass text item value which has enable the check box so in Process i have written code like..


FOR i IN 1 .. APEX_Application.g_f01.COUNT
LOOP
apps.napp_start_ir_pkg.generate_report_data(APEX_Application.g_f01(i)
,APEX_Application.g_f02(i)
);
END LOOP;
COMMIT;

Here the issue is I have enabled 5 check boxes randomly i.e row 1,5,6,8,9 and entered values in a text item respectively after that i click submit button.so here APEX_Application.g_f02(i) are passing null values to the procedure..

How can i pass text values to procedure?

I have been facing this problem for a 10 days..can you please guide me how to write code in process for passing the text values also..

Thanks in advance...



Regards
Narender B
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 12 2011
Added on Nov 11 2011
10 comments
1,158 views