SlideShare a Scribd company logo
1 of 76
Download to read offline
Primavera Unifier Cost
Controls and Project Delivery
Modules – Tips & Tricks
Ray McEntee
Senior Principal Product Manager
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.2
Agenda
§  Query Based Tabs
§  BI Publisher Custom Prints
§  Payment Application Custom Print
§  BP Help Files
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.3
Query Based Tabs
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.4
Query Based Tabs
§  We want to be able to view records from related business processes
within the tabs of a business process record.
–  Quicker access to related records
–  Can create records without having to navigate to the related business
process log.
–  Better usability.
Use Case
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.5
Contract Business Process Record
Line Items tab
Two tabs displaying
the related Change
Orders and Payment
Applications
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.6
Contract Business Process Record
Change Orders tab
From the Change
Order tab you can
open the Change
Orders or even create
a new Change Order.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.7
Contract Business Process Record
Payment Applications tab
From the Payment
Applications tab you
can open the
Payment Applcations
or even create a new
Payment Application.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.8
Contract Business Process Record
Summary Elements
Define Summary
Elements for Total,
Count, Average,
Maximum and Minimum
of the records displayed
ion the Query Based Tab
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.9
Query Based Tabs
§  Define the tab, the business process records to be displayed and the
data element that establishes the link between the two BPs
§  Define the Item Log which includes the name of the tab and the query
conditions to define which records to display.
§  Create any Summary Elements that are required.
§  Add the Summary Elements to the Forms
Steps to create them.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.10
Query Based Tabs
Select the Business
Process that is the
source for the Query
Based Tab
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.11
Query Based Tabs
Provide a name and
select the picker that
refers to this Business
Process.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.12
Summary Elements
Types
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.13
Summary Elements
Average
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.14
Selecting the Summary
button displays all the
Summary Elements that
have been defined.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.15
Summary Elements
Included in a Form
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.16
Items Logs
General
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.17
Item Logs
Query Log
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.18
Item Log
Query
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.19
Query Based Tabs and Summary Elements
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.20
Differences between Summary Elements and
Query Based Data Elements
§  Refreshed when an Action Form
is opened and Refresh
Conditions are met.
§  Refreshed on the forms when a
trigger Data Element’s value
changes.
§  Used in order to capture a value
at a specific point in time.
§  Can be used in formulas.
§  No refresh required. Will always
show the latest value without
having to open the record.
§  Used to display the current value
of a set of related records based
on a query condition.
§  Cannot be used in formulas as
it’s value can constantly change.
Query Based Data Elements Summary Elements
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.21
BI Publisher Custom Prints
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.22
BI Publisher Custom Reports
§  Project a custom report that reports on all the Contracts and Change
Orders and display pie charts by Contract/Change Order, Vendor and
Contract Type.
Requirement
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.23
BI Publisher Custom Reports
§  Create a data view that includes all the data you need to show in the
reports.
§  Configure a Custom Report with the data view that has been created.
§  Based on the data view export a set of sample data that can be used to
generate the report in the BI Publisher Word plugin.
§  Open Word (which has the BI Publisher Plugin installed)
§  Load the sample data.
§  Design the report.
§  Import and Publish the report.
§  Grant permissions for users to run the report.
Steps required to create report
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.24
BI Publisher Custom Reports
Creating the Data View This data view joins the
Contracts and Change
Order tables and select
the approved Contracts
and both the approved
and pending Change
Order amounts.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.25
Payment Application Custom Print
§  Data View SQL
Data View
select si.pid as project_id, si.projectnumber, si.projectname, c.id, c.record_no, c.title, c.uvevendornametb50,
c.status, c.upocontracttypepd,
c.uuu_effective_date, c.amount as original_amount, co.co_approved_amount, co.co_pending_amount,
CASE WHEN co.co_approved_amount is null
THEN c.amount
ELSE c.amount + co.co_approved_amount + co.co_pending_amount
END as revised_amount
from unifier_uc c
JOIN unifier_shell_info_view si ON (c.project_id = si.pid)
left outer JOIN
(select co.refid,
SUM(CASE WHEN co.status = 'Approved' THEN co.amount
ELSE 0
END) as co_approved_amount,
SUM(CASE WHEN co.status = 'Pending' THEN co.amount
ELSE 0
END) as co_pending_amount
from unifier_uco co
where co.status = 'Approved' or co.status = 'Pending'
group by co.refid) co on (co.refid = c.id)
where c.status = 'Approved'
order by si.projectnumber, c.record_no;
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.26
BI Publisher Custom Reports
Configuration Select the main data
view for this report.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.27
BI Publisher Custom Reports
Configuration
The main data view and a data
view that provides the company
details are configured here. You
need to provide a Data Set Name
and Data Set Tag that will be used
in the XML.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.28
BI Publisher Custom Reports
Configuration
This tab allows you con configure
query parameters that a user can
select in order to filter the data that
will be returned to the report.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.29
BI Publisher Custom Reports
Configuration
This tab allows you to define
parameters and their values that
will be passed to the report. These
are not editable by the user but
allow the same templates to be
used in multiple reports by using
the parameters to drive onditions
on the report.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.30
BI Publisher Custom Reports
Configuration
This tab allows you to upload
multiple templates for each report.
This example shows an RTF
report that was created using the
Word Plugin.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.31
BI Publisher Custom Reports
Configuration
This tab allows you to create
sample data which can then be
used as the Sample Data for the
Word Plugin.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.32
BI Publisher Custom Reports
Word Plugin
With the BI Publisher
plug in installed a new
tab is available in Word.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.33
BI Publisher Custom Reports
Word Plugin – Table example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.34
BI Publisher Custom Reports
Word Plugin – Table example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.35
BI Publisher Custom Reports
Word Plugin – Table example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.36
BI Publisher Custom Reports
Word Plugin – Table example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.37
BI Publisher Custom Reports
Word Plugin – Table example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.38
BI Publisher Custom Reports
Word Plugin – Table example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.39
BI Publisher Custom Reports
Word Plugin – Table example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.40
BI Publisher Custom Reports
Word Plugin – Table example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.41
BI Publisher Custom Reports
Word Plugin – Chart example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.42
BI Publisher Custom Reports
Word Plugin – Chart example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.43
BI Publisher Custom Reports
Word Plugin – Chart example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.44
BI Publisher Custom Reports
Word Plugin – Chart example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.45
BI Publisher Custom Reports
Word Plugin – Chart example
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.46
BI Publisher Custom Reports
Import the Template
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.47
BI Publisher Custom Reports
Publish
Publish the report and grant users
permissions to run the report.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.48
BI Publisher Custom Reports
Run the report
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.49
BI Publisher Custom Reports
Run the report
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.50
BI Publisher Custom Reports
Samples
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.51
BI Publisher Custom Reports
Samples
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.52
BI Publisher Custom Reports
Samples
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.53
BI Publisher Custom Reports
Complex Sample
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.54
Payment Application
Custom Prints
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.55
Payment Application Custom Print
§  The objective was to be able to include the total amount of add and
deduct Change Orders on the Payment Application since the last
Payment Application.
Requirements
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.56
Payment Application Custom Print
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.57
Payment Application Custom Print
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.58
Payment Application Custom Print
§  The solution is based on the fact that you can only have one Payment
Application in flight at once. Therefore the latest approved record must
be the last approved Payment Application.
§  Therefore if we retrieve the details of the previous Payment Application
we can get the total amount of Change Orders at that time. We can
use a Data View to retrieve these details.
§  If we then use a Query Based Data Element to get the current amounts
we can then subtract the two to get the values for this month.
§  We can then use a Custom Print created in LiveCycle to create the
custom print.
Solution
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.59
Payment Application Custom Print
§  Data View SQL
Data View
select *
from (
select pa.id, pa.record_no, pa.title, pa.status, pa.project_id,
pa.refid, pa.end_date, pa.amount, pa.uconprvapvddeductchgqe,
pa.uconapvdaddchgqe, pa.uconapvddeductchgqe,
pa.uconprvapvdaddchgqe, row_number() over(partition by
pa.project_id, pa.refid order by pa.project_id, pa.refid,
pa.end_date desc) as row_no
from unifier_upa_view pa
where pa.status = 'Approved'
order by pa.project_id, pa.refid, pa.end_date desc) ppa
where row_no = 1
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.60
Payment Application Custom Print
Required Data Elements
4 QBDEs to calculate
the previous and
current amounts of
add/deduct Change
Orders. 2 Formulas to
calculate this period
amounts.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.61
Payment Application Custom Print
Trigger Element
Each of the QBDEs
has a trigger element
of the picker to the
Contract in order to
refresh the values if
the Contract selected
changes.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.62
Payment Application Custom Print
Data Element Configuration
We can now configure
these four QBDEs
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.63
Payment Application Custom Print
Current Deduct Change Order Total
Current Deduct Change
Order value configuration.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.64
Payment Application Custom Print
Current Add Change Order Total
Current Add Change Order
value configuration.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.65
Payment Application Custom Print
Previous Deduct Change Order Total
Previous Deduct Change
Order value configuration
using the data view.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.66
Payment Application Custom Print
Previous Add Change Order Total
Previous Add Change Order
value configuration using the
data view.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.67
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.68
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.69
Payment Application Custom Print
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.70
Payment Application Custom Print
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.71
BP Help
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.72
BP Help
Help File Content
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.73
BP Help
§  Each BP in the Base products has a Help File maintained on Oracle
Server.
§  These can be overridden by your own Help Files.
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.74
BP Help
Configuring your own Help Files
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.75
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.76

