Reports

SQL Analytical function using PARTITION BY Clause

SELECT CASE             WHEN ROW_NUMBER ()                  OVER (PARTITION BY C.SUPPLIER_ID ORDER BY C.SUPPLIER_ID) =1                   THEN  C.SUPPLIER_NAME || '(' || C.SUPPLIER_ID || ')' ELSE NULL END                 SUPPLIER_NAME,…

How TO Report Column background color in Oracle Apex.

For Interactive Report ================ Step-1 : Create Interactive Report --> SQL Query :  SELECT EMPLOYEE_ID,FULLNAME,F_DEPT(DEPARTMENT_ID) DEPARTMENT,BASIC_SALARY,GROSS_SALARY FROM EMPLOYEES Step-2 : You must set Static id specific column C…

Color Cell in an Interactive Report

Step-1 : Create a new page. You must be select Interactive Report. --> SQL Query : SELECT EMPLOYEE_ID,FULLNAME,F_DEPT(DEPARTMENT_ID) DEPARTMENT,BASIC_SALARY,          CASE WHEN BASIC_SALARY <= 15000 THEN 'data-style="background-color:g…

Conditional Column Formatting and color set

Step-1 : Create a new page and select Classic Report. --> SQL Query :  select EMPLOYEE_ID,FULLNAME,F_DEPT(DEPARTMENT_ID) DEPARTMENT,BASIC_SALARY,        case when BASIC_SALARY < 10000 then 'red'             when BASIC_SALARY between 10…

Conditionally Classic report row Color

Step-1 : Create a new page and select table or SQL Query. Type : Classic report Step-2 : Create Page Load Dynamic Action --> Name : row_color --> Action : Execute javascript code --> Code : $('td[headers= "BASIC_SALARY" ]&#…

Show Notification on Interactive Report in Oracle Apex

Step-1 : Simply you create Interactive Report (My report Animals Sell Based) and Select template type as Standard. Step-2 : Create a new item (as like : P4_NOTIFICATION). Type - Hidden Step-3 : Set the Default value for that item ( P4_NOTIFICATION)  a…

Card View Report in Oracle Apex

If you want this. then flowing the steps Step 1 : Create classic Report (as like) select ROWID,   dbms_lob.getlength("IMAGE") CARD_TITLE,   ANIMAL_TYPE CARD_TEXT,   'Buy Price :  '||to_char(BUYING_price,'99,99,999.99') CAR…

Create Box Style link in classic report (Oracle Apex)

If you are interested to add box style in Link in the following way: 1. At first go to page edit and select the Column ( as like "DEPARTMENT_ID" )    Below the code Copy and paste "Link Attributes"                            clas…

Load More
That is All