Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 42 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
How to query PVO in Oracle BI Publisher Data Model
Answers
-
Hello , any idea i am not able to Query the following
select_physical * from "FscmTopModelAM.FinExtractAM.ArBiccExtractAM.TransactionLineExtractPVO"
0 -
Hi @User_H31GM
You can review the below sample one
select
*
from
EXTERNAL('ADF','"oracle.apps.fscm.model.analytics.applicationModule.FscmTopModelAM_FscmTopModelAMLocal"."Connection Pool"').'FscmTopModelAM.FinFunBusinessUnitsAM.BusinessUnitPVO' as t
FETCH FIRST 100 ROWS ONLY0 -
@Sumanth V -Oracle / Community
In order to a do a data mapping exercise, I am trying to look at the columns and "the data" in a BICC Public view object as BICC is being used to extract data out of oracle to a data warehouse
Is it possible to query BICC public views
I get the message Missing left Parenthesis
Select * from
EXTERNAL('ADF','"oracle.apps.fscm.model.analytics.applicationModule.FscmTopModelAM_FscmTopModelAMLocal"."Connection Pool"').'FscmTopModelAM.ScmExtractAM.DooBiccExtractAM.FulfillLineDetailExtractPVO' as t
FETCH FIRST 100 ROWS ONLY
Alternatively – If I try writing
select_physical * from "'FscmTopModelAM.ScmExtractAM.DooBiccExtractAM.FulfillLineDetailExtractPVO"
It gives error “Missing Right Parenthesis”
Is there anything i did wrong
0