More Related Content

What's hot

Integrating with the SAP Hybris Architecture: From Reference to Real World
Integrating with the SAP Hybris Architecture: From Reference to Real WorldIntegrating with the SAP Hybris Architecture: From Reference to Real World
Integrating with the SAP Hybris Architecture: From Reference to Real WorldSAP Customer Experience
 
Oracle Planning and Budgeting Cloud Service (PBCS)
Oracle Planning and Budgeting Cloud Service (PBCS)Oracle Planning and Budgeting Cloud Service (PBCS)
Oracle Planning and Budgeting Cloud Service (PBCS)US-Analytics
 
Rhapsody and mechatronics, multi-domain simulation
Rhapsody and mechatronics, multi-domain simulationRhapsody and mechatronics, multi-domain simulation
Rhapsody and mechatronics, multi-domain simulationGraham Bleakley
 
eazyBI Advanced Training, June 2016
eazyBI Advanced Training, June 2016eazyBI Advanced Training, June 2016
eazyBI Advanced Training, June 2016eazyBI
 
Apache NiFi- MiNiFi meetup Slides
Apache NiFi- MiNiFi meetup SlidesApache NiFi- MiNiFi meetup Slides
Apache NiFi- MiNiFi meetup SlidesIsheeta Sanghi
 
01 oracle application integration overview
01 oracle application integration overview01 oracle application integration overview
01 oracle application integration overviewnksolanki
 
On the Road to DSpace 7: Angular UI + REST
On the Road to DSpace 7: Angular UI + RESTOn the Road to DSpace 7: Angular UI + REST
On the Road to DSpace 7: Angular UI + RESTTim Donohue
 
CapellaDays2022 | ThermoFisher - ESI TNO | A method for quantitative evaluati...
CapellaDays2022 | ThermoFisher - ESI TNO | A method for quantitative evaluati...CapellaDays2022 | ThermoFisher - ESI TNO | A method for quantitative evaluati...
CapellaDays2022 | ThermoFisher - ESI TNO | A method for quantitative evaluati...Obeo
 
Ventajas y desventajas de microsoft word
Ventajas  y desventajas de microsoft wordVentajas  y desventajas de microsoft word
Ventajas y desventajas de microsoft wordrubi181293
 
EPBCS - A New Approach to Planning Implementations
EPBCS - A New Approach to Planning ImplementationsEPBCS - A New Approach to Planning Implementations
EPBCS - A New Approach to Planning ImplementationsJoseph Alaimo Jr
 
Strategies and Tools for Model Reuse with Capella
Strategies and Tools for Model Reuse with CapellaStrategies and Tools for Model Reuse with Capella
Strategies and Tools for Model Reuse with CapellaObeo
 
Creating Single Page Applications with Oracle Apex
Creating Single Page Applications with Oracle ApexCreating Single Page Applications with Oracle Apex
Creating Single Page Applications with Oracle ApexDick Dral
 
Oracle Cloud ERP Profile
Oracle Cloud ERP ProfileOracle Cloud ERP Profile
Oracle Cloud ERP ProfileAddvantum
 
A Guide to Oracle's Planning and Budgeting Cloud Service
A Guide to Oracle's Planning and Budgeting Cloud ServiceA Guide to Oracle's Planning and Budgeting Cloud Service
A Guide to Oracle's Planning and Budgeting Cloud ServiceInnovusPartners
 

What's hot (20)

Integrating with the SAP Hybris Architecture: From Reference to Real World
Integrating with the SAP Hybris Architecture: From Reference to Real WorldIntegrating with the SAP Hybris Architecture: From Reference to Real World
Integrating with the SAP Hybris Architecture: From Reference to Real World
 
Oracle Planning and Budgeting Cloud Service (PBCS)
Oracle Planning and Budgeting Cloud Service (PBCS)Oracle Planning and Budgeting Cloud Service (PBCS)
Oracle Planning and Budgeting Cloud Service (PBCS)
 
