Wednesday, January 30, 2013

[OBIEE 10g] Creating Bookmark And Or Prompted URL


 

OBIEE Creating Bookmark and or Prompted URL



By default the Create Bookmark Link is enabled in the dashboard page options menu:






This can be control in the instanceconfig.xml file:


<Dashboard>
  <EnableBookmarkURL>True</EnableBookmarkURL>
</Dashboard>  


Setting this to false gives:






When selecting Create Bookmark Link you get an URL giving back the same prompt settings.


An other option is creating a Prompted URL. This stores the value of the used prompts in the URL (Like goUrl) and allows you to edit the values.


This functionality is enabled in the instanceconfig.xml file:


<Dashboard>
   <EnablePromptedURL>True</EnablePromptedURL>
</Dashboard>





The URL will look something like:





Before sending the URL to somebody you can "edit" the prompt values somewhat. If you want to this programmatically use the goUrl functionality.


You can set the "lifespan" of the bookmark with the <BookmarkExpirationDays> tags:


<Dashboard>
    <EnableBookmarkURL>True</EnableBookmarkURL>
    <EnablePromptedURL>True</EnablePromptedURL>
    <BookmarkExpirationDays>30</BookmarkExpirationDays>
</Dashboard>





No comments:

Post a Comment