0% found this document useful (0 votes)
80 views

APEX Wizard Application Report Forms Latest

This document provides an overview of Oracle Application Express (APEX) and how to use the Oracle APEX application builder. It discusses accessing APEX, navigating the application builder interface, creating database objects like tables and views using SQL scripts, and building different types of applications like interactive reports, classic reports, interactive grids, and reports with forms using the APEX wizard functionality. The document provides step-by-step instructions on tasks like defining page attributes, linking pages, and specifying data sources to generate various interactive page types and preview the end user experience.

Uploaded by

Bayan Marhoon
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
80 views

APEX Wizard Application Report Forms Latest

This document provides an overview of Oracle Application Express (APEX) and how to use the Oracle APEX application builder. It discusses accessing APEX, navigating the application builder interface, creating database objects like tables and views using SQL scripts, and building different types of applications like interactive reports, classic reports, interactive grids, and reports with forms using the APEX wizard functionality. The document provides step-by-step instructions on tasks like defining page attributes, linking pages, and specifying data sources to generate various interactive page types and preview the end user experience.

Uploaded by

Bayan Marhoon
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 45

Oracle Application Express

(APEX)
ITCS 495: Wizard Application

Taken From: Webster University


Access to Oracle APEX
http://ora12:8080/apex

Workspace: st followed by ID
User: st followed by ID
Password: ID
Using Application Builder
Oracle SQL and PL/SQL script
Navigating the Application Builder
Install and run the demonstration applications
Navigating between pages
GUI components
Reports and forms
Create application
Oracle SQL
DDL with create and drop
Create table, primary key and foreign key
Create sequence
Create view
Drop objects
DML with Insert, update, delete
Transaction management with commit and rollback
Maintain your database with script files
For create, data, and drop
Create Tables
Create table
Column names
Data type
Constraints
Create Views
Create Sequences
Create sequence
For generating primary key
Start with
CREATE SEQUENCE MEMBER_SEQ INCREMENT BY 1 START WITH 1;
Increment by CREATE SEQUENCE PHONE_SEQ INCREMENT BY 1 START WITH 1;
Drop Objects
The DROP command is used to remove any database
object from the database
DROP TABLE MEMBER;
DROP SEQUENCE MEMBER_SEQ;
DROP VIEW MEMBER_LIST;
Data Manipulation
DML – data manipulation language
INSERT
UPDATE
DELETE
Transaction management
COMMIT
ROLLBACK
Function and Stored Procedure
Trigger
Trigger
A named PL/SQL block stored in a database and
executed implicitly when a triggering event occurs
What Is Application Builder?
Application Builder is an environment to build
applications
Assemble an HTML interface (or application) on top
of database objects such as tables and views
Through wizards or direct input
Each application is a collection of pages linked
together using tabs, buttons, or hypertext links
Using Application Builder
Accessing application builder
Application builder home
View icons/details
Application home
Application Properties
Configuring the application properties
General definition
Security settings
Globalization attributes
Page
A page is the basic building block of an application
Pages also contain user interface elements such as
tabs, lists, buttons, items, and regions
To see the definition of each page belonging to your
application, you use the Page Definition page
Page rendering
Page processing
Shared components
Page and Page Definition
Page Definition
Page Rendering
Controls and logic that are executed when a page is
rendered
Page rendering is the process of generating a page from the
database
Page Processing
Logic controls (such as computations and processes) that
are evaluated and executed when the page is processed
Shared Components
Components used by the current page that can also be
referenced by other pages within your application
Create Report
Create a report using wizard For department
Tables DEPT and EMP from demo application
Inside Application builder
Create 
Interactive Report
Interactive Report (Page Attributes)
Interactive Report (Navigation Menu)
Interactive Report (Data Source: Table/View)
Interactive Report (Report Source)
Report Page Created Successfully
Interactive Report: Preview End User
Classic Report
Classic Report (Page Attributes)
Classic Report (Navigation Menu)
Classic Report (Report Source)
Classic Report Created Successfully
Classic Report: Preview End User
Interactive Grid
Interactive Grid (Page Attributes)
Interactive Grid (Navigation Menu)
Interactive Grid (Report Source)
Interactive Grid Created Successfully
Interactive Grid: Preview End User
Report with Form
Report with Form(Page Attributes)
Report with Form (Navigation Menu)
Report with Form (Data Source)
Create Form - Columns and Primary Key
Report with Form Created Successfully
Report with Form: Preview End User (Report Page)
Report with Form: Preview End User (Form Page)

You might also like