Rhapsody and mechatronics, multi-domain simulation
Rhapsody and mechatronics, multi-domain simulationRhapsody and mechatronics, multi-domain simulation
Rhapsody and mechatronics, multi-domain simulation
 
Oim Poc1.0
Oim Poc1.0Oim Poc1.0
Oim Poc1.0
 
eazyBI Advanced Training, June 2016
eazyBI Advanced Training, June 2016eazyBI Advanced Training, June 2016
eazyBI Advanced Training, June 2016
 
Apache NiFi- MiNiFi meetup Slides
Apache NiFi- MiNiFi meetup SlidesApache NiFi- MiNiFi meetup Slides
Apache NiFi- MiNiFi meetup Slides
 
01 oracle application integration overview
01 oracle application integration overview01 oracle application integration overview
01 oracle application integration overview
 
On the Road to DSpace 7: Angular UI + REST
On the Road to DSpace 7: Angular UI + RESTOn the Road to DSpace 7: Angular UI + REST
On the Road to DSpace 7: Angular UI + REST
 
CapellaDays2022 | ThermoFisher - ESI TNO | A method for quantitative evaluati...
CapellaDays2022 | ThermoFisher - ESI TNO | A method for quantitative evaluati...CapellaDays2022 | ThermoFisher - ESI TNO | A method for quantitative evaluati...
CapellaDays2022 | ThermoFisher - ESI TNO | A method for quantitative evaluati...
 
Power BI for CEO
Power BI for CEOPower BI for CEO
Power BI for CEO
 
Power BI for Developers
Power BI for DevelopersPower BI for Developers
Power BI for Developers
 
Ventajas y desventajas de microsoft word
Ventajas  y desventajas de microsoft wordVentajas  y desventajas de microsoft word
Ventajas y desventajas de microsoft word
 
Intro to signalR
Intro to signalRIntro to signalR
Intro to signalR
 
RESTful API - Best Practices
RESTful API - Best PracticesRESTful API - Best Practices
RESTful API - Best Practices
 
EPBCS - A New Approach to Planning Implementations
EPBCS - A New Approach to Planning ImplementationsEPBCS - A New Approach to Planning Implementations
EPBCS - A New Approach to Planning Implementations
 
Strategies and Tools for Model Reuse with Capella
Strategies and Tools for Model Reuse with CapellaStrategies and Tools for Model Reuse with Capella
Strategies and Tools for Model Reuse with Capella
 
Creating Single Page Applications with Oracle Apex
Creating Single Page Applications with Oracle ApexCreating Single Page Applications with Oracle Apex
Creating Single Page Applications with Oracle Apex
 
Oracle Cloud ERP Profile
Oracle Cloud ERP ProfileOracle Cloud ERP Profile
Oracle Cloud ERP Profile
 
SAP BusinessObjects Security
SAP BusinessObjects SecuritySAP BusinessObjects Security
SAP BusinessObjects Security
 
A Guide to Oracle's Planning and Budgeting Cloud Service
A Guide to Oracle's Planning and Budgeting Cloud ServiceA Guide to Oracle's Planning and Budgeting Cloud Service
A Guide to Oracle's Planning and Budgeting Cloud Service
 

Viewers also liked

Oracle Primavera Unifier 16.1
Oracle Primavera Unifier 16.1Oracle Primavera Unifier 16.1
Oracle Primavera Unifier 16.1p6academy
 
Use of unifier with primavera
Use of unifier with primaveraUse of unifier with primavera
Use of unifier with primaveragjmstleonards
 
Primavera Unifier: How to Tame Complexity and Achieve Success
Primavera Unifier: How to Tame Complexity and Achieve SuccessPrimavera Unifier: How to Tame Complexity and Achieve Success
Primavera Unifier: How to Tame Complexity and Achieve Successp6academy
 
Managing Productivity With Unifier
Managing Productivity With UnifierManaging Productivity With Unifier
Managing Productivity With Unifierp6academy
 
Enhanced Unifier Reporting with BI Publisher: On Prem and Cloud
Enhanced Unifier Reporting with BI Publisher: On Prem and CloudEnhanced Unifier Reporting with BI Publisher: On Prem and Cloud
Enhanced Unifier Reporting with BI Publisher: On Prem and Cloudp6academy
 
Oracle primavera unifier training
Oracle primavera unifier trainingOracle primavera unifier training
Oracle primavera unifier trainingsarathkumar ramanan
 
How Primavera Unifier Impacts Contract Manager Customizations
How Primavera Unifier Impacts Contract Manager CustomizationsHow Primavera Unifier Impacts Contract Manager Customizations
How Primavera Unifier Impacts Contract Manager Customizationsp6academy
 
Primavera unifier in action - Oracle Primavera Collaborate 14
Primavera unifier in action - Oracle Primavera Collaborate 14Primavera unifier in action - Oracle Primavera Collaborate 14
Primavera unifier in action - Oracle Primavera Collaborate 14p6academy
 
Successfully Manage Cost and Schedule with Primavera Unifier and Primavera P6
Successfully Manage Cost and Schedule with Primavera Unifier and Primavera P6Successfully Manage Cost and Schedule with Primavera Unifier and Primavera P6
Successfully Manage Cost and Schedule with Primavera Unifier and Primavera P6p6academy
 
Pdf primavera tutorial
Pdf primavera tutorialPdf primavera tutorial
Pdf primavera tutorialKetut Swandana
 
205350 unifier and contract management
205350 unifier and contract management205350 unifier and contract management
205350 unifier and contract managementp6academy
 
A g cs persepective on primavera unifier ppt
A g cs persepective on primavera unifier pptA g cs persepective on primavera unifier ppt
A g cs persepective on primavera unifier pptp6academy
 
What s new in Primavera Unifier 16.1
What s new in Primavera Unifier 16.1What s new in Primavera Unifier 16.1
What s new in Primavera Unifier 16.1Eduard Enache
 
CIO Event - Bid Winning: How can technology in your business assist your next...
CIO Event - Bid Winning: How can technology in your business assist your next...CIO Event - Bid Winning: How can technology in your business assist your next...
CIO Event - Bid Winning: How can technology in your business assist your next...Global Business Intel
 
Leveraging P6 and Unifier combined strengths - Oracle Primavera P6 Collaborat...
Leveraging P6 and Unifier combined strengths - Oracle Primavera P6 Collaborat...Leveraging P6 and Unifier combined strengths - Oracle Primavera P6 Collaborat...
Leveraging P6 and Unifier combined strengths - Oracle Primavera P6 Collaborat...p6academy
 
What's New In Primavera P6 EPPM 17.1
What's New In Primavera P6 EPPM 17.1What's New In Primavera P6 EPPM 17.1
What's New In Primavera P6 EPPM 17.1p6academy
 
Win more Bids and more profitable business
Win more Bids and more profitable businessWin more Bids and more profitable business
Win more Bids and more profitable businessBespoke Bids Limited
 

