Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 77 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
How to retrieve the custom column labels used in Analyses using Catalog Report

Hello Experts,
We have OBIEE 12.2.1.4.0 on Linux. We used the Catalog Report to retrieve information about the dashboards and analyses. We are trying to fill some gaps in the information retrieved through the catalog report , specifically around custom headings used for columns. We have a number of analyses where we have used custom column headings/labels and are trying to see how to bring in this information on the catalog report. Any guidance or suggestion is much appreciated.
Thank You
Rakesh
Answers
-
I would say that the custom label being an optional information which can be different view by view in a unique analysis, you can't expect it as an option to select in the catalog report screen.
You can get it from the XML of the analysis itself, you can easily parse it and extract the custom heading at the analysis level and at each view level.
0 -
Hi Gianni
Thanks for your suggestion. I was to get the label/caption in the xml of the Analysis.
If I want extract all the custom headings in all the analyses in the system and load into a DB table and model it for reporting data dictionary, what method would you suggest ? Unix scripting or any OBIEE 12c API ? Please advise.
Thanks
Rakesh
0 -
I would try to take an approach being not too tightly coupled with your current environment as you never know what the future looks like. Keep the unix scripting (with file system access to the OBIEE catalog objects) as plan B, and focus on using the OBIEE webservices for the catalog first. This way you could run your code even on a different box and connect to various environments to etc. Will be "cleaner".
Using https://docs.oracle.com/middleware/12213/biee/BIEIT/methods.htm#BIEIT286 you can navigate in the whole shared catalog (what happen in users personal folders is their problem) as long as you use an account with enough permissions, and get all the XML and you are then free to do whatever you want.
I do that for auditing etc, works really well and you are totally independent of the platform (you can use a older WSDL version if you want to cover 11g as well as 12c with the same code, the newer version of WSDL would give you 12c and OAC support).
0 -
Thanks Gianni for sharing your knowledge . Appreciate all your suggestions.
0