Step:1 : Create items to set count of rows and display item to represent pagination. Also create buttons to navigate different pages. PXX_FROM – From Value PXX_TO – To Value PXX_MAX – Max Value PXX_PAGINATION – Rows per page PXX_PAGINATION_DISPLAY – Pagination Display Buttons: Save and Next,Save and Previous, First Page,Last Page Step:2: Restrict data with specified range in report query, Query is displayed as follows SELECT master_item_id, master_item_id_display, master_pdvd_id, item_id, col1, col2, col3, col4, col5, col6, col7, col8, col9, NULL, “Check”, active_ind, SEQUENCE, “replicate_of” FROM (SELECT ROWNUM rm, master_item_id, master_item_id_display, master_pdvd_id, item_id, col1, col2, col3, col4, col5, col6, col7, col8, col9, NULL, “Check”, active_ind, SEQUENCE, “replicate_of” FROM (SELECT c001 master_item_id, seq_id master_item_id_display, c002 master_pdvd_id, c003 item_id, c004 col1, c005 col2, c006 col3, c007 col4, c008 col5, c009 col6, b.c010 col7, c011 col8, NULL col9, NULL, NULL “Check”, c012 active_ind, (SELECT display_order FROM pdvd_tb_lov_dict WHERE lov_id = b.c008) SEQUENCE,…
Read More