Hi
I'm working with my first Apex application project. My requirement is to add the check box for the rows in interactive report and pick the selected rows and print a bar code based on the value.
I'm using the Apex version of 5.1.1.
I already managed to develop the pages and DML operations. After reading couple of articles I used the APEX_ITEM.CHECKBOX function to add a line o the IR source sql.
select apex_item.checkbox(1,b.badge_id,'UNCHECKED') "PRINT",
b.badge\_id,

But the form output does not produce proper checkbox item instead of the text output. What type should I select ?

What would be the advise on how should I retrieve the selected (checked) rows and how to produce a PDF output on button action.
Rajeev De Silva.