Viewers also liked (19)

Oracle Primavera Unifier 16.1
Oracle Primavera Unifier 16.1Oracle Primavera Unifier 16.1
Oracle Primavera Unifier 16.1
 
Use of unifier with primavera
Use of unifier with primaveraUse of unifier with primavera
Use of unifier with primavera
 
Primavera Unifier: How to Tame Complexity and Achieve Success
Primavera Unifier: How to Tame Complexity and Achieve SuccessPrimavera Unifier: How to Tame Complexity and Achieve Success
Primavera Unifier: How to Tame Complexity and Achieve Success
 
Managing Productivity With Unifier
Managing Productivity With UnifierManaging Productivity With Unifier
Managing Productivity With Unifier
 
Enhanced Unifier Reporting with BI Publisher: On Prem and Cloud
Enhanced Unifier Reporting with BI Publisher: On Prem and CloudEnhanced Unifier Reporting with BI Publisher: On Prem and Cloud
Enhanced Unifier Reporting with BI Publisher: On Prem and Cloud
 
Oracle primavera unifier training
Oracle primavera unifier trainingOracle primavera unifier training
Oracle primavera unifier training
 
How Primavera Unifier Impacts Contract Manager Customizations
How Primavera Unifier Impacts Contract Manager CustomizationsHow Primavera Unifier Impacts Contract Manager Customizations
How Primavera Unifier Impacts Contract Manager Customizations
 
Primavera unifier in action - Oracle Primavera Collaborate 14
Primavera unifier in action - Oracle Primavera Collaborate 14Primavera unifier in action - Oracle Primavera Collaborate 14
Primavera unifier in action - Oracle Primavera Collaborate 14
 
Successfully Manage Cost and Schedule with Primavera Unifier and Primavera P6
Successfully Manage Cost and Schedule with Primavera Unifier and Primavera P6Successfully Manage Cost and Schedule with Primavera Unifier and Primavera P6
Successfully Manage Cost and Schedule with Primavera Unifier and Primavera P6
 
Pdf primavera tutorial
Pdf primavera tutorialPdf primavera tutorial
Pdf primavera tutorial
 
205350 unifier and contract management
205350 unifier and contract management205350 unifier and contract management
205350 unifier and contract management
 
Oracle Primavera Unifier
Oracle Primavera UnifierOracle Primavera Unifier
Oracle Primavera Unifier
 
Company Profile
Company ProfileCompany Profile
Company Profile
 
A g cs persepective on primavera unifier ppt
A g cs persepective on primavera unifier pptA g cs persepective on primavera unifier ppt
A g cs persepective on primavera unifier ppt
 
What s new in Primavera Unifier 16.1
What s new in Primavera Unifier 16.1What s new in Primavera Unifier 16.1
What s new in Primavera Unifier 16.1
 
CIO Event - Bid Winning: How can technology in your business assist your next...
CIO Event - Bid Winning: How can technology in your business assist your next...CIO Event - Bid Winning: How can technology in your business assist your next...
CIO Event - Bid Winning: How can technology in your business assist your next...
 
Leveraging P6 and Unifier combined strengths - Oracle Primavera P6 Collaborat...
Leveraging P6 and Unifier combined strengths - Oracle Primavera P6 Collaborat...Leveraging P6 and Unifier combined strengths - Oracle Primavera P6 Collaborat...
Leveraging P6 and Unifier combined strengths - Oracle Primavera P6 Collaborat...
 
What's New In Primavera P6 EPPM 17.1
What's New In Primavera P6 EPPM 17.1What's New In Primavera P6 EPPM 17.1
What's New In Primavera P6 EPPM 17.1
 
Win more Bids and more profitable business
Win more Bids and more profitable businessWin more Bids and more profitable business
Win more Bids and more profitable business
 

Similar to Primavera Cost Unifier cost controls and project delivery modules tips and tricks - Oracle Primavera P6 Collaborate 14

Con9534 fusion financials
Con9534 fusion financialsCon9534 fusion financials
Con9534 fusion financialsBerry Clemens
 
Reporting from contract management 14.0 using bi publisher 11g ppt
Reporting from contract management 14.0 using bi publisher 11g pptReporting from contract management 14.0 using bi publisher 11g ppt
Reporting from contract management 14.0 using bi publisher 11g pptp6academy
 
Oracle Optimizer: 12c New Capabilities
Oracle Optimizer: 12c New CapabilitiesOracle Optimizer: 12c New Capabilities
Oracle Optimizer: 12c New CapabilitiesGuatemala User Group
 
Using Change Management in Primavera Contract Management
Using Change Management in Primavera Contract ManagementUsing Change Management in Primavera Contract Management
Using Change Management in Primavera Contract Managementp6academy
 
Overview on What’s New in SAP Cloud Platform Business Rules
Overview on What’s New in SAP Cloud Platform Business RulesOverview on What’s New in SAP Cloud Platform Business Rules
Overview on What’s New in SAP Cloud Platform Business RulesSAP Cloud Platform
 
Fundamentals_of_Financial_Accounting_Hub_231026_195437.pdf
Fundamentals_of_Financial_Accounting_Hub_231026_195437.pdfFundamentals_of_Financial_Accounting_Hub_231026_195437.pdf
Fundamentals_of_Financial_Accounting_Hub_231026_195437.pdfsrielect
 
Whats new in primavera unifier - Oracle Primavera P6 Collaborate 14
Whats new in primavera unifier - Oracle Primavera P6 Collaborate 14Whats new in primavera unifier - Oracle Primavera P6 Collaborate 14
Whats new in primavera unifier - Oracle Primavera P6 Collaborate 14p6academy
 
Oracle BPM workflow and Open-XDX web services (Part 2)
Oracle BPM workflow and Open-XDX web services (Part 2)Oracle BPM workflow and Open-XDX web services (Part 2)
Oracle BPM workflow and Open-XDX web services (Part 2)Bizagi Inc
 
Primavera unifier reporting with bipublisher on premandcloud
Primavera unifier reporting with bipublisher on premandcloudPrimavera unifier reporting with bipublisher on premandcloud
Primavera unifier reporting with bipublisher on premandcloudCampin Chou
 
Oracle BI Publisher to Transform Cloud ERP Reports
Oracle BI Publisher to Transform Cloud ERP ReportsOracle BI Publisher to Transform Cloud ERP Reports
Oracle BI Publisher to Transform Cloud ERP ReportsMahesh Vallampati
 
Otbi and bicc_psr_technote_v3_final_document
Otbi and bicc_psr_technote_v3_final_documentOtbi and bicc_psr_technote_v3_final_document
Otbi and bicc_psr_technote_v3_final_documentHamadaAsmrAladham1
 
