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

Databa Se Animat Ion: Docume Ntation

The document discusses various Oracle Fusion Cloud products and modules including human capital management, financials, and supply chain management. It also provides information on the Oracle Fusion Cloud technology stack and how to create and query tables in Oracle databases. Examples are given of inserting, updating, and selecting data from tables to demonstrate SQL commands.

Uploaded by

syedmehar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views

Databa Se Animat Ion: Docume Ntation

The document discusses various Oracle Fusion Cloud products and modules including human capital management, financials, and supply chain management. It also provides information on the Oracle Fusion Cloud technology stack and how to create and query tables in Oracle databases. Examples are given of inserting, updating, and selecting data from tables to demonstrate SQL commands.

Uploaded by

syedmehar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 27

IT

Enterprise
Databa Web
Development
Animat Artificial Docume Resource
Intelligence ntation
se (HTTP) ion Planning
Admi
nistra
Prog
Programm Programm
Programming Microsoft Office Oracle
tion
ram
(DBA) ming ing Tools ing Tools Machines (Robots)
Word SAP

Power point
Outlook
E-Business Suite Oracle Version
(EBS, Oracle Apps) (1990 – Till Date)

Company Premises

Application Tier
Desktop Tier Database Tier
(Web Server)

Oracle Forms’
OAF, ADF, Oracle
Name: Ada
Reports Address: KHI
Phone: 9999

Server Server
Oracle Fusion Cloud
(SaaS)

User Premises Cloud

Application Tier
Desktop Tier Database Tier
(Web Server)

Java (ADF)
Reports
Name: Ada
Address: KHI
Phone: 9999

Server Server
Oracle Fusion Cloud
(PaaS)

Company Premises

Application Tier
Desktop Tier Database Tier
(Web Server)

Java (ADF)
Reports
Name: Ada
Address: KHI
Phone: 9999

Server Server
Oracle Fusion Cloud
PRODUCT LINE
(SaaS)

Human Capital Financial Supply Chain Project Portfolio


Management (HCM) Management (SCM) Management (PPM)

•Global HR •General Ledger •Demand & •Project


•Payroll
•Absence
•Account Planning Foundation
•Time & Labor (OTL) Receivable •Manufacturing •Project
•Talent Mgmt •Account •Inventory Contract
•Recruitment Cloud Payable •Order Mgmt. •Project Billing
(ORC) •Cash •Procurement •Project Costing
•Compensation Process
•Benefits Management
Process •Warehouse
Process •Project
•Learning •Fixed Assets (WMS) Performance
Fusion Human Capital Management Cloud
MODULES

Payroll Time & Labor


Global HR Talent Mgmt

Salary Timecard
Earning Time Entry Rules
Goals Deductions TimeProject
Calculation
Enterprise Structure Gross to Net TimeRules
People Profile Mgmt.
Jobs Performance Mgmt.
Succession
Grades
Position Career Development

Learning Benefits
Absence Compensation Recruitment Cloud

Mgmt.
Course Program Absence Types
Offering Plan
Learners Life Event Eligibility
Accruals

Base Pay Requisition

Grade Step Recruitment


Plan Candidate Pool
Plan Cycle
Budget Application Process
Hiring Process
Fusion Human Capital Management Cloud
MODULES FUNCTIONS

•Requisition •Enterprise, •Salary, Earning, •Housing


Publish Job •Interview Request People, Deduction •Car,
•Shortlist •Job, Grade, •Gross to Net Entertainment,
Apply •Accept/Hire Hire Position (Bonus) Insurance
Recruitment Human
Cloud/Taleo Resource Payroll Benefits

•Trainings •Scholl Fee


•Workshops •Seminar Fee,
, Courses Cinema Tickets

Learning
Compensation
Management

•Goals •Leaves
•Time Card
•Performan Entry

ce
•Holidays •Time Card
Calculation
Talent Absence Time
Management Management Management
Fusion Cloud Tracks

Techno-
Functional Technical
Functional

Requirement & Functional Data Load


