Sparklines in OBIEE

Dear All,
Can anyone is aware or know whether Sparklines are supported in OBIEE Interactive dashboards and also let me know whether it can be implemented by any customizations?
If anyone has done such customizations, please share the steps and any Pseudo code or link (if any)
This is very critical and requires a reply for the same.
Thanks in advance.

Unfortunately OBIEE does not directly support sparklines. There are couple of small things that you can do.
You can simple download the report to Excel and use the sparkline template add in in excel to build the same.
There are some custom images that we can make use of them in conditional formatting tab of columns in OBIEE. We can import sparkline images and specify the condition there.
Hope it helps
Prash

Similar Messages

  • Sparkline chart not visible in obiee mobile app using ipad

    Hi,
    While trying to test our dashboard on IPAD 2, I am noticing that I am not able to view sparkline charts in the IPAD. I understand that since sparkline charts are built using JQUERY and Apple devices don't support jquery, therefore this doesnt work. Can someone please suggest any workarounds, so that we can get the sparkline charts working in the IPAD?
    Thanks,
    M
    Edited by: 918276 on Mar 1, 2012 4:56 PM

    Hi,
    Viewing the reports generated by OBIEE on the phone/ipad devices requires further configuration of the OBIEE presentation server as the devices presently does not support Flash displayed on web pages. So reports that contain Flash components like charts are not displayed correctly.
    We can modify the instanceconfig.xml file to display charts in a custom graphic format like PNG or JPEG instead of flash.
    Include the following in <Server Instance> section of instanceconfig.xml
    <Charts>
    <DefaultImageType>PNG</DefaultImageType>
    </Charts>
    It is recommended that you configure a separate presentation server to cater to the mobile device users as displaying charts in PNG or JPEG disables some of the interactive features offered by Flash.

  • Sparkline Chart in OBIEE

    Hi,
    How to built Sparkline chart with OBIEE? Is it possible to built it by any customization?
    Appreciate any help.
    Thanks,
    Vino

    Hi RMN,
    I've wanted to blog in the past, but I've got a pesky contract that says anything I blog about is my company's property (which doesn't sit too well with me). So I opted to help people in the public forum instead, that way others can read it and pass it around. So feel free to re-post this anywhere you want to.
    High-level: My approach was to create two Answer Requests, Sparkline Graph and Sparkline Pivot table. In OBIEE, the charts/graphs are embedded flash objects. My goal was to put a place holder embed tag for the sparkline graph in the pivot table and then use javascript to update the embed tag SRC attribute based upon an xmlHTTPRequest to the Sparkline Graph.
    Keep in mind, I programmed and tested on Mozilla. I just tested on IE and it doesn't work. Some of the xmlHTTPRequest commands need to be tweaked for cross platform compliance. I'll work on that when I get some free time, but meanwhile, feel free to go over this.
    Part 1)
    a) Create your Sparkline Graph first. In the screen shot I posted above, my graph metric is filtered on a plant-by-plant basis and projects the given measure over a calendar year, by month.
    b) Make sure you size it small. I moved the sliders to the first mark on both the horizontal and vertical.
    c) Remove any markings like grid-lines, titles, etc, to your liking.
    d) Save this request and note the name and the full request path
    Part 2)
    a) Create your pivot table report. As you can see, I pivot by month and each row is based on the Plant number. What ever your graph is prompted on, you need those fields in the row of the pivot table.
    b) Go into the formatting on your column that makes up the pivot row, in my case it's Plant Name, and add the following custom CSS style: font-family:Sparkline. This lets the javascript find what value to pass to the detail report.
    c) Create your sparkline column (i.e. add any column to the report). Format it as HTML and put the following into it. '<embed type="application/x-shockwave-flash" name="sparkline" width="100" height ="60" wmode="transparent" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" src=""/>'
    d) Copy and paste the following javascript into a static text object with HTML enabled. You will need to change the path of the request in the URL variable to your particular Sparkline graph path. Search for "chart_url" in the code. This uses standard GO URL syntax. In my case the path is "/users/administrator/Java%20Script%20Test/Sparkline%20Detail" and the column is "Scorecard.Plant". Replace those values as appropriate in your situation. The rest of the code should be fine as is. It basically looks for all the values tagged with the font-family:Sparkline and makes calls to your graph report. It then parses that call and pulls EMBED tag and gets the SRC attribute. It finally updates all those place holders with the appropriate SRC value.
    <script type="text/javascript">
    var debug =0; // set debug variable
    if (debug === 1) { document.write("Begining to get addSparkline function " + "<BR>");}
    if (debug === 1) { document.write("Setting up reg_exp variables" + "<BR>");}
    var sparkline_re = /Sparkline/;
    var chart_request = new XMLHttpRequest();
    var values = new Array();
    if (debug === 1) { document.write("Setup array for values" + "<BR>");}
    var elements = document.getElementsByTagName('*');
    if (debug === 1) { document.write("Get all tags" + "<BR>");}
    for( var element = 0; element <elements.length; element++)
         //if (debug === 1) { document.write("Looping over Elements: " + element + "<BR>");}
         if( !(sparkline_re.test( elements\[element\].getAttribute('style') )))
              // Not the sparkline area pass!
              //if (debug === 1) { document.write("Didn't find the style continue: " + elements\[element\].style.fontfamily+"<BR>");}
              //if (debug === 1) { document.write("Didn't find the class continue: " + elements\[element\].className + "<BR>");}
              continue;
         if (debug === 1) { document.write("Found the sparkline value element" + "<BR>");}
         var value = "\"" + elements\[element\].innerHTML + "\"";
         if (debug === 1) { document.write("Get the inner HTML" + "<BR>");}
         values.push(value);
         if (debug === 1) { document.write("Value is : " + value + "<BR>");}
    var embeds = document.getElementsByTagName('embed');
    if (debug === 1) { document.write("Get array of embeds" + embeds.length + "<BR>");}
    for ( var embed = 0; embed <embeds.length; embed++)
         if (debug === 1) { document.write("Looping over Embeds: " + embed + "<BR>");}
         var startIdx;
         var endIdx;
         var innerHTML;
         var chart_url = "saw.dll?Go&Action=Navigate&path=/users/administrator/Java%20Script%20Test/Sparkline%20Detail&col1=Scorecard.Plant&val1=" + values\[embed\];
         if (debug === 1) { document.write("Created XMLHttpRequest" + "<BR>");}
         if (debug === 1) { document.write("Setup the onreadystatechange function" + "<BR>");}
         chart_request.open("GET",chart_url,false);
         if (debug === 1) { document.write("Opened URL: " + chart_url + "<BR>");}
         chart_request.send(null);
         if (debug === 1) { document.write("Set send to NULL" + "<BR>");}
         startIdx = chart_request.responseText.indexOf("<embed");
         endIdx = chart_request.responseText.indexOf("</embed>");
         innerHTML = chart_request.responseText.substr(startIdx,endIdx-startIdx);
         startIdx = innerHTML.indexOf("saw.dll");
         endIdx = innerHTML.indexOf("\"",startIdx);
         embeds\[embed\].src = innerHTML.substr(startIdx,endIdx);
    if (debug === 1) { document.write("Finished" + "<BR>");}
    </script>
    Good luck and tell me if you have any troubles implementing this.
    Best regards,
    -Joe
    Edited by: Joe Bertram on Dec 22, 2009 11:56 AM

  • Displaying of charts as a separate column in table view view in obiee 11g

    Hi all,
    we have a requiremnet where i need to display charts in a separate column in a table view in OBIEE 11g. can any body help in achieving this requirement?
    Thanks in advance.
    Regards

    HI All,
    Can any body let me know how to achieve this requirement!
    charts also should be dsplayed in a column in table. I had gone through below Sparkline graph link but didn't move forward with Jquery. can any body help me in understanding this?
    http://srisnotes.com/tag/obiee-11g/.

  • Error while running a KPI Watchlist in obiee 11g dashboard

    I am getting the following error while running a KPI Watchlist :
    *" Odbc driver returned an error (SQLExecDirectW) "*
    I added two KPI's (KPI 1 & KPI 2)into that Watchlist , one from the default "Sample Sales Lite" (sub 1) and another from sub 2 which have essbase as data source .
    KPI 1 (created from sub 1) is working fine , but while placing KPI 2 (created from sub 2 ) in the watchlist , its throwing the above error . However , while running KPI 2 individually , its showing meaningful results .
    Let me know if the problem statement is not clear .
    OBIEE version used : 11.1.1.5.0 .

    Could anyone reply this thread. I am also getting the same error . Even server logs are also not helping.

  • OBIEE 11g - without going to Sawbridge first.....

    If you called OBIEE via the default path: http://domain-name/analytics?NQuser=xxx&NQpassword=xxxx
    instead of
    http://domain-name/analytics/saw.dll?NQzuser=xxx&NQpassword=xxxx  
    would your credentials be checked by weblogic before the default login jsp has access to the request parameters or after?
    Or does weblogic/OBIEE  stop you passing parameters to the default URL?
    What I'm trying to say is, if you go via the default domain without calling saw.dll first can you pass an encrypted password to your bespoke login.jsp (default.jsp) within the analytics domain and get this default.jsp
    to convert the password to plain text and then this default.jsp calls (forwards) to saw.dll....

    I have been trying to log in with my YouTube account name and password like usual. I just tried using my gmail log in and it works. Did they merge or something? It was working yesterday just fine without me changing the way I logged in. Either way, thanks for the help! Works great now
    Message was edited by: EvoXFTW

  • Error while creating Bi presentation service in obiee(11.1.1.3)

    Hi,
    Im using Jdeveloper(11.1.1.5) and OBIEE(11.1.1.3)
    I created a ADF application in Jdev and when I try to create a BI presentation services I'm getting the following error message.
    *Connection attempt failed.*
    *java.lang.RuntimeException: Unable to retrieve logon token. This version requires a BI build that implements the version 7 SOAP interface. Please verify that you are using the correct BI version.*
    does the creation of presentation service in jdev(11.1.15) work only with OBIEE(11.1.1.5) and not OBIEE(11.1.1.3).
    please help!
    Thanks,
    Venky
    Edited by: Venky on Jul 26, 2011 2:02 PM
    Edited by: Venky on Jul 27, 2011 6:18 AM

    Venky,
    The SOAP interface released with OBIEE 11.1.1.3 is version 6 (v6) as you can see from its WSDL URL.
    This would leave one only to believe that the SOAP interface released with OBIEE 11.1.1.5 is version 7.

  • OBIEE error while scheduling the report.

    Hi,
    I scheduled one report in OBIEE tool for 8.30 pm but that report get failed.
    I executed the same report many times with the same database configuration, same FTP configuration,
    I never get such exception before.
    In the morning i again execute that report with same configuration and it works.
    I am unable to find the cause of the error.
    bellow is the error description.
    oracle.apps.xdo.servlet.scheduler.ProcessingException: java.sql.SQLException: ORA-01033: ORACLE initialization or shutdown in progress
    could any body please explain what is the exact cause of the issue.

    The oracle Db you are connected is being shut-down.

  • How to embed user credentials in Secured Web Service from OBIEE 11gFMW?

    I am trying to invoke a webservice that I successfully exposed as a WSDL Web Service using EBS Integrated SOA Gateway. I am using OBIEE 11g Action Framework which uses WebLogic.
    Here are the steps I completed:
    - I exposed a WSDL web service in EBS R12 via Integrated SOA Gateway
    - I granted the access to this service in EBS R12 to user SYSADMIN
    - I used OBIEE 11g to make a Action to call the Web service (using Action Framework) by searching for the WSDL
    - When I try to execute the action: I get the error:
    Action could not be invoked.
    ServiceExecutionFailure :
    Error invoking web service HR_PHONE_API_Service at endpoint http://ip-10-87-33-3.ec2.internal:8000/webservices/SOAProvider/plsql/hr_phone_api/ Missing <wsse:Security> in SOAP Header
    PROBLEM: I am unsure how to add the credentials for SYSADMIN user and password to add the SOAP username/pwd to the outgoing call. According to the documentation in the Integrators guide, FMW Security guide, and Web Logic guides..seems we have to configure the SOAP call to have the proper credentials. The documentation is not very clear on exactly how to do this. I tried to set up the credential store and an account in ActionFrameWorkConfig.xml but I am still missing something. I am logged into OBIEE as biadmin and I am trying to call a webservie in EBS that is granted to SYSADMIN/sysadmin user. Pls advise.

    I am trying to invoke a webservice that I successfully exposed as a WSDL Web Service using EBS Integrated SOA Gateway. I am using OBIEE 11g Action Framework which uses WebLogic.
    Here are the steps I completed:
    - I exposed a WSDL web service in EBS R12 via Integrated SOA Gateway
    - I granted the access to this service in EBS R12 to user SYSADMIN
    - I used OBIEE 11g to make a Action to call the Web service (using Action Framework) by searching for the WSDL
    - When I try to execute the action: I get the error:
    Action could not be invoked.
    ServiceExecutionFailure :
    Error invoking web service HR_PHONE_API_Service at endpoint http://ip-10-87-33-3.ec2.internal:8000/webservices/SOAProvider/plsql/hr_phone_api/ Missing <wsse:Security> in SOAP Header
    PROBLEM: I am unsure how to add the credentials for SYSADMIN user and password to add the SOAP username/pwd to the outgoing call. According to the documentation in the Integrators guide, FMW Security guide, and Web Logic guides..seems we have to configure the SOAP call to have the proper credentials. The documentation is not very clear on exactly how to do this. I tried to set up the credential store and an account in ActionFrameWorkConfig.xml but I am still missing something. I am logged into OBIEE as biadmin and I am trying to call a webservie in EBS that is granted to SYSADMIN/sysadmin user. Pls advise.

  • Date Variable in Obiee 11g

    Hi All,
    I have created a dynamic repository variable that gives the current date. The date is given in the following format 'MM/DD/YYYY'. This is format that I want the date to appear in. In the presentation catalog, I have created a presentation variable dashboard promt called StartDate, that defaults to the repository variable CurrentDate. I have also created a report that has a number of measures filtered in different ways. If we take one of the measures in the report, what I have done is edited the formula to filter the measure by reported_date>Date'@{StartDate}'.
    Now when I got and see my dashboard I get an error, 'Datetime value 06/07/2011 from 06/07/2011 does not match the specified format'. However when I click 'Apply' on the prompt, the error does not appear and it just says that there is no data for this report.
    Can someone please help me solve this problem?
    Thanks,
    Nikita

    I solved this issue by using steps listed here http://gerardnico.com/wiki/dat/obiee/cast_as_date.
    Thanks

  • Login issue in OBIEE 11g

    Hi Experts,
    We are using OBIEE 11g
    We are facing the strange issue while accessing the presentation services login page.
    I had uploaded the RPD file using EM,it is working for 1 hour with out any issue.
    After some time the fallowing error is coming. then we are not able to access presentation services,
    I had observed all the services are down in EM>Capasity manage ment tab.
    Longing screen is coming ,but after entering the credentials ,it is showing login into…but not at all opening the window.
    Error connecting to the Oracle BI Server: Could not connect to the Oracle BI Server because it is not running or is inaccessible. Please contact your system administrator.
    Error Codes: WH4KCFW6:OPR4ONWY:U9IM8TAC
    Odbc driver returned an error (SQLDriverConnectW).
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
    [nQSError: 12002] Socket communication error at call=Connect: (Number=0) Call=NQRpc: An unknown socket communications error has occurred.
    [nQSError: 12010] Communication error connecting to remote end point: address = SERVERNAME.com; port = 9706.
    [nQSError: 12008] Unable to connect to port 9706 on machine SERVER_NAME.com.Please have your System Administrator look at the log for more details on this error. (HY000)
    Thanks in advance.

    Hi ,
    I normally do this to fix this problem
    1>Disable the network , keep the loopback adaptor enabled and then restart the services.
    2> You can enable the network after services are restarted.
    If you want a more practical solution and dont want to disable network again and again, then you would find the blog below useful.
    http://www.rittmanmead.com/2012/08/obiee-fmw-and-networking-on-dhcp-hosts/
    Hope this help.
    Thanks,
    Maqsood

  • Query is allocating too large memory error in OBIEE 11g

    Hi ,
    We have one pivot table(A) in our dashboard displaying , revenue against a Entity Hierarchy (i.e we have 8 levels under the hierarchy) And we have another pivot table (B) displaying revenue against a customer hierarchy (3 levels under it) .
    Both tables running fine under our OBIEE 11.1.1.6 environment (windows) .
    After deploying the same code (RPD&catalog) in a unix OBIEE 11.1.1.6 server , its throwing the below error ,while populating Pivot table A :
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    *State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 96002] Essbase Error: Internal error: Query is allocating too large memory ( > 4GB) and cannot be executed. Query allocation exceeds allocation limits. (HY000)*
    But , pivot table B is running fine . Help please !!!!!
    data source used : essbase 11.1.2.1
    Thanks
    sayak

    Hi Dpka ,
    Yes ! we are hitting a seperate essbase server with Linux OBIEE enviorement .
    I'll execute the query in essbase and get back to you !!
    Thanks
    sayak

  • I cant able to create a new Analysis and Dashboard prompt in OBIEE 11g

    Hi Gurus,
    i try to create a new Analysis in OBIEE 11g in (brower: ie,Google chrome, Mozila), i got the error "*unterminated string literal*" and "*Exception at function updateSelectionsPanel: unterminated string literal*".
    and i try to create a new Dashboard Prompt using column prompt when i select the column i don't get the filter form and not to be add the column prompt in the Dashboard Prompt.
    Thanks,

    Moving this discussion to the Adobe Creative Cloud forum.
    Kriskristferson if you are facing difficulties with your order then please contact our support team directly at Contact Customer Care.

  • Error in Privileges of OracleSystemUser in OBIEE 11g

    Hi,
    We are encountering an error with OracleSystemUser.
    The policy referenced by URI "oracle/wss_username_token_client_policy" could not be retrieved as connection to Policy Manager cannot be established at "t3://servername:7001,servername:9704" due to invalid configuration or inactive state.
    *<Warning> <oracle.wsm.resources.policymanager> <WSM-02310> <Failed to retrieve requested documents due to underlying error "java.rmi.AccessException: [EJB:010160]Security Violation: User: 'OracleSystemUser' has insufficient permission to access EJB: type=<ejb>, application=wsm-pm, module=wsm-pmserver-wls.jar, ejb=DocumentManager, method=retrieveDocuments, methodInterface=Remote, signature={java.lang.String,java.util.Map}.". The operation will be retried.>*
    After successfully integrating Active Directory in Weblogic, the error was triggered while implementing privileges to dashboard objects. Currently, we can login to Weblogic and EM but we cannot login to Analytics. All logs in the BI Server and Admin Server logs show the above error.
    Please help, thank you
    Edited by: 878720 on Sep 27, 2011 8:19 PM
    Edited by: 878720 on Sep 27, 2011 8:19 PM
    Edited by: 878720 on Sep 27, 2011 8:19 PM

    Hi,
    Please Change control flag of default authentication provider (in weblogic domain) from REQUIRED to SUFFICIENT . More on control flag in WebLogic Authentication Provider
    Refer :
    http://onlineappsdba.com/index.php/2011/06/21/unable-to-login-to-obiee-anylytics-after-oid-integration-user-was-authenticated-but-could-not-be-located-within-the-identity-store/
    Thanks
    Deva

  • OBIEE 11g: Dashboard Javascript Issue

    Hi Gurus,
    We have upgraded obiee from 10g to 11g and finding issues with javascript in a dashboard.
    Functionality: There are some custom labels showing prompt values in it with large font. When user change prompt value and Apply, it should change the value of those text as well.
    In 10g its running fine, but in 11g its not happening after we change the value of prompts. I found the following Javascript is responsible for this functionality. Even I saw one thread to suggest the exactly same code, but in 10g.
    <script type="text/javascript">
    (function(){
    var tblTag = document.getElementsByTagName('table');
    var tdElem= document.getElementsByTagName('td');
    for(m=0;m<tdElem.length;m++){
    if(tdElem[m].className=='GFPSubmit'){tdElem[m].childNodes[0].tBodies[0].rows[0].cells[0].childNodes[0].childNodes[0].innerHTML='Run Report';
    }//close if statement
    }//close for loop
    }// close function clickVal()
    </script>
    Thread:
    Change Go Button Text on Prompt Only
    I need to understand what its actually doing? and Does it really work in 11g? Whats the alternative code?
    Thanks in advance.

    In 10g these are the html objects, after upgrade you need to know the html objects for that report based on that you need to modify javascript code.
    From given code, activity is doing on these objects; You need to find out the equivalent object name for 'GFPSubmit' in 11g.
    GFPSubmit
    table
    td
    If make sense mark

Maybe you are looking for

  • Cyrillic fonts fo FCP

    I've bought my iMac and FCE in Russia and Cyrillic fonts were pre-installed in my computer. In few days I will have to edit on Mac Book Pro that my client brings from UK. He told me that the computer has no Cyrillic fonts. But we will need to make Ru

  • How to fix 403 in Mac OS X built-in Apache?

    I'm trying to set a local environment on my new MacBook Air 13": built-in Apache with my own DocumentRoot, PHP, and MySQL. I usually update /etc/hosts just to run my local websites with a pretty permalink: local/example. For references, I usually che

  • My yahoo browser is in English but when I click mail the result is HK" and in Chinese. I want English. Thanks.

    When I go the yahoo, everything is in English but after I call up "mail" and log in with my user name and password, the result is a "yahoo hong kong"...and the directions are in Chinese. I need English directions to "send" to delete" etc. I can't rea

  • Client Notification Issue

    Hoping someone can point me in the right direction here. Infrastructure: SCCM 2012 R2 CU1: Single Primary Site Server (Server 2012 R2 Update), With MP Role Remote SQL 2012 Server (Server 2012 R2 Update) Second Standalone MP (Server 2012 R2 Update) HT

  • Comment changer la couleur des menus

    mon menu sur un fond noir et si clair qu'il est presque illisible. Comment changer la couleur du menu de navigation. traduction babelfisch: my menu on a black background so clear that it is almost unreadable. How to change the color of the navigation