How to use the Classic Report Print Button in Oracle Apex<strong></strong><strong> How to use the Classic Report Print Button in Oracle Apex</strong> ; <strong> 1. Create a Classic Report</strong> ; <strong> 2. Create a Button, Name-Print</strong> ; <strong> 3. Go-to Button Properties -> Icon- fa-print</strong> ; <strong> 4. Create dynamic action on the Print button -> Name- Print</strong> <strong> Advanced -> Event Scope - Static </strong> 1. Action -> Execute JavaScript Code -> Paste the following code - var navCollapsed = 0; if ($("body").hasClass("js-navExpanded")) { $("#t_Button_navControl").click(); navCollapsed = 1; }; setTimeout(3000); //////// Hide //////// //Hide Navigation Bar List $("#t_Header").hide(); //Hide Navigation Menu $("#t_Body_nav").hide(); //Hide Breadcrumb $("#t_Body_title").hide(); //Hide Content Offset $("#t_Body_content_offset").hide(); //Hide Report Column Edit Link $(".apex-edit-page").hide(); //Hide Report Download Links $(".t-Report-links").hide(); //Hi…