Oracle Transactional Business Intelligence

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

How to query PVO in Oracle BI Publisher Data Model

Accepted answer
2878
Views
23
Comments
Rank 3 - Community Apprentice

I need to query PVO data in BI Publisher, here's the PVO name:

HcmTopModelAnalyticsGlobalAM.HcmElementSetupAM.ElementEntryValue

Any screenshots, ideas, hints?

Thanks.

Welcome!

It looks like you're new here. Sign in or register to get started.

Best Answer

«13

Answers

  • You can try to use BICC Data Lineage and query off the table directly.

    Any specific reason why you need to query the PVO instead of the table directly (Assuming it is available in the lineage) ?

  • Rank 3 - Community Apprentice

    Thank you Krishna for the response.

    Yes, we have a data loss on the way from HCM base tables to FAW and trying to query PVO to find out if it returns all data we need.

  • If you just want to query the PVO and see the data, then use BICC functionality to create a job and extract the data into Excel to review the data.

  • Rank 3 - Community Apprentice

    Thanks Krishna.

    I believe that creating an extract is much heavier than select * from PVO in OTBI/BIP

  • Rank 1 - Community Starter
    edited Dec 7, 2023 7:22AM

    Hi , you can use this query by going to BI Adminstartion , issue SQL :

    select * from EXTERNAL('ADF', '"oracle.apps.fscm.model.analytics.applicationModule.FscmTopModelAM_FscmTopModelAMLocal"."Connection Pool"').'FscmTopModelAM.FscmAnalyticsExtensibilityAM.Benefits_Realization_c'


    or


    select_physical * from "FscmTopModelAM.FscmAnalyticsExtensibilityAM.Benefits_Realization_c"


    with replacing FscmTopModelAM.FscmAnalyticsExtensibilityAM.Benefits_Realization_c with your PVO name .


    Resources : https://www.ateam-oracle.com/post/bi-cloud-connector-custom-object-data-extraction , https://www.vaamg.com/post/oracle-fusion-pvos

  • Rank 3 - Community Apprentice

    Thanks a lot Mohamed!

    select_physical * from...PVO...

    works great.

  • Rank 2 - Community Beginner

    Sorry, please, can anyone elaborate to get this query PVO running?

    oracle.apps.financials.payables.shared.publicView.ReportsBankAccountPVO

    Thanks

    Juan

  • Rank 8 - Analytics Strategist

    @Juan Jesus - In a data model you can create a dataset of type SQL with a database
    connection to the application databases. For example, application source
    ApplicationDB_FSCM

    Try using the below query as SQL to query the pvo:

    select_physical * from "oracle.apps.financials.payables.shared.publicView.ReportsBankAccountPVO"

  • Rank 2 - Community Beginner

    Thanks Sumanth,

    I get error.

    Can you elaborate? some screenshot?

    Juan

  • Rank 8 - Analytics Strategist

    @Juan Jesus - Please try using the below syntax:

    Example: select *
    from
    EXTERNAL('ADF','"oracle.apps.fscm.model.analytics.applicationModule.FscmTopModelAM_FscmTopMo
    delAMLocal"."Connection Pool"').'FscmTopModelAM.RcvReceiptsAM.ReceivingReceiptTransactionPVO

    Following explains the anatomy of the ADF from clause:
    EXTERNAL('ADF','”<PHYSICAL_DB_NAME_FOR_FUSION_PILLAR>.Connection
    Pool”).'<FUSION_VO_OBJECT_NAME>'
    The ”< PHYSICAL_DB_NAME_FOR_FUSION_PILLAR >” is the DB name in the RPD will vary depending on
    the pillar.

Welcome!

It looks like you're new here. Sign in or register to get started.