• What is dbt_artifacts?

    dbt_artifacts is a package for modeling a dbt project and its run metadata. It includes the following models to help you understand the current state of a dbt project and its performance over time. It...

  • Data migration from the Salesforce to snowflake Data warehouse by using Matillion

    Purpose of the Article: This blog explains how to load the data from Salesforce to Snowflake Intended Audience: This article will help our Organizational level kind of developers working on data migra...

  • WiMAX-A Study of Mobility

    1. Introduction The wireless market is growing rapidly; being pushed through wireless connectivity demand various wireless connectivity means are emerging (WLAN/802.11, WMAN/802.16a, WWAN/802.16d) [IE...

  • Weblogic Upgrade

    Patch Name wls1036_upgrade_generic.jar Reference https://www.youtube.com/watch?v=Be6hrYTANQE Just Click Next and Next MAKE SURE ALL OBIEE SERVICES ARE DOWN AND CLOSED IN PROCESS Open CMD prompt C:Mid...

Tags

bics installation OBIEE obiee 11g installation guide Oracle

Categories

Adding Logo’s to OBIEE.

a

Adding Logo’s to OBIEE.

Where are these images located?

All images are stored in the ‘browser look and feel plus’ folder of the BI Server, you’ve probably seen this notated as ‘s_bflap’. This folder exists in two locations and it is critical that any image you upload be housed in both:

  • Oracle_BI1bifoundationwebappress_blafpimages
  • user_projectsdomainsbifoundation_domainserversbi_server1tmp

_WL_useranalytics_11.1.17dezjlwarress_blafpimages

Note: A full list of logo’s that are already loaded within OBIEE 11g by default can be found here:

2016-12-07_2311

screen-shot-2016-12-07-at-23-40-36

Deploy Image:

  • Create any sample report.
  • Go to the results tab & edit the Title view of the report..
  • screen-shot-2016-12-07-at-23-05-35
  • Set the title for the report. (By default, this title is same as report name).
  • Set other fields in you are interested in further formatting.
  • In the logo, you give the path for that logo/image. It can be,
    • Relative path – The logo will accessible only on the localhost.
    • URL – A complete URL to that image.
  • Relative path – 
Note: When running in a secured environment, only resources that are located on the Oracle BI Presentation Server may be used. These resources are referenced using a relative path prefixed with “fmap:”.

screen-shot-2016-12-07-at-23-32-38

OR like below:

screen-shot-2016-12-07-at-23-52-37

  • URL – need to provide complete URL 

screen-shot-2016-12-07-at-23-59-42

You can format the logo within the title view, click on the pencil again within the title view and click the small icon with the letter ‘A’ in it next to the ‘logo’ text box, the ‘Format Logo’ window should appear:
Screenshot 7
From this window we can format the alignment, colours and borders of the logo. The logo that I’m using doesn’t need configuring so I am going to go back to the ‘Compound Layout’ webpage.

You can also use pictures located online for your title view, all you need is the URL of the image. I did a Google search of a pound sign and I found that the following image would be good to use on the title view:

screen-shot-2016-12-08-at-00-23-02

Logo to Dashboard

  • create new dasboard
  • add column
  • add text

screen-shot-2016-12-08-at-00-13-47

copy below script into the text and click “contains html markup”

screen-shot-2016-12-08-at-00-15-02

<script type=”text/javascript”>
/*
____________________________________________________________________
Created By: Leigh Wilson (leigh@wilson-is.com) http://www.wilson-is.com
Edited By: Zafar Ali (Zafar li@miaz-tech.com)
____________________________________________________________________
*/
function renderBanner(pagetitle) {
//Note: the usual method of inserting an innerHTML with the full div tag defined isn’t friendly across browsers.
//The approach below, although cumbersome, is a very clean way to define the div and render it safely on chrome, ie and FF.
//Insert the image on the top left of the screen.
var div = document.createElement(“div”);
div.id = “wilson_banner_image”;
div.style.top = “-1px”;
div.style.left = “0px”;
div.style.position = “absolute”;
div.style.right = “0px”;
div.style.zIndex = 10;

div.innerHTML = “<img src=”http://ids-sol.co.uk/wp-content/uploads/2016/12/logo2.png” style=”width:204px;height:44px;”>”;
document.body.insertBefore(div, document.body.firstChild);

//Insert the title
div = document.createElement(“div”);
div.id = “wilson_banner_title”;
div.style.top = “-1px”;
div.style.left = “0px”;
div.style.position = “absolute”;
div.style.right = “0px”;
div.style.zIndex = 11;
div.style.width = “100%”;
div.innerHTML = “<font style=”top:17px; position:absolute; font-weight:bold; font-family:Calibri, Verdana; font-size:18px; color:rgb(227, 236, 241); text-align:center; margin-left:auto; margin-right:auto; width:100%;”>” pagetitle “</font>”;
document.body.insertBefore(div, document.body.firstChild);

//Insert the banner background, the blue filled rectangle
div = document.createElement(“div”);
div.id = “ng”;
div.style.top = “-1px”;
div.style.left = “0px”;
div.style.position = “absolute”;
div.style.right = “0px”;
div.style.zIndex = 9; //this allows the image div to be layed over the top via the zindex 10, as seen in div “ng_image”.
div.style.width = “100%”;

div.innerHTML = ‘<table style=”text-align:left; vertical-align:middle; background-color: rgb(36, 38, 63); height:54px; padding:0px; width:100%; z-index:10;”><tr><td>&nbsp;</td></tr></table>’;
document.body.insertBefore(div, document.body.firstChild);

//Insert the top right home icon, should the users want to return to the default home page/catalog
div = document.createElement(“div”);
div.id = “wilson_banner_home_icon”;
div.style.top = “-1px”;
div.style.left = “0px”;
div.style.position = “absolute”;
div.style.right = “0px”;
div.style.zIndex = 15; //this allows the image div to be layed over the top via the zindex 10, as seen in div “wilson_banner_image”.
div.style.width = “100%”;
div.innerHTML = ‘<table style=”text-align:right; vertical-align:middle; height:54px; padding:0px; width:100%; z-index:10;”><tr><td><a href=”/analytics/saw.dll?bieehome” alt=”Home Area for Reporting”><img src=”http://ids-sol.co.uk/wp-content/uploads/2016/12/home.png” border=0 alt=”Home Area for Reporting”></a></td></tr></table>’;
document.body.insertBefore(div, document.body.firstChild);

return false;

} //renderBanner

//render the banner and place the title on the top of the banner
renderBanner(‘Dynamic Main Menu Title’);

</script>

screen-shot-2016-12-08-at-00-16-39

Warning: Array to string conversion in /volume1/web/wordpress/wp-includes/link-template.php on line 2361 Call Stack: 0.2507 6404168 1. {main}() /volume1/web/wordpress/index.php:0 0.2507 6404480 2. require('/volume1/web/wordpress/wp-blog-header.php') /volume1/web/wordpress/index.php:17 3.5768 22963160 3. require_once('/volume1/web/wordpress/wp-includes/template-loader.php') /volume1/web/wordpress/wp-blog-header.php:19 3.5900 22971032 4. include('/volume1/web/wordpress/wp-content/themes/ayro/single.php') /volume1/web/wordpress/wp-includes/template-loader.php:106 4.1488 25067032 5. ayro_qodef_get_blog_single() /volume1/web/wordpress/wp-content/themes/ayro/single.php:9 4.1490 25067408 6. ayro_qodef_get_module_template_part($template = 'templates/single/holder', $module = 'blog', $slug = '', $params = ['sidebar' => 'default']) /volume1/web/wordpress/wp-content/themes/ayro/framework/modules/blog/blog-functions.php:459 4.1490 25067536 7. ayro_qodef_get_template_part($template = 'framework/modules/blog/templates/single/holder', $slug = '', $params = ['sidebar' => 'default']) /volume1/web/wordpress/wp-content/themes/ayro/framework/lib/qode.functions.php:907 4.1492 25068440 8. include('/volume1/web/wordpress/wp-content/themes/ayro/framework/modules/blog/templates/single/holder.php') /volume1/web/wordpress/wp-content/themes/ayro/framework/lib/qode.functions.php:888 4.1492 25068440 9. ayro_qodef_get_single_html() /volume1/web/wordpress/wp-content/themes/ayro/framework/modules/blog/templates/single/holder.php:3 4.2509 25172728 10. ayro_qodef_get_module_template_part($template = 'templates/single/parts/single-navigation', $module = 'blog', $slug = ???, $params = ???) /volume1/web/wordpress/wp-content/themes/ayro/framework/modules/blog/blog-functions.php:523 4.2509 25172872 11. ayro_qodef_get_template_part($template = 'framework/modules/blog/templates/single/parts/single-navigation', $slug = '', $params = []) /volume1/web/wordpress/wp-content/themes/ayro/framework/lib/qode.functions.php:907 4.2510 25174208 12. include('/volume1/web/wordpress/wp-content/themes/ayro/framework/modules/blog/templates/single/parts/single-navigation.php') /volume1/web/wordpress/wp-content/themes/ayro/framework/lib/qode.functions.php:888 4.2652 25238896 13. previous_post_link($format = '%link', $link = [0 => 'https://miaz-tech.com/wp-content/uploads/2016/05/shop-product-image-4.jpg', 1 => 600, 2 => 651, 3 => FALSE], $in_same_term = TRUE, $excluded_terms = '', $taxonomy = 'category') /volume1/web/wordpress/wp-content/themes/ayro/framework/modules/blog/templates/single/parts/single-navigation.php:27 4.2652 25238896 14. get_previous_post_link($format = '%link', $link = [0 => 'https://miaz-tech.com/wp-content/uploads/2016/05/shop-product-image-4.jpg', 1 => 600, 2 => 651, 3 => FALSE], $in_same_term = TRUE, $excluded_terms = '', $taxonomy = 'category') /volume1/web/wordpress/wp-includes/link-template.php:2278 4.2652 25238896 15. get_adjacent_post_link($format = '%link', $link = [0 => 'https://miaz-tech.com/wp-content/uploads/2016/05/shop-product-image-4.jpg', 1 => 600, 2 => 651, 3 => FALSE], $in_same_term = TRUE, $excluded_terms = '', $previous = TRUE, $taxonomy = 'category') /volume1/web/wordpress/wp-includes/link-template.php:2259
No Comments
Post a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.