How to create and show html report by ajax callback and print report in Oracle Apex
Codes related to the tutorials ==========================HTML Code======================= declare cursor c1 is select rownum sl, item_name, item_no from items where cat_id = apex_application.g_x01 and item_type = apex_application.g_x02; begin htp.p(' <div id="print_area"> <div class="rpt-main"> <div class="rpt-header"> <h2>ABC COMPANY LIMITED</h2> <p>Akshya Nagar 1st Block 1st Cross, Rammurthy nagar, Bangalore-560016</p> </div> <div class="rpt-content"> <span>'||get_category(apex_application.g_x01)||' Report</span> <table class="rpt-tbl"> <thead> <tr> <th>SL#</th> <th>Item Name</th> <th>Item No</th> </tr> </thead> <tbody>'); for i in c1 loop htp.p('<tr> <td>'||i.sl||'</td> <td>'||i.item_name||'</td> <td>'||i.item_no||'...