Setup +Technical Reports
Alert
Integrations
Oracle Fusion Cloud
INTRODUCTION TO FINANCIALS
(SaaS)
Oracle Fusion Cloud
Technology Stack

BIP
Flex- Reports BI
Fields Analytics

Alert HCM Data


Composers Loader (HDL)
Fusion
HCM
Sandbox
Extracts
Fast Integrati
Formula on (OIC)
TO CREATE TABLE
CREATE TABLE EMPLOYEE(
EMP_NO NUMBER,
EMP_NAME VARCHAR2(20),
EMP_GRADE CHAR(1),
EMP_DOH DATE,
EMP_SALARY NUMBER,
EMP_DEPT NUMBER,
EMP_GENDER CHAR(1))

TO CREATE TABLE
CREATE TABLE DEPARTMENT(
DEP_NO NUMBER,
DEP_NAME varchar2(20))

TO VIEW TABLE LIST


SELECT * FROM USER_TABLES

TO VIEW THE TABLE STRUCTURE


DESC EMPLOYEE

TO INSERT DATA INTO TABLE


INSERT INTO DEPARTMENT VALUES(1,'Accounts')

SELECT * from employee

DETELE from employee

INSERT INTO EMPLOYEE (emp_no,emp_name,emp_salary) values(1,'Ada',10000)


INSERT INTO EMPLOYEE VALUES(1,'ADA','A','1-Jan-2020',10000,1,'F');
INSERT INTO EMPLOYEE VALUES(2,'LIBA','B','1-APRIL-2020',9000,3,'F');
INSERT INTO EMPLOYEE VALUES(3,'ATIKA','C','1-Jan-2019',9500,2, 'F');
INSERT INTO EMPLOYEE VALUES(4,'ALI','A','1-Jan-2018',8000,1,'M');
INSERT INTO EMPLOYEE VALUES(5,'RAVI','B','1-Jan-2017',6000,2,'M');
INSERT INTO EMPLOYEE VALUES(6,'THOMSON','A','1-Jan-2016',11000,1,'M');

INSERT INTO DEPARTMENT VALUES(1,'Accounts');


INSERT INTO DEPARTMENT VALUES(2,'IT');
INSERT INTO DEPARTMENT VALUES(3,'HR');

alter table employee add(GENDER CHAR(1))

UPDATE EMPLOYEE
SET EMP_GENDER='F'
WHERE EMP_NO IN (1,2,3)

UPDATE EMPLOYEE
SET EMP_GENDER='F'
WHERE EMP_GENDER != 'F'
select select
emp.emp_no, emp.emp_no,
emp.emp_grade, emp.emp_grade,
emp.emp_doh, emp.emp_doh,
emp.emp_salary, emp.emp_salary,
emp.emp_dept emp.emp_dept,
from dep.dep_name
employee emp from
order by employee emp,
emp.emp_salary desc department dep
where
emp.emp_dept = dep.dep_no
order by
emp.EMP_SALARY asc
select
emp.emp_no,
emp.emp_grade,
emp.emp_name,
emp.emp_doh,
emp.emp_salary,
emp.emp_dept,
decode(emp.emp_gender,'F','Female','M','Male','Unknown') emp_gender,
emp.emp_gender,
dep.dep_name
from
employee emp,
department dep
where
emp.emp_dept = dep.dep_no
and emp.emp_salary >= 8000
order by
emp.EMP_SALARY asc