High performing Salesforce Data Connectors
High performing Salesforce Data ConnectorsHigh performing Salesforce Data Connectors
High performing Salesforce Data ConnectorsNishanth Kadiyala
 
Conociendo y entendiendo a tu cliente mediante monitoreo, analíticos y big data
Conociendo y entendiendo a tu cliente mediante monitoreo, analíticos y big dataConociendo y entendiendo a tu cliente mediante monitoreo, analíticos y big data
Conociendo y entendiendo a tu cliente mediante monitoreo, analíticos y big dataMundo Contact
 
How will you create a supplier management software.pptx
How will you create a supplier management software.pptxHow will you create a supplier management software.pptx
How will you create a supplier management software.pptxssuser50762b
 
Oracle primavera and bpm the power of integration ppt
Oracle primavera and bpm   the power of integration pptOracle primavera and bpm   the power of integration ppt
Oracle primavera and bpm the power of integration pptp6academy
 
Reporting Basics of Project Management
Reporting Basics of Project ManagementReporting Basics of Project Management
Reporting Basics of Project Managementp6academy
 
Best Practices - Oracle-BIP.pptx
Best Practices - Oracle-BIP.pptxBest Practices - Oracle-BIP.pptx
Best Practices - Oracle-BIP.pptxAdityaDas899782
 
Oracle 12c Optimizer IOUG
Oracle 12c Optimizer IOUGOracle 12c Optimizer IOUG
Oracle 12c Optimizer IOUGConnor McDonald
 
Business intelligence with primavera p6 analytics ppt
Business intelligence with primavera p6 analytics pptBusiness intelligence with primavera p6 analytics ppt
Business intelligence with primavera p6 analytics pptp6academy
 
EBS ECC Data Discovery and Visualization.pdf
EBS ECC Data Discovery and Visualization.pdfEBS ECC Data Discovery and Visualization.pdf
EBS ECC Data Discovery and Visualization.pdfssuserf605b8
 

Similar to Primavera Cost Unifier cost controls and project delivery modules tips and tricks - Oracle Primavera P6 Collaborate 14 (20)

Con9534 fusion financials
Con9534 fusion financialsCon9534 fusion financials
Con9534 fusion financials
 
Reporting from contract management 14.0 using bi publisher 11g ppt
Reporting from contract management 14.0 using bi publisher 11g pptReporting from contract management 14.0 using bi publisher 11g ppt
Reporting from contract management 14.0 using bi publisher 11g ppt
 
Oracle Optimizer: 12c New Capabilities
Oracle Optimizer: 12c New CapabilitiesOracle Optimizer: 12c New Capabilities
Oracle Optimizer: 12c New Capabilities
 
Using Change Management in Primavera Contract Management
Using Change Management in Primavera Contract ManagementUsing Change Management in Primavera Contract Management
Using Change Management in Primavera Contract Management
 
Overview on What’s New in SAP Cloud Platform Business Rules
Overview on What’s New in SAP Cloud Platform Business RulesOverview on What’s New in SAP Cloud Platform Business Rules
Overview on What’s New in SAP Cloud Platform Business Rules
 
Fundamentals_of_Financial_Accounting_Hub_231026_195437.pdf
Fundamentals_of_Financial_Accounting_Hub_231026_195437.pdfFundamentals_of_Financial_Accounting_Hub_231026_195437.pdf
Fundamentals_of_Financial_Accounting_Hub_231026_195437.pdf
 
Whats new in primavera unifier - Oracle Primavera P6 Collaborate 14
Whats new in primavera unifier - Oracle Primavera P6 Collaborate 14Whats new in primavera unifier - Oracle Primavera P6 Collaborate 14
Whats new in primavera unifier - Oracle Primavera P6 Collaborate 14
 
Oracle BPM workflow and Open-XDX web services (Part 2)
Oracle BPM workflow and Open-XDX web services (Part 2)Oracle BPM workflow and Open-XDX web services (Part 2)
Oracle BPM workflow and Open-XDX web services (Part 2)
 
Primavera unifier reporting with bipublisher on premandcloud
Primavera unifier reporting with bipublisher on premandcloudPrimavera unifier reporting with bipublisher on premandcloud
Primavera unifier reporting with bipublisher on premandcloud
 
Oracle BI Publisher to Transform Cloud ERP Reports
Oracle BI Publisher to Transform Cloud ERP ReportsOracle BI Publisher to Transform Cloud ERP Reports
Oracle BI Publisher to Transform Cloud ERP Reports
 
Otbi and bicc_psr_technote_v3_final_document
Otbi and bicc_psr_technote_v3_final_documentOtbi and bicc_psr_technote_v3_final_document
Otbi and bicc_psr_technote_v3_final_document
 
High performing Salesforce Data Connectors
High performing Salesforce Data ConnectorsHigh performing Salesforce Data Connectors
High performing Salesforce Data Connectors
 
Conociendo y entendiendo a tu cliente mediante monitoreo, analíticos y big data
Conociendo y entendiendo a tu cliente mediante monitoreo, analíticos y big dataConociendo y entendiendo a tu cliente mediante monitoreo, analíticos y big data
Conociendo y entendiendo a tu cliente mediante monitoreo, analíticos y big data
 
How will you create a supplier management software.pptx
How will you create a supplier management software.pptxHow will you create a supplier management software.pptx
How will you create a supplier management software.pptx
 
Oracle primavera and bpm the power of integration ppt
Oracle primavera and bpm   the power of integration pptOracle primavera and bpm   the power of integration ppt
Oracle primavera and bpm the power of integration ppt
 
Reporting Basics of Project Management
Reporting Basics of Project ManagementReporting Basics of Project Management
Reporting Basics of Project Management
 
Best Practices - Oracle-BIP.pptx
Best Practices - Oracle-BIP.pptxBest Practices - Oracle-BIP.pptx
Best Practices - Oracle-BIP.pptx
 
Oracle 12c Optimizer IOUG
Oracle 12c Optimizer IOUGOracle 12c Optimizer IOUG
Oracle 12c Optimizer IOUG
 
Business intelligence with primavera p6 analytics ppt
Business intelligence with primavera p6 analytics pptBusiness intelligence with primavera p6 analytics ppt
Business intelligence with primavera p6 analytics ppt
 
EBS ECC Data Discovery and Visualization.pdf
EBS ECC Data Discovery and Visualization.pdfEBS ECC Data Discovery and Visualization.pdf
EBS ECC Data Discovery and Visualization.pdf
 

More from p6academy

Oracle OpenWorld 2015
Oracle OpenWorld 2015Oracle OpenWorld 2015
Oracle OpenWorld 2015p6academy
 
Plan and Execute the Right Projects— Easily and Affordably
Plan and Execute the Right Projects—  Easily and AffordablyPlan and Execute the Right Projects—  Easily and Affordably
Plan and Execute the Right Projects— Easily and Affordablyp6academy
 
