Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Adding OBIEE catalog folder as favorite

Hi All,
We have option in OBIEE catalog to add reports/data model/components as Favorite.
But we are looking to add catalog folder as Favorite. Please share any option to do the same.
Thanks,
Xavier
Answers
-
The easiest way of comprehending something is always looking at HOW it works. Create a favorite and look at the XML in the catalog:
<?xml version="1.0" encoding="UTF-8"?><favoritelist xmlns="com.siebel.analytics.web/favorites/v1"> <favorite name="Customers Details" catalogpath="/shared/01. QuickStart/Simple Demo Dashboard/Customers/Customers Details" type="catalogitem" /></favoritelist>
However if you look at where this is stored you'll see this:
So a system folder called _favorites UNDER a system folder called _internals. And if over the years one has learned one thing about the OBI web catalog then it is that one doesn't mess with system folders unless one knows exactly how what works why.
Let's fake an entry:
Does it show? Nope:
type="catalogitem" declares an analysis and the path points to a folder, so that's just wrong.
tl;dr - no. Favorites are for analyses.
PS: Not to make too fine a point and don't take this the wrong way. This is the internet after all and everybody can be anything they want - but signing "Xavier" while keeping 932245 as your name? Take a cue from all leaders of the BI community:
Use your actual name.
0 -
As an addition, in case you are tempted of replacing "catalogitem" by "catalogfolder", the XSD accept only 2 values for that attribute: catalogitem and category.
No idea what "category" is for, but nothing in the XSD let imagine a folder path can be used as favorite.
0 -
Category is just to make folders of favorites - i.e. group favorites:
So my statement remains, @932245 - it's only analyses and other "items". Never folders.
0