select
emp.emp_no,
emp.emp_grade,
emp.emp_name,
emp.emp_doh,
emp.emp_salary,
emp.emp_dept,
decode(emp.emp_gender,'F','Female','M','Male','Unknown') emp_gender,
emp.emp_gender,
(select dep_name from department where dep_no = emp.emp_dept) dept_name
from
employee emp
where
emp.emp_salary >= 8000
order by
emp.EMP_SALARY asc
DDL – Data Definition Language
DQl – Data Query Language
TCL Transaction Language
DML – Data Manipulation Language
DCL – Data Control Language
Script
CREATE TABLE EMPLOYEE(
EMP_NO NUMBER,
EMP_NAME VARCHAR2(20),
EMP_GRADE CHAR(1),
EMP_DOH DATE,
EMP_SALARY NUMBER,
EMP_DEPT NUMBER,
EMP_GENDER CHAR(1) ,
JOB_ID NUMBER);
CREATE TABLE DEPARTMENT(
DEP_NO NUMBER,
DEP_NAME varchar2(20));
INSERT INTO EMPLOYEE VALUES(1,'ADA','A','1-Jan-2020',10000,1,'F',1);
INSERT INTO EMPLOYEE VALUES(2,'LIBA','B','1-APRIL-2020',9000,3,'F',2);
INSERT INTO EMPLOYEE VALUES(3,'ATIKA','C','1-Jan-2019',9500,2, 'F',3);
INSERT INTO EMPLOYEE VALUES(4,'ALI','A','1-Jan-2018',8000,1,'M',4);
INSERT INTO EMPLOYEE VALUES(5,'RAVI','B','1-Jan-2017',6000,2,'M',5);
INSERT INTO EMPLOYEE VALUES(6,'THOMSON','A','1-Jan-2016',11000,1,'M',5);
INSERT INTO DEPARTMENT VALUES(1,'Accounts');
INSERT INTO DEPARTMENT VALUES(2,'IT');
INSERT INTO DEPARTMENT VALUES(3,'HR');
select
emp_grade,
count(emp_no) totemp,
sum(emp_salary) totsal
from
employee
where 1=1
group by emp_grade
having sum(emp_salary) > 10000
order by emp_grade
create table jobs (
job_id number,
job_code varchar2(6),
status char(1));
create table jobs_tl(
job_id number,
name varchar2(200),
language varchar2(4));
insert into jobs values(1, 'ENG01','A');
insert into jobs values(2, 'ENG02','A');
insert into jobs values(3, 'ACT01','A');
insert into jobs values(4, 'ACT02','A');
insert into jobs values(5, 'MGR01','A');
insert into jobs values(6, 'EXE01','I');
insert into jobs_tl values (1,'Engineer', 'ENG');
insert into jobs_tl values (1,'‫'مهندس‬, 'AR');
insert into jobs_tl values (1,' エンジニア ', 'JP');
insert into jobs_tl values (2,'Engineer', 'ENG');
insert into jobs_tl values (2,'‫'مهندس‬, 'AR');
insert into jobs_tl values (2,' エンジニア ', 'JP');
insert into jobs_tl values (3,'Accountant', 'ENG');
insert into jobs_tl values (3,'‫'محاسب‬, 'AR');
insert into jobs_tl values (3,' 会計士 ', 'JP');
insert into jobs_tl values (4,'Accountant', 'ENG');
insert into jobs_tl values (4,'‫'محاسب‬, 'AR');
insert into jobs_tl values (4,' 会計士 ', 'JP');
insert into jobs_tl values (5,'Manager', 'ENG');
insert into jobs_tl values (5,'‫'مدير‬, 'AR');
insert into jobs_tl values (5,' マネジャー ', 'JP');
insert into jobs_tl values (6,'Executive', 'ENG');
insert into jobs_tl values (6,'‫'تنفيذي‬, 'AR');
insert into jobs_tl values (6,' エグゼクティブ ', 'JP');
Employee Department
dep_no

Job_id

Jobs Jobs
Job_id

create table jobs (


create table jobs_tl(
job_id number,
job_id number,
job_code varchar2(6),
name varchar2(200),
status char(1));
language varchar2(4));
select
emp.emp_no,
emp.emp_name,
emp.emp_grade,
emp.emp_doh,
emp.emp_gender,
dept.dep_name,
jtl.name
from
employee emp,
department dept,
jobs job,
jobs_tl jtl
where 1=1
and emp.emp_dept = dept.dep_no
and emp.job_id = job.job_id
and job.job_id = jtl.job_id
and jtl.language='JP'
1. Login into Fusion Applications
2. Introduction to Person Management
3. Explore BI Publisher
4. Data Model
5. Query
6. Parameter

You might also like