Oracle Primavera Unifier What's New in Release 16.2
Oracle Primavera Unifier What's New in Release 16.2Oracle Primavera Unifier What's New in Release 16.2
Oracle Primavera Unifier What's New in Release 16.2p6academy
 
Oracle What's New In Primavera P6 16.2
Oracle What's New In Primavera P6 16.2Oracle What's New In Primavera P6 16.2
Oracle What's New In Primavera P6 16.2p6academy
 
What's New in Primavera Prime 16.1
What's New in Primavera Prime 16.1What's New in Primavera Prime 16.1
What's New in Primavera Prime 16.1p6academy
 
What's New in Primavera Gateway 16.1
What's New in Primavera Gateway 16.1What's New in Primavera Gateway 16.1
What's New in Primavera Gateway 16.1p6academy
 
What's New In Primavera Analytics 16.1
What's New In Primavera Analytics 16.1What's New In Primavera Analytics 16.1
What's New In Primavera Analytics 16.1p6academy
 
What's New in Unifier 16.1
What's New in Unifier 16.1What's New in Unifier 16.1
What's New in Unifier 16.1p6academy
 
20160405 How to Install Primavera P6 16.1 Professional desktop
20160405 How to Install Primavera P6 16.1 Professional desktop20160405 How to Install Primavera P6 16.1 Professional desktop
20160405 How to Install Primavera P6 16.1 Professional desktopp6academy
 
Oracle Primavera P6 16.1 Announced
Oracle Primavera P6 16.1 AnnouncedOracle Primavera P6 16.1 Announced
Oracle Primavera P6 16.1 Announcedp6academy
 
P6 Release 8 Application Considerations Overview
P6 Release 8 Application Considerations OverviewP6 Release 8 Application Considerations Overview
P6 Release 8 Application Considerations Overviewp6academy
 
Administering Users, Access and Views in P6 EPPM (Web) Release 8 and later
Administering Users, Access and Views in P6 EPPM  (Web) Release 8 and laterAdministering Users, Access and Views in P6 EPPM  (Web) Release 8 and later
Administering Users, Access and Views in P6 EPPM (Web) Release 8 and laterp6academy
 
P6 Release 8 Installation Orientation
P6 Release 8 Installation OrientationP6 Release 8 Installation Orientation
P6 Release 8 Installation Orientationp6academy
 
Oracle Primavera P6 R8 Release Value Proposition
Oracle Primavera P6 R8 Release Value PropositionOracle Primavera P6 R8 Release Value Proposition
Oracle Primavera P6 R8 Release Value Propositionp6academy
 
Oracle Primavera P6 v7 Release Value Proposition
Oracle Primavera P6 v7 Release Value Proposition Oracle Primavera P6 v7 Release Value Proposition
Oracle Primavera P6 v7 Release Value Proposition p6academy
 
Oracle Primavera P6 Release Content Document (RCD)
Oracle Primavera P6 Release Content Document (RCD)Oracle Primavera P6 Release Content Document (RCD)
Oracle Primavera P6 Release Content Document (RCD)p6academy
 
Oracle Support Accreditation – Level 1 Study Guide
Oracle Support Accreditation – Level 1 Study GuideOracle Support Accreditation – Level 1 Study Guide
Oracle Support Accreditation – Level 1 Study Guidep6academy
 
Oracle Primavera Support Accreditation Study Guide
Oracle Primavera Support Accreditation Study GuideOracle Primavera Support Accreditation Study Guide
Oracle Primavera Support Accreditation Study Guidep6academy
 
Primavera P6 Enterprise Project Portfolio Management 8 Essentials (1Z0-567) ...
Primavera P6 Enterprise Project Portfolio Management 8  Essentials (1Z0-567) ...Primavera P6 Enterprise Project Portfolio Management 8  Essentials (1Z0-567) ...
Primavera P6 Enterprise Project Portfolio Management 8 Essentials (1Z0-567) ...p6academy
 
Primavera Oracle Cloud Market Place
Primavera Oracle Cloud Market PlacePrimavera Oracle Cloud Market Place
Primavera Oracle Cloud Market Placep6academy
 

More from p6academy (20)

Oracle OpenWorld 2015
Oracle OpenWorld 2015Oracle OpenWorld 2015
Oracle OpenWorld 2015
 
Plan and Execute the Right Projects— Easily and Affordably
Plan and Execute the Right Projects—  Easily and AffordablyPlan and Execute the Right Projects—  Easily and Affordably
Plan and Execute the Right Projects— Easily and Affordably
 
Oracle Primavera Unifier What's New in Release 16.2
Oracle Primavera Unifier What's New in Release 16.2Oracle Primavera Unifier What's New in Release 16.2
Oracle Primavera Unifier What's New in Release 16.2
 
Oracle What's New In Primavera P6 16.2
Oracle What's New In Primavera P6 16.2Oracle What's New In Primavera P6 16.2
Oracle What's New In Primavera P6 16.2
 
What's New in Primavera Prime 16.1
What's New in Primavera Prime 16.1What's New in Primavera Prime 16.1
What's New in Primavera Prime 16.1
 
What's New in Primavera Gateway 16.1
What's New in Primavera Gateway 16.1What's New in Primavera Gateway 16.1
What's New in Primavera Gateway 16.1
 
What's New In Primavera Analytics 16.1
What's New In Primavera Analytics 16.1What's New In Primavera Analytics 16.1
What's New In Primavera Analytics 16.1
 
What's New in Unifier 16.1
What's New in Unifier 16.1What's New in Unifier 16.1
What's New in Unifier 16.1
 
20160405 How to Install Primavera P6 16.1 Professional desktop
20160405 How to Install Primavera P6 16.1 Professional desktop20160405 How to Install Primavera P6 16.1 Professional desktop
20160405 How to Install Primavera P6 16.1 Professional desktop
 
Oracle Primavera P6 16.1 Announced
Oracle Primavera P6 16.1 AnnouncedOracle Primavera P6 16.1 Announced
Oracle Primavera P6 16.1 Announced
 
P6 Release 8 Application Considerations Overview
P6 Release 8 Application Considerations OverviewP6 Release 8 Application Considerations Overview
P6 Release 8 Application Considerations Overview
 
Administering Users, Access and Views in P6 EPPM (Web) Release 8 and later
Administering Users, Access and Views in P6 EPPM  (Web) Release 8 and laterAdministering Users, Access and Views in P6 EPPM  (Web) Release 8 and later
Administering Users, Access and Views in P6 EPPM (Web) Release 8 and later
 
P6 Release 8 Installation Orientation
P6 Release 8 Installation OrientationP6 Release 8 Installation Orientation
P6 Release 8 Installation Orientation
 
