Showing posts from September, 2022

How to create cool Dashboard in Oracle Apex by using Template

At first go to Shared Components and click the Template- Step 1: COPY Template "Value Attribute Pairs - Row" and name as "system_dash" --> Step 2: Row Template 1(Value Required)----> <div class="javainhand #CONTAIN…

Group Above report by HTML

declare   V_COMPANY_NAME VARCHAR2(100):='Golen Dairy Farm';   v_dept_name     VARCHAR2(100):='Department wise employees';   N number:= 1;   gsl number(10):=0; begin --------------------- htp.p(' <a id="b_exit" type=&…

User type wise Menu || Table Based Menu show

If you want to do that. then follow the steps STEP-1 CREATE TABLE USERTYP ( ID VARCHAR2(1), NAME VARCHAR2(50) ); INSERT INTO USERTYP (ID,NAME) VALUES ('1','ADMINISTRATOR'); INSERT INTO USERTYP (ID,NAME) VALUES ('2','CONTR…

Oracle BI Publisher Installation

Oracle BI Publisher Overview What is Oracle BI Publisher? Oracle BI Publisher is the reporting solution to author, manage, and deliver all your reports and documents easier and faster than traditional reporting tools. What do you like best about Ora…

How to Auto generate Primary Key while CSV file Upload in oracle Apex

If you want CSV file upload in oracle apex. but its haven't PK/UNIQUE column. Without  PK column most important problem to make web application in Oracle Apex. you can this problem solve . if you flowing my steps. Step-1 CREATE TABLE  DEMO_DEPAR…

Time Function: calculate total Time (HH:MI:SS format)

CREATE OR REPLACE FUNCTION F_WORKING_TIME    (START_TIME    VARCHAR2,   END_TIME   VARCHAR2)    RETURN   VARCHAR2  IS    V_TIME_IN                 NUMBER(10);    V_TIME_OUT                NUMBER(10);    VHH                       VARCHAR2(8);    VMM …

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…

Total Amount Calculation (Master-Details Table) in Oracle Apex

If you have page item "TOTAL_AMOUNT" (MASTER TABLE) and "AMOUNT" column in the Interactive Grid (DETAILS TABLE) See my table Structure :  Master table SQL> desc Purchase_master  Name                                      Null? …

How To Add Custom Search Option in Report & Interactive Grid

Create Search Option Flowing the steps --> 1. At first create "SEARCH" item in the EMPLOYEES_LIST report.    And you can select icon " fa-search " 2. execute when page loads -- create DAYNAMIC ACTION and select Action "Ex…

Introduction to Oracle PL/SQL

About PL/SQL About PL/SQL :   • Stands for “Procedural Language extension to SQL”  • Is Oracle Corporation’s standard data access language for relational databases  • Seamlessly integrates procedural constructs with SQL           Benefits of PL/SQL :…

How to create DASHBOARD in oracle Apex by using Template :

At first go to Shared Components and click the  Template- Step 1 :  COPY Template " Value Attribute Pairs - Row " and name as DASH -> Step 2:   Go to   Template    DASH              <------ Row Template 1(Value Required)----> <d…

That is All