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,…
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…
Conditionally Bar Chart (SQL Code) ========================= Step-1 : Create a new page. --> Create region. Name : Conditionally Bar Chart (SQL Code) --> type : Chart --> Attributes--> Type : Bar --> Series --> Type : SQL Qu…
Go to your page design Step-1 : Select your item (my selected item "fullname") --> Advanced : Custom Attributes : onkeypress="fn_upper(this)"; Step-2 : Function and Global Variable Declaration : function fn_uppe…
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…
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…
If you want Go to next item by "Enter" press. then following the steps... Go to Page Property : JavaScript Group : --> Execute when Page Loads : (this code Copy to paste) $( 'body').on('keydown', 'input, select…
If you want to delete multiple rows single click. Then you following the steps.... Step-1 : Create Blank Region --> Type : Interactive Report --> SQL Query : Use the following code SELECT apex_item.hidden(01,EMPLOYEE_ID)|| apex_ite…