Oracle Primavera P6 R8 Release Value Proposition
Oracle Primavera P6 R8 Release Value PropositionOracle Primavera P6 R8 Release Value Proposition
Oracle Primavera P6 R8 Release Value Proposition
 
Oracle Primavera P6 v7 Release Value Proposition
Oracle Primavera P6 v7 Release Value Proposition Oracle Primavera P6 v7 Release Value Proposition
Oracle Primavera P6 v7 Release Value Proposition
 
Oracle Primavera P6 Release Content Document (RCD)
Oracle Primavera P6 Release Content Document (RCD)Oracle Primavera P6 Release Content Document (RCD)
Oracle Primavera P6 Release Content Document (RCD)
 
Oracle Support Accreditation – Level 1 Study Guide
Oracle Support Accreditation – Level 1 Study GuideOracle Support Accreditation – Level 1 Study Guide
Oracle Support Accreditation – Level 1 Study Guide
 
Oracle Primavera Support Accreditation Study Guide
Oracle Primavera Support Accreditation Study GuideOracle Primavera Support Accreditation Study Guide
Oracle Primavera Support Accreditation Study Guide
 
Primavera P6 Enterprise Project Portfolio Management 8 Essentials (1Z0-567) ...
Primavera P6 Enterprise Project Portfolio Management 8  Essentials (1Z0-567) ...Primavera P6 Enterprise Project Portfolio Management 8  Essentials (1Z0-567) ...
Primavera P6 Enterprise Project Portfolio Management 8 Essentials (1Z0-567) ...
 
Primavera Oracle Cloud Market Place
Primavera Oracle Cloud Market PlacePrimavera Oracle Cloud Market Place
Primavera Oracle Cloud Market Place
 

Recently uploaded

Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Roland Driesen
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...lizamodels9
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Serviceritikaroy0888
 
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Dipal Arora
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangaloreamitlee9823
 
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLBAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLkapoorjyoti4444
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxAndy Lambert
 
Business Model Canvas (BMC)- A new venture concept
Business Model Canvas (BMC)-  A new venture conceptBusiness Model Canvas (BMC)-  A new venture concept
Business Model Canvas (BMC)- A new venture conceptP&CO
 
John Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfJohn Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfAmzadHosen3
 
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...rajveerescorts2022
 
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...amitlee9823
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLSeo
 
Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1kcpayne
 
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...allensay1
 
Uneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration PresentationUneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration Presentationuneakwhite
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Insurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageInsurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageMatteo Carbone
 
A DAY IN THE LIFE OF A SALESMAN / WOMAN
A DAY IN THE LIFE OF A  SALESMAN / WOMANA DAY IN THE LIFE OF A  SALESMAN / WOMAN
A DAY IN THE LIFE OF A SALESMAN / WOMANIlamathiKannappan
 

Recently uploaded (20)

Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Service
 
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLBAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptx
 
Business Model Canvas (BMC)- A new venture concept
Business Model Canvas (BMC)-  A new venture conceptBusiness Model Canvas (BMC)-  A new venture concept
Business Model Canvas (BMC)- A new venture concept
 
John Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfJohn Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdf
 
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
 
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
 
Falcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in indiaFalcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in india
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
 
Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1
 
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
 
Uneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration PresentationUneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration Presentation
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Insurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageInsurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usage
 
A DAY IN THE LIFE OF A SALESMAN / WOMAN
A DAY IN THE LIFE OF A  SALESMAN / WOMANA DAY IN THE LIFE OF A  SALESMAN / WOMAN
A DAY IN THE LIFE OF A SALESMAN / WOMAN
 

Primavera Cost Unifier cost controls and project delivery modules tips and tricks - Oracle Primavera P6 Collaborate 14

  • 1. Primavera Unifier Cost Controls and Project Delivery Modules – Tips & Tricks Ray McEntee Senior Principal Product Manager
  • 2. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.2 Agenda §  Query Based Tabs §  BI Publisher Custom Prints §  Payment Application Custom Print §  BP Help Files
  • 3. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.3 Query Based Tabs
  • 4. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.4 Query Based Tabs §  We want to be able to view records from related business processes within the tabs of a business process record. –  Quicker access to related records –  Can create records without having to navigate to the related business process log. –  Better usability. Use Case
  • 5. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.5 Contract Business Process Record Line Items tab Two tabs displaying the related Change Orders and Payment Applications
  • 6. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.6 Contract Business Process Record Change Orders tab From the Change Order tab you can open the Change Orders or even create a new Change Order.
  • 7. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.7 Contract Business Process Record Payment Applications tab From the Payment Applications tab you can open the Payment Applcations or even create a new Payment Application.
  • 8. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.8 Contract Business Process Record Summary Elements Define Summary Elements for Total, Count, Average, Maximum and Minimum of the records displayed ion the Query Based Tab
  • 9. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.9 Query Based Tabs §  Define the tab, the business process records to be displayed and the data element that establishes the link between the two BPs §  Define the Item Log which includes the name of the tab and the query conditions to define which records to display. §  Create any Summary Elements that are required. §  Add the Summary Elements to the Forms Steps to create them.
  • 10. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.10 Query Based Tabs Select the Business Process that is the source for the Query Based Tab
  • 11. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.11 Query Based Tabs Provide a name and select the picker that refers to this Business Process.
  • 12. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.12 Summary Elements Types
  • 13. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.13 Summary Elements Average
  • 14. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.14 Selecting the Summary button displays all the Summary Elements that have been defined.
  • 15. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.15 Summary Elements Included in a Form
  • 16. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.16 Items Logs General
  • 17. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.17 Item Logs Query Log
  • 18. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.18 Item Log Query
  • 19. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.19 Query Based Tabs and Summary Elements
  • 20. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.20 Differences between Summary Elements and Query Based Data Elements §  Refreshed when an Action Form is opened and Refresh Conditions are met. §  Refreshed on the forms when a trigger Data Element’s value changes. §  Used in order to capture a value at a specific point in time. §  Can be used in formulas. §  No refresh required. Will always show the latest value without having to open the record. §  Used to display the current value of a set of related records based on a query condition. §  Cannot be used in formulas as it’s value can constantly change. Query Based Data Elements Summary Elements
  • 21. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.21 BI Publisher Custom Prints
  • 22. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.22 BI Publisher Custom Reports §  Project a custom report that reports on all the Contracts and Change Orders and display pie charts by Contract/Change Order, Vendor and Contract Type. Requirement
  • 23. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.23 BI Publisher Custom Reports §  Create a data view that includes all the data you need to show in the reports. §  Configure a Custom Report with the data view that has been created. §  Based on the data view export a set of sample data that can be used to generate the report in the BI Publisher Word plugin. §  Open Word (which has the BI Publisher Plugin installed) §  Load the sample data. §  Design the report. §  Import and Publish the report. §  Grant permissions for users to run the report. Steps required to create report
  • 24. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.24 BI Publisher Custom Reports Creating the Data View This data view joins the Contracts and Change Order tables and select the approved Contracts and both the approved and pending Change Order amounts.
  • 25. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.25 Payment Application Custom Print §  Data View SQL Data View select si.pid as project_id, si.projectnumber, si.projectname, c.id, c.record_no, c.title, c.uvevendornametb50, c.status, c.upocontracttypepd, c.uuu_effective_date, c.amount as original_amount, co.co_approved_amount, co.co_pending_amount, CASE WHEN co.co_approved_amount is null THEN c.amount ELSE c.amount + co.co_approved_amount + co.co_pending_amount END as revised_amount from unifier_uc c JOIN unifier_shell_info_view si ON (c.project_id = si.pid) left outer JOIN (select co.refid, SUM(CASE WHEN co.status = 'Approved' THEN co.amount ELSE 0 END) as co_approved_amount, SUM(CASE WHEN co.status = 'Pending' THEN co.amount ELSE 0 END) as co_pending_amount from unifier_uco co where co.status = 'Approved' or co.status = 'Pending' group by co.refid) co on (co.refid = c.id) where c.status = 'Approved' order by si.projectnumber, c.record_no;
  • 26. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.26 BI Publisher Custom Reports Configuration Select the main data view for this report.
  • 27. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.27 BI Publisher Custom Reports Configuration The main data view and a data view that provides the company details are configured here. You need to provide a Data Set Name and Data Set Tag that will be used in the XML.
  • 28. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.28 BI Publisher Custom Reports Configuration This tab allows you con configure query parameters that a user can select in order to filter the data that will be returned to the report.
  • 29. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.29 BI Publisher Custom Reports Configuration This tab allows you to define parameters and their values that will be passed to the report. These are not editable by the user but allow the same templates to be used in multiple reports by using the parameters to drive onditions on the report.
  • 30. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.30 BI Publisher Custom Reports Configuration This tab allows you to upload multiple templates for each report. This example shows an RTF report that was created using the Word Plugin.
  • 31. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.31 BI Publisher Custom Reports Configuration This tab allows you to create sample data which can then be used as the Sample Data for the Word Plugin.
  • 32. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.32 BI Publisher Custom Reports Word Plugin With the BI Publisher plug in installed a new tab is available in Word.
  • 33. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.33 BI Publisher Custom Reports Word Plugin – Table example
  • 34. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.34 BI Publisher Custom Reports Word Plugin – Table example
  • 35. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.35 BI Publisher Custom Reports Word Plugin – Table example
  • 36. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.36 BI Publisher Custom Reports Word Plugin – Table example
  • 37. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.37 BI Publisher Custom Reports Word Plugin – Table example
  • 38. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.38 BI Publisher Custom Reports Word Plugin – Table example
  • 39. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.39 BI Publisher Custom Reports Word Plugin – Table example
  • 40. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.40 BI Publisher Custom Reports Word Plugin – Table example
  • 41. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.41 BI Publisher Custom Reports Word Plugin – Chart example
  • 42. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.42 BI Publisher Custom Reports Word Plugin – Chart example
  • 43. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.43 BI Publisher Custom Reports Word Plugin – Chart example
  • 44. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.44 BI Publisher Custom Reports Word Plugin – Chart example
  • 45. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.45 BI Publisher Custom Reports Word Plugin – Chart example
  • 46. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.46 BI Publisher Custom Reports Import the Template
  • 47. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.47 BI Publisher Custom Reports Publish Publish the report and grant users permissions to run the report.
  • 48. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.48 BI Publisher Custom Reports Run the report
  • 49. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.49 BI Publisher Custom Reports Run the report
  • 50. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.50 BI Publisher Custom Reports Samples
  • 51. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.51 BI Publisher Custom Reports Samples
  • 52. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.52 BI Publisher Custom Reports Samples
  • 53. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.53 BI Publisher Custom Reports Complex Sample
  • 54. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.54 Payment Application Custom Prints
  • 55. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.55 Payment Application Custom Print §  The objective was to be able to include the total amount of add and deduct Change Orders on the Payment Application since the last Payment Application. Requirements
  • 56. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.56 Payment Application Custom Print
  • 57. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.57 Payment Application Custom Print
  • 58. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.58 Payment Application Custom Print §  The solution is based on the fact that you can only have one Payment Application in flight at once. Therefore the latest approved record must be the last approved Payment Application. §  Therefore if we retrieve the details of the previous Payment Application we can get the total amount of Change Orders at that time. We can use a Data View to retrieve these details. §  If we then use a Query Based Data Element to get the current amounts we can then subtract the two to get the values for this month. §  We can then use a Custom Print created in LiveCycle to create the custom print. Solution
  • 59. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.59 Payment Application Custom Print §  Data View SQL Data View select * from ( select pa.id, pa.record_no, pa.title, pa.status, pa.project_id, pa.refid, pa.end_date, pa.amount, pa.uconprvapvddeductchgqe, pa.uconapvdaddchgqe, pa.uconapvddeductchgqe, pa.uconprvapvdaddchgqe, row_number() over(partition by pa.project_id, pa.refid order by pa.project_id, pa.refid, pa.end_date desc) as row_no from unifier_upa_view pa where pa.status = 'Approved' order by pa.project_id, pa.refid, pa.end_date desc) ppa where row_no = 1
  • 60. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.60 Payment Application Custom Print Required Data Elements 4 QBDEs to calculate the previous and current amounts of add/deduct Change Orders. 2 Formulas to calculate this period amounts.
  • 61. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.61 Payment Application Custom Print Trigger Element Each of the QBDEs has a trigger element of the picker to the Contract in order to refresh the values if the Contract selected changes.
  • 62. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.62 Payment Application Custom Print Data Element Configuration We can now configure these four QBDEs
  • 63. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.63 Payment Application Custom Print Current Deduct Change Order Total Current Deduct Change Order value configuration.
  • 64. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.64 Payment Application Custom Print Current Add Change Order Total Current Add Change Order value configuration.
  • 65. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.65 Payment Application Custom Print Previous Deduct Change Order Total Previous Deduct Change Order value configuration using the data view.
  • 66. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.66 Payment Application Custom Print Previous Add Change Order Total Previous Add Change Order value configuration using the data view.
  • 67. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.67
  • 68. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.68
  • 69. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.69 Payment Application Custom Print
  • 70. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.70 Payment Application Custom Print
  • 71. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.71 BP Help
  • 72. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.72 BP Help Help File Content
  • 73. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.73 BP Help §  Each BP in the Base products has a Help File maintained on Oracle Server. §  These can be overridden by your own Help Files.
  • 74. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.74 BP Help Configuring your own Help Files
  • 75. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.75
  • 76. Copyright © 2012, Oracle and/or its affiliates. All rights reserved.76