Saturday, August 11, 2018

1Z0-144 Oracle Database 11g: Program with PL/SQL

Exam Number: 1Z0-144
Exam Title: Oracle Database 11g: Program with PL/SQL
Associated Certification Paths Oracle Advanced PL/SQL Developer Certified Professional (Retiring June 30th, 2018)
Oracle PL/SQL Developer Certified Associate
Duration: 90 minutes
Number of Questions: 63
Passing Score: 65%
Validated Against:  This exam has been validated against Oracle Database 10g, Oracle Database 11g, Oracle Database 11g Release 2, and Oracle Database 12c Release 1.
Format: Multiple Choice

Complete Recommended Training

Complete the training below to prepare for your exam (optional):

Oracle Database: Program with PL/SQL

Certification Discount Package:Oracle PL/SQL Developer Certified Associate Certification Discount Package(ILT, LVC)

Additional Preparation and Information

A combination of Oracle training and hands-on experience (attained via labs and/or field experience) provides the best preparation for passing the exam.

Also available in Spanish - 1Z0-144-ESN on the Pearson VUE website.

Exam Preparation Seminar
Certification Exam Prep Seminar: Program with PL/SQL
Exam Prep Seminar Package: Program with PL/SQL

Practice Exams

Practice Exams: Oracle Authorized practice exam from Kaplan IT Training: 1Z0-144: Oracle Database 11g: PL/SQL Fundamentals

Additional Training: These earlier courses are still valid exam preparation tools but are no longer being scheduled:

Oracle Database 11g: Program with PL/SQL

Oracle Database 11g: PL/SQL Fundamentals
Introduction to PL/SQL
Explain the need for PL/SQL
Explain the benefits of PL/SQL
Identify the different types of PL/SQL blocks
Output messages in PL/SQL
Declaring PL/SQL Variables
Recognize valid and invalid identifiers
List the uses of variables, declare and initialize variables, use bind variables
List and describe various data types using the %TYPE attribute
Writing Executable Statements
Identify lexical units in a PL/SQL block
Use built-in SQL functions in PL/SQL and sequences in PL/SQL expressions
Describe when implicit conversions take place and when explicit conversions have to be dealt with
Write nested blocks and qualify variables with labels
Write readable code with appropriate indentation
Interacting with the Oracle Database Server
Create PL/SQL executable blocks using DML and transaction control statements
Make use of the INTO clause to hold the values returned by a SQL statement
Writing Control Structures
Identify the uses and types of control structures (IF, CASE statements and expressions)
Construct and identify loop statements
Apply guidelines when using conditional control structures
Working with Composite Data Types
Create user-defined PL/SQL records
Create a record with the %ROWTYPE attribute
Create an INDEX BY table and INDEX BY table of records
Describe the differences among records, tables, and tables of records
Using Explicit Cursors
Distinguish between usage of implicit and explicit cursors, use SQL cursor attributes
Declare and control explicit cursors, use simple loops and cursor FOR loops to fetch data
Declare and use cursors with parameters
Lock rows with the FOR UPDATE clause and reference the current row with the WHERE CURRENT OF clause
Handling Exceptions
Define PL/SQL exceptions
Recognize unhandled exceptions
Handle different types of exceptions (pre-defined exceptions, non-predefined exceptions and user-defined exceptions)
Propagate exceptions in nested blocks and call applications
Creating Stored Procedures and Functions
Differentiate between anonymous blocks and subprograms
Create a simple procedure and invoke it from an anonymous block
Create a simple function
Create a simple function that accepts a parameter
Differentiate between procedures and functions

Oracle Database 11g: Develop PL/SQL Program Units
Creating Procedures
Differentiate between anonymous blocks and subprograms, use a modularized and layered subprogram design, and identify the benefits of subprograms
Create a simple procedure and invoke it from an anonymous block
Work with procedures
Handle exceptions in procedures, remove a procedure, and display a procedure's information
Creating Functions
Differentiate between a procedure and a function
Describe the uses of functions
Work with functions (create, invoke and remove functions)
Creating Packages
Identify the benefits and the components of packages
Work with packages (create package specification and body, invoke package subprograms, remove a package and display package information)
Working with Packages
Overload package subprograms, use forward declarations
Create an initialization block in a package body
Manage persistent package data states for the life of a session and use PL/SQL tables and records in packages
Using Oracle-Supplied Packages in Application Development
Describe how the DBMS_OUTPUT package works
Use UTL_FILE to direct output to operating system files
Describe the main features of UTL_MAIL
Using Dynamic SQL
Describe the execution flow of SQL statements
Use Native Dynamic SQL (NDS)
Use the DBMS_SQL package
Design Considerations for PL/SQL Code
Create standard constants and exceptions
Write and call local subprograms
Control the run-time privileges of a subprogram
Perform autonomous transactions
Use NOCOPY hint, PARALLEL ENABLE hint and DETERMINISTIC clause
Use bulk binding and the RETURNING clause with DML
Creating Triggers
Describe different types of triggers and their uses
Create database triggers
Manage triggers
Creating Compound, DDL, and Event Database Triggers
Create triggers on DDL statements
Create triggers on system events
Using the PL/SQL Compiler
Describe the new PL/SQL compiler and features
Use the new PL/SQL compiler initialization parameters
Use the new PL/SQL compile time warnings
Managing PL/SQL Code
Describe and use conditional compilation
Hide PL/SQL source code using dynamic obfuscation and the Wrap utility
Managing Dependencies
Track and manage procedural dependencies

QUESTION
1
Which two statements are true about the instead of triggers? (Choose two.)

A. Delete operations cannot be performed using the instead of triggers.
B. The instead or triggers must be created to add or modify data through any view.
C. The instead of triggers can be written only for views, and the before and after timing options are not valid.
D. The check option for views is not enforced when Insertions or updates to the view are performed by using theinstead of trigger.

Answer: B,C

Explanation:


QUESTION 2
Which two statements are correct about the usage of parameters in functions? (Choose two.)

A. Functions can have only in mode parameters.
B. Functions called in SQL statements cannot have out or in outmode parameters.
C. Functions having in, out, or in out parameters can be called only in named PL/SQL subprograms
D. Functions having in, out, or in out parameters can be called In PL/SQL procedures and anonymous blocks.

Answer: B,D

Explanation:

QUESTION 3
User SCOTT has been granted CREATE ANY TRIGGER AND ALTER ANY TABLE by the DBA.
HR is an existing schema in the database.
SCOTT creates the following trigger:
CREATE OR REPLACE TRIGGER drop_trigger
BEFORE DROP ON hr.SCHEMA
BEGIN
RAISE_APPLICATION_ERROR (-20000, ‘Cannot drop object');
END:
SCOTT does not grant the execute privilege on this trigger to any other users.
For which user(s) would this trigger fire by default when they drop an object in the hr schema?

A. Only HR
B. SCOTT and HR
C. Only SCOTT
D. SCOTT, HR, and SYS

Answer: A

Explanation:


QUESTION 4
Which two statements are true about the continue statement? (Choose two.)

A. The PL/SQL block execution terminates immediately.
B. The CONTINUE statement cannot appearoutside a loop.
C. The loop completes immediately and control passes to the statement after end loop.
D. The statements after the continue statement in the iteration are executed before terminating the LOOP.
E. The current iteration of the loop completes immediately and control passes to the next iteration of the loop

Answer: B,E

Explanation:

QUESTION 4
Which two statements are true about statement-level and row-level triggers? (Choose two.)

A. A row trigger fires once even if no rows are affected.
B. A statement trigger fires once even if no rows are affected.
C. Row triggers are useful if the trigger action depends on the data of rows that are affected or on data that is provided by the triggering event itself.
D. Statement triggers are useful if the trigger action depends on the data of rows that are affected or on data that is provided by the triggering event itself.

Answer: B,C

Explanation:

Thursday, August 9, 2018

12COCM Oracle Database 12c Certified Master Exam

Exam Number: 12COCM
Exam Title: Oracle Database 12c Certified Master Exam
Associated Certification Paths Oracle Database 12c Administrator Certified Master
Duration: 2 days
Number of Questions:
Performance Based
Passing Score: 59.95%
View passing score policy
Validated Against: This exam has been validated against Oracle Database 12c Enterprise Edition Release 12.1.0.2.0.
Format: Performance Based

Complete Recommended Training
Complete the training below to prepare for your exam (optional):
Oracle Database 12c: Administration Workshop
Oracle Database 12c: Backup and Recovery Workshop
Oracle Database 12c: Managing Multitenant Architecture
Oracle Database 12c: ASM Administration
Oracle Database 12c: RAC Administration
Oracle Database 12c: Clusterware Administration
Oracle Database 12c: Data Guard Administration
Oracle Database 12c: Performance Management and Tuning
Additional Preparation and Information

A combination of Oracle training and hands-on experience (attained via labs and/or field experience) provides the best preparation for passing the exam.

Exam Delivery
The OCM is offered in English, regardless of exam location (except in Japan, it is offered only in Japanese).
Exam Retake Policy
Exam Cancellation Policy: Oracle Certified Master Exams are offered through Oracle University and are governed by the Oracle University Legal Terms & Policies.
You are not allowed to use your own keyboard. We recommend you practice on the type of keyboard you expect to find in OCM Test Center.
All countries, except those listed will use country-specific keyboards
United States, Canada, United Kingdom, Netherlands, Greece, Croatia, Italy, Poland, Romania, Slovak Republic, Egypt, Israel, United Arab Emirates, Saudi Arabia, South Africa, Hong Kong, Indonesia, India, Malaysia, Philippines, Singapore, Thailand, Vietnam, Australia, New Zealand.

Preparation
Review the OCM exam objectives to evaluate where you will need additional training and preparation.
Update your training with Oracle University’s advanced Database Administrator curriculum.
Refer to the Oracle Database12c documentation library available from the Oracle Technology Network
Practice in a representative environment (practice environment does not need to be on the exact OS and database software versions used in the OCM exam - see below). You can download Oracle products from the Oracle Technology Network. Use Oracle Linux operating system.
To prepare for the OCM exam, candidates should focus on mastering the tasks for each Skillset. Software can be downloaded from the Oracle Technology Network (OTN) to build a practice environment. Use the latest software available from OTN; it is not necessary to build a practice environment on the exact OS and database software versions used in the OCM exam. Later releases of Oracle server support nearly all features and functions of earlier ones; for any software version, relevant parameter values, naming differences and obsolete features may be found in the product documentation, which is available from OTN.
It is also recommended that candidates practice on the type of keyboard that they expect to find in OCM Test Center. All countries, except those listed will use country-specific keyboards:
United States, Canada, United Kingdom, Netherlands, Greece, Croatia, Italy, Poland, Romania, Slovak Republic, Egypt, Israel, United Arab Emirates, Saudi Arabia, South Africa, Hong Kong, Indonesia, India, Malaysia, Philippines, Singapore, Thailand, Vietnam, Australia, New Zealand.

Exam Environment
Oracle Linux Release 6.5 64 bit
Mozilla Browser, Text (emacs, gedit) and vi editors
Shell environment: bash, csh
Use either CLI or GUI environment and tools when available
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 64 bit
Oracle Grid Infrastructure 12c Release 1 (12.1.0.2)
Oracle Enterprise Manager Cloud Control 12c Rel 4

Notes about t he exam
Exam participants work through eight skillsets that are based on the exam objectives.
Tasks can be performed using CLI or GUI environment and tools when available

Minimum Skill-set wise Passing Scores:
Skillset1 : Create Database and Network Configurations : 60.29%
Skillset2: Managing Database Availability : 46.93%
Skillset3: Data Warehouse Management : 34.14%
Skillset4: Data Management : 33.92%
Skillset5: Performance Management : 39.13%
Skillset6: Data Guard : 43.39%
Skillset7: Grid Infrastructure : 53.84%
Skillset8: Real Application Cluster Database : 37.83%

General Database and Network Administration
Create and manage pluggable databases
Administer users, roles, and privileges
Configure the network environment to allow connections to multiple databases
Administer database configuration files
Configure shared server
Manage network file directories

Manage Database Availability

Install the EM Cloud Control agent?Configure recovery catalog
Configure RMAN
Perform a full database backup
Configure and monitor Flashback Database

Data Warehouse Management
Manage database links
Manage a fast refreshable materialized view
Create a plug-in tablespace by using the transportable tablespace feature
Optimize star queries
Configure parallel execution
Apply a Patch
Configure Automatic Data Optimization, In-Row Archiving, and Temporal Validity
Manage external tables

Data Management
Manage additional buffer cache
Optimize space usage for the LOB data
Manage an encrypted tablespace
Manage schema data
Manage partitioned tables
Set up Fine-Grained Auditing
Configure the database to retrieve all previous versions of the table rows

Performance Management
Configure the Resource Manager
Tune SQL statements
Use real application testing
Manage SQL Plan baselines
Capture performance statistics
Tune an instance
Configure and manage result cache
Manage extended statistics
Create and manage partitioned indexes
Control CPU use for Oracle Instances
Configure and manage "In Memory" features

Data Guard
Administer a Data Guard environment
Create a physical standby database
Configure a standby database for testing
Configure a standby database to apply redo
Configure a standby database to use for reporting
Configure fast start failover
Manage DDL in a Data Guard environment

Grid Infrastructure
Install Oracle Grid Infrastructure
Create ASM Disk Groups
Create and manage ASM instances
Configure ASM Cloud File System (ACFS)
Administer Oracle Clusterware
Manage Flex Clusters and Flex ASM

Real Application Cluster Database
Install Oracle Database software
Create a Real Application Clusters (RAC) database
Configure Database Services
Administer Oracle RAC databases on one or more cluster nodes

Wednesday, August 8, 2018

12COCMU Oracle Database 12c Certified Master Upgrade Exam

Exam Number: 12COCMU
Exam Title: Oracle Database 12c Certified Master Upgrade Exam
Associated Certification Paths Oracle Database 12c Administrator Certified Master (upgrade)
Duration: 1 day
Number of Questions: N/A
Passing Score: 59.17%
View passing score policy
Validated Against:

This exam has been validated against Oracle Database 12c Enterprise Edition Release 12.1.0.2.0.

Format: Performance Based
Complete Recommended Training

Complete the training below to prepare for your exam (optional):

Oracle Database 12c: New Features for Administrators
Oracle Database 12c: Data Guard Administration
Oracle Database 12c: High Availability New Features
Oracle Database 12c: ASM Administration
Oracle Database 12c: Clusterware Administration
Oracle Database 12c: RAC Administration

Additional Preparation and Information

A combination of Oracle training and hands-on experience (attained via labs and/or field experience) provides the best preparation for passing the exam.

Exam Delivery

The OCM is offered in English, regardless of exam location (except in Japan, it is offered only in Japanese).
Exam Retake Policy
Exam Cancellation Policy: Oracle Certified Master Exams are offered through Oracle University and are governed by the Oracle University Legal Terms & Policies.
You are not allowed to use your own keyboard. We recommend you practice on the type of keyboard you expect to find in OCM Test Center.
All countries, except those listed will use country-specific keyboards
United States, Canada, United Kingdom, Netherlands, Greece, Croatia, Italy, Poland, Romania, Slovak Republic, Egypt, Israel, United Arab Emirates, Saudi Arabia, South Africa, Hong Kong, Indonesia, India, Malaysia, Philippines, Singapore, Thailand, Vietnam, Australia, New Zealand.

Preparation

Review the OCM exam objectives to evaluate where you will need additional training and preparation.
Update your training with Oracle University’s advanced Database Administrator curriculum.
Refer to the Oracle Database12c documentation library available from the Oracle Technology Network
Practice in a representative environment (practice environment does not need to be on the exact OS and database software versions used in the OCM exam - see below). You can download Oracle products from the Oracle Technology Network. Use Oracle Linux operating system.
To prepare for the OCM exam, candidates should focus on mastering the tasks for each Skillset. Software can be downloaded from the Oracle Technology Network (OTN) to build a practice environment. Use the latest software available from OTN; it is not necessary to build a practice environment on the exact OS and database software versions used in the OCM exam. Later releases of Oracle server support nearly all features and functions of earlier ones; for any software version, relevant parameter values, naming differences and obsolete features may be found in the product documentation, which is available from OTN.
It is also recommended that candidates practice on the type of keyboard that they expect to find in OCM Test Center. All countries, except those listed will use country-specific keyboards:
United States, Canada, United Kingdom, Netherlands, Greece, Croatia, Italy, Poland, Romania, Slovak Republic, Egypt, Israel, United Arab Emirates, Saudi Arabia, South Africa, Hong Kong, Indonesia, India, Malaysia, Philippines, Singapore, Thailand, Vietnam, Australia, New Zealand.

Exam Environment

Oracle Linux Release 6.5 64 bit
Mozilla Browser, Text (emacs, gedit) and vi editors
Shell environment: bash, csh
Use either CLI or GUI environment and tools when available
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 64 bit
Oracle Grid Infrastructure 12c Release 1 (12.1.0.2)
Oracle Enterprise Manager Cloud Control 12c Rel 4

Notes about t he exam

Exam participants work through four skillsets that are based on the exam objectives.
Tasks can be performed using CLI or GUI environment and tools when available



Minimum Skill-set wise Passing Scores:

Skillset1 : General Database and Network Administration, and Backup Strategy : 55.56%
Skillset2: Data and Performance Management : 31.74%
Skillset3: Data Guard : 43.39%
Skillset4: Grid Infrastructure and RAC : 44.28%

General Database and Network Administration, and Backup Strategy

Create and manage pluggable databases
Create and manage users, roles, and privileges
Configure the network environment to allow connections to multiple databases
Protect the database from loss of data due to any kind of failure
Create and manage database configuration files

Data and Performance Management

Modify materialized views
Create a plugged-in tablespace by using the transportable tablespace feature
Create partitioned tables
Configure the database to retrieve all previous versions of the table rows
Configure the Resource Manager
Tune SQL statements
Perform real application testing
Create SQL Plan baselines

Data Guard

Create a physical standby database
Make the standby database available for testing
Restore the standby database to its normal function
Configure fast start failover

Grid Infrastructure and Real Application Clusters

Install Oracle Grid Infrastructure
Configure Oracle Flex ASM
Create ASM disk groups
Create and manage an ASM instance
Create ACFS
Start, stop, configure, and administer Oracle Grid Infrastructure
Install the Oracle Database 12c software
Create RAC databases
Configure services

Monday, July 16, 2018

1Z0-993 Oracle Engagement Cloud 2018 Implementations Essentials

Exam Number: 1Z0-993
Exam Title: Oracle Engagement Cloud 2018 Implementations Essentials
Associated Certification Paths Oracle Engagement Cloud 2018 Certified Implementation Specialist
Duration: 120 Minutes
Number of Questions: 76
Passing Score: 65%
View passing score policy
Validated Against:
Exam has been validated against Oracle Engagement Cloud 18A
Format: Multiple Choice

Complete Recommended Training
Implementing Engagement Cloud Learning Subscription

Additional Preparation and Information
A combination of Oracle training and hands-on experience (attained via labs and/or field experience) provides the best preparation for passing the exam.

Our certification exams are revised regularly to align with training and product release updates. Information about exam revisions and new topics are found on this page under 'Validated Statement' and within the exam topics below. Certifications reflect validated skills for year and product release version date of achievement. If you are preparing for this exam, we recommend you check these topics periodically to ensure your exam prep covers any new topics that may be added based on regular exam revision.

Initial Setup
Enable Engagement Cloud features
Describe the Engagement Cloud security model
Use Functional Setup Manager (FSM)

Service Request (SR) Management
Set up SR creation and handling
Configure a Service Request Category
Describe common SR processing activities
Identify common SR searches
Configure a Service Catalog
Implement an SR assignment mapping

Entitlements
Describe entitlement concepts (coverage, milestones)
Manage milestones
Set up standard coverage
Set up default coverage

Knowledge Management (KM)
Identify KM enablement activities (products/categories, security, features)
Author KM articles
Set up 'My Knowledge' page

Digital Customer Service (DCS)
Describe DCS architecture components (themes, templates, pages)
Describe DCS enablement activities (profiles, roles, authentication)
Describe DCS components (products, contact, KM, SR creator, admin)
Deploy an initial DCS application
Customize a DCS application

Omnichannel Communications
Perform Email set up a-ctivities (inbound setup, outbound setup, templates)
Describe CTI integration architecture
Configure CTI notifications
Configure media toolbar
Configure Chat

Productivity Features
Set up Hotkeys
Set up SmartText
Enable SR Audit

Advanced Configuration, Integration and Analytics

Identify mechanisms of Engagement Cloud customization
Use tools used to configure and customize Engagement Cloud
Explain Engagement Cloud integration architecture and mechanisms
Perform file-based import and export
Describe Analytics concepts (infolets, subject areas, queries)
Modify an Analytics report

Sunday, July 15, 2018

1Z0-979 Oracle Sales Performance Management Cloud Service 2017 Implementation Essentials

Duration: 90
Number of Questions: 75
Passing Score: 67%
View passing score policy
Validated Against: This exam has been validated against R13. (Previous version of this exam was validated against R12 in 2017)
Format: Multiple Choice
Complete the training below to prepare for your exam (optional):
Oracle Sales Cloud Learning Subscription (Individuals & Companies | Partners)
Additional Preparation and Information

A combination of Oracle training and hands-on experience (attained via labs and/or field experience) provides the best preparation for passing the exam.

Sales Performance Management
Our certification exams are revised regularly to align with training and product release updates. Information about exam revisions and new topics are found on this page under 'Validated Statement' and within the exam topics below. Certifications reflect validated skills for year and product release version date of achievement. If you are preparing for this exam, we recommend you check these topics periodically to ensure your exam prep covers any new topics that may be added based on regular exam revision.

Initial Setup
Set up Enterprise, Industry, Business Unit, Calendar and Parameters
Manage Roles, Users, Visibility, and Security
Define and enable Geographies
Enable Incentive Compensation Columns

Customers and Opportunities
Enable Customer Data Management
Set up Sales Predictor and Recommendations
Configure Sales Methods and Sales Coach
Configure Templates and Assessments

Territory Management and Assignment Rules
Plan for Territory Assignment
Manage Synchronization and Schedulable Processes
Explain Configuration Activities
Manage Sales Territories
Manage Assignment

Measure Performance
Manage Quota Formulas and Plans
Describe the capabilities of Sales Analytics
Define access points for reports

Compensation Plans
Configure Classification Rule Hierarchies and Credit Categories
Create Performance Measures
Build Plan Components
Design Rate Tables and Rate Table Dimensions
Build Expressions
Set up Estimated Compensation
Explain Plan Copy

Participants
Deploy Employees, Resources, and Suppliers
Import Participants
Enable Participant Data
Implement Roles and Participant Assignments
Create Paygroups and Payment Plans
Describe a Plan Acceptance workflow

Crediting and Rollup
Design a crediting process with hierarchy and rollup
Describe the different process sequences
Explain how to enable custom qualifiers
Execute Collection, Import, and Classification processes
Run and troubleshoot processing
Explain different calculation modes

Advanced Plan Structures and Calculations
Build advanced expressions
Use Intervals, including interval-to-date and year-to-date
Use Performance Measure outputs and interdependent Plan Components
Use Phases and Sequences
Describe user-defined functions
Use Objective Base Performance Incentives (Management By Objectives)

Cloud Implementations
Describe Cloud instance management, including Patching, Upgrades, and Clones
Plan cloud incentive compensation projects
Describe a testing strategy, a go-live, and a process handoff


Friday, July 13, 2018

1Z0-977 Oracle Partner Relationship Management Cloud 2017 Implementation Essentials

Exam Number: 1Z0-977
Exam Title: Oracle Partner Relationship Management Cloud 2017 Implementation Essentials
Associated Certification Paths Oracle Partner Relationship Management Cloud 2017 Certified Implementation Specialist
Duration: 105
Number of Questions: 65
Passing Score: 65%
View passing score policy
Validated Against: This exam has been validated against R13. (Previous version of this exam was validated against R12 in 2017)
Format: Multiple Choice

Complete Recommended Training
Oracle Sales Cloud Learning Subscription (Individuals & Companies | Partners)

Additional Preparation and Information
A combination of Oracle training and hands-on experience (attained via labs and/or field experience) provides the best preparation for passing the exam.

Partner Relationship Management
Our certification exams are revised regularly to align with training and product release updates. Information about exam revisions and new topics are found on this page under 'Validated Statement' and within the exam topics below. Certifications reflect validated skills for year and product release version date of achievement. If you are preparing for this exam, we recommend you check these topics periodically to ensure your exam prep covers any new topics that may be added based on regular exam revision.

Configure Channel Sales
Describe Partner on-boarding process
Set up Organizations and Users
Create Partner Accounts and Partner Contacts
Importing Channel Sales Users
Manage Roles, Visibility, and Security
Enable Oracle Social Network for Partner

Deal Registration
Explain Deal Registration for Partners
Set Up Deal Registration
Set Up Approvals and Workflows

Deal Management

Administer Leads
Configure Sales Leads and Conversion
Manage Partner Opportunities and Quote
Configure Opportunity Management

Partner Programs
Create workflows and notifications
Configure Partner Programs and Business Plans
Manage Enrollments

Marketing Development Funds
Configure Budgets
Describe MDF Requests and Claims Process
Configure Profile Options and Lookups for MDF

Territory Management and Assignment Rules
Plan for Territory Assignment
Configure Channel Sales Territory Assignment
Manage Sales Territories

Business Intelligence
Define access points for reports
Display Partner Data
Enable Analytics in Sales Cloud Pages

Extensibility
Describe Configuration Considerations for PRM
Extend Custom Fields and Pages for Partners
Use WebServices for Integrations




Thursday, July 5, 2018

1Z0-994 Oracle Learning Cloud 2018 Implementation Essentials

Exam Number: 1Z0-994
Exam Title: Oracle Learning Cloud 2018 Implementation Essentials
Associated Certification Paths Oracle Learning Cloud 2018 Certified Implementation Specialist
Duration: 120 Minutes
Number of Questions: 76
Passing Score: 67%
View passing score policy
Validated Against: Exam has been validated against Oracle Learning Cloud 18A
Format: Multiple Choice

Complete Recommended Training

Additional Preparation and Information
A combination of Oracle training and hands-on experience (attained via labs and/or field experience) provides the best preparation for passing the exam.

Our certification exams are revised regularly to align with training and product release updates. Information about exam revisions and new topics are found on this page under 'Validated Statement' and within the exam topics below. Certifications reflect validated skills for year and product release version date of achievement. If you are preparing for this exam, we recommend you check these topics periodically to ensure your exam prep covers any new topics that may be added based on regular exam revision.

Learning Cloud Setup
Set up Evaluations
Enable Social Learning Network conversations in Learning Cloud
Set up Profile Options
Set up Scheduled Processes for Learning Cloud
Set up flexfields in Learning Cloud

Learning Cloud Security
Set up and manage Learner Self Service Security
Set up and manage Line Manager Self Service Security
Set up and manage Administrator Self Service Security

Self-Paced Offerings

Upload and manage Content
Create and manage Courses
Create and manage Offerings

Instructor-Led and Blended Offerings
Manage ILT Offerings and resources
Manage Blended Offerings
Manage Offering Activities

Specializations
Manage sections, completion rules and other attributes

Learning Requests, Assignments and Initiatives
Set up and manage Learning Requests and Approvals
Create and manage Learning Assignments
Create and manage Learning Initiatives

Learning Catalog
Apply Access Rules
Describe Access Groups

Learning Communities
Manage Membership
Manage Community Catalog
Manage Community Assignments

Bulk Upload Data
Upload Learning History
Upload Catalog Items

Other Learning Cloud features
Create and manage Learning Outcomes and Evaluations
Add Contextual Learning to Learning Cloud or other HCM modules
Create Reports and Analysis
Create Notifications and set up the process