Merging of two charts in OBIEE

hi ,
we have two column week and % at x axis. and revenue on y axis.. so in X axis up to week 20 the y axis should show revenue vs week. and after taht revenue on Y axis should be vs %. it is single chart.
Thanks,
F

hi
You can do this way:
in global declaration under types:
declare a structure containing the fields of both tables.(type_s)
in global declaration: declare the workarea and correponding table
using
tab1 type standard table of type_s.(for table)\
wa_type type type_s.(for work area).
Use a program line to join two tables and then display them accordingly using tables node.
OR
You can create view which includes both the tables and use it when declaring tables.
I guess this should help.
Award points if helpfull

Similar Messages

  • Merging two rpds in OBIEE 11g

    Hi,
    To merge two RPDs in OBIEE 11g, do I need to have both RPDs online? What are the pre requecities? Do I need to modify ini file to mention those RPDs.? Please tell me the steps involved.
    Thanks and Regards
    Santosh

    Q1. If I create a merge RPD from two independent sources, then, how does the physical layer is built?
    A1.
    Q2. Does it creates separete schema in physcial layer for tables from first source and another schema for other source?
    A2.
    Q3. If two separate schemas are built then does those schema pull data from there respective sources independently in Answer?
    A3.
    Q4. If it create combined schema, then hw is data fetched in Answer? Is there any link created by default or developer need to create a common link between two schemas?
    Hw will it fetch data from two seperate data sources during runtime?
    A4.
    Please provide some conceptual understanding for above queries.
    As far as I understand with my knowledge in OBIE, separate connection pool is required for each source when you create merged RPD since tables are from two separate DB sources even if being in the single rpd after merge. If my conceptual understanding is wrong then, guys, please help me to understand.
    Thanks
    Santosh

  • Merge two charts in Answers

    Hi, I need to know if there is a possibility to merge two charts in Answers. If so, can any one out there help me with that. Thank you.

    Hi,
    This is the BI Apps forum, the better forum to post your question is:
    Business Intelligence Suite Enterprise Edition
    Regards,
    -Ignacio

  • 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

  • Embeding google charts in OBIEE?

    This is how the pie chart looks:
    http://chart.apis.google.com/chart?cht=pc&chd=t:1726729,1879074,316017&chs=450x300&chco=FF0000,00FF00
    This is how the concentric chart looks:
    'http://chart.apis.google.com/chart?cht=pc&chd=t:1726729,1879074,316017|5689083,6243916,1154530&chs=450x300&chco=FF0000,00FF00'
    Creating the normal pie chart in OBIEE is pretty simple (I will use "Paint" subject are):
    1) Create a request with this SQL:
    SELECT Periods."Year" saw_0, "Sales Measures".Units saw_1, "Sales Measures".Dollars saw_2 FROM Paint ORDER BY saw_0
    2) In the Narrative view type the following:
    Prefix: <img src="http://chart.apis.google.com/chart?cht=pc&chd=t:
    Narrative @2
    Row separator ,
    Postfix &chs=450x300&chco=FF0000,00FF00&/>
    3) make sure you check the "Contains HTML Markup" box
    Any suggestions on how to create a concentric pie chart using this data set (using columns 2 and 3 as the data source?
    Edited by: Sart1997 on Oct 30, 2009 6:54 AM

    I tried solving this issue - and the problem is that you need two different data sets (by pipe). I tried to create a concat column (CAST(CASE "F1 Revenue"."1-01  Revenue  (Sum All)" WHEN NULL THEN 1000000 ELSE "F1 Revenue"."1-01  Revenue  (Sum All)" END AS CHAR)||','||CAST((CASE "F4 Inventory"."5-01  Inventory  (Sum All)" WHEN NULL THEN 400000 ELSE "F4 Inventory"."5-01  Inventory  (Sum All)" END) AS CHAR)) (NULL give blank chart, hence filtering it out) and used it with a pipe as separator. The problem here is that - it's not the data that we need. We get this:
    http://chart.apis.google.com/chart?cht=pc&chd=t:1000000.00,400000|11371280.12,17267959|13531763.86,24359487&chs=450x300&chco=FF0000,00FF00(!!http://chart.apis.google.com/chart?cht=pc&chd=t:1000000.00,400000|11371280.12,17267959|13531763.86,24359487&chs=450x300&chco=FF0000,00FF00(!
    After small modification:
    This "D0 Time"."T05 Per Name Year"||','||CAST(CASE "F1 Revenue"."1-01  Revenue  (Sum All)" WHEN NULL THEN 10000000 ELSE "F1 Revenue"."1-01  Revenue  (Sum All)" END AS CHAR)||','||CAST((CASE "F4 Inventory"."5-01  Inventory  (Sum All)" WHEN NULL THEN 2500000 ELSE "F4 Inventory"."5-01  Inventory  (Sum All)" END) AS CHAR)produces this:
    !http://chart.apis.google.com/chart?cht=pc&chd=t:2006,10000000.00,2500000|2007,11371280.12,17267959|2008,13531763.86,24359487&chs=450x300&chco=FF0000,00FF00!
    I hope it's close to what you need
    Edited by: wildmight on Oct 30, 2009 1:07 PM

  • I have a new iPod Touch and one apple ID. I want to use My laptop aswell as my desktop computer for the one ipod, using the same apple ID. I have music on both computers and want to merge the two without losing any music or apps. How do I do this?

    I have a new iPod Touch and one apple ID. I want to use My laptop aswell as my desktop computer for the one ipod, using the same apple ID. I have music on both computers and want to merge the two without losing any music or apps. How do I do this?
    My iPod has music and apps from my apple ID that I downloaded to my iPod via iCloud and some apps that I got free from the store, straight onto my iPod, but my laptop has some music on it aswell, separate from my other library. I want to put the music from my laptop into my iTunes library which I want to use on both computers. Is it possible to do this?
    Thanks.

    - You can only sync an iPod to one iTunes library/computer. You can however, manually manage music and videos among different libraries.
    Go to iTunes>Help>iTunes Help>Sync your iPod....>Sync You Device>Set up Syncing>Sync your device manually and follow the instructions.
    - If y wnat to switch syncing libraries/computer see:
    go to iTunes>Help>iTunes Help>Sync your iPod....>Sync You Device>Set up Syncing>Sync your device manually and follow the instructions.
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities
    If all the synced media like music is in the iTunes library of the second computer it is very easy.

  • I created one iTunes account on one pc and another iTunes account on my current pc. How do I merge the two accounts?

    I created one iTunes account on one pc and another iTunes account on my current pc. How do I merge the two accounts?

    Csound1 wrote:
    iMatch works by matching or uploading the music in your iTunes account, it doesn't matter where the music came from as long as it now in your account, but if you purchased it with a different account you will need to be logged in
    No.
    As long as you computer is authorized for that iTunes account, the songs will work with iTunes Match. The user does not need to be logged in on that computer.
    Husband's computer and husband's iTunes account signed in.
    Songs from wife's iTunes account on computer and computer authorized for wife's account. Songs from both will work with iTunes Match.

  • Somehow I have two apple accounts. Can I merge the two?

    I am not sure why but I have two apple accounts with two different email addresses.  This is causing problems with iMessages not syncing over my devices because the different email addresses cause messages to be sent to different devices so I miss messages.  Can I merge the two apple accounts, if so.  How?

    Please see item no. 5 of this article:
    http://support.apple.com/kb/HE37
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.

  • HT5621 When I got my new iPhone and was trying to switch everything over I accidentally set up a new icloud account with one email and had one on my old iphone with another account. Does anyone know how I can merge the two accounts?

    When I got my new iPhone and was trying to switch everything over I accidentally set up a new icloud account with one email and had one on my old iphone with another account. Does anyone know how I can merge the two accounts?

    You cannot merge Apple IDs but you can go to Settings > iCloud and 'Delete Account'.  When prompted to turn off documents and data, choose the only option which is Delete from my iPhone, but on the other prompt for Contacts, Calendars, etc you can choose 'Keep on my iPhone'  Then once the Account is Deleted form the iPhone, log back in with the correct Apple ID and choose Merge when prompted.  This will merge your data from this iPhone with that iCloud account effectively putting your devices on the same account.

  • How can I merge my two Apple ID's?

    I recently activated an iCloud account after upgrading to an iphone5.  ICloud requires an Apple ID in the form of an email address.  My Apple ID was not an email address.  Let's say it was "JohnDoe".  So I logged onto my "JohnDoe" Apple account and tried to change the ID to my one and only email address, "[email protected]".  Well it seems that a number of years back I had already set up an Apple ID with that email address.  No problem, I used the "[email protected]" apple ID  to set up my iCloud account.  Here's the problem.  I had tons of songs, books, apps, etc. saved in a  wish list on my old "JohnDoe" apple ID.  I have a credit on it from itunes gift cards.  Plus, a few of my apple products are registered to that ID.  (My iphone5 is now registered to the "[email protected]" Apple ID.)  I want to have one Apple ID ([email protected]) with my wish list, all my products and everything linked to it.  Can I merge the two? 
    Thanks

    stephencotterell wrote:
    Given the way Apple insists on working with setting up new devices (i.e. the set-up processes have been encouraging duplicated Apple IDs) it is entirely reasonable to request the ability to merge Apple IDs for those of us who have supported the company for years and have bought a lot of devices, accessories, software, music, books etc from Apple Inc
    When do you think this reasonable request will be fulfilled?
    We are just fellow users here and as such have no idea if, much less when, Apple will ever allow merging of Apple IDs. You can comment to Apple on the issue via their feedback pages, if you wish:
    http://www.apple.com/feedback/
    but I'm quite sure Apple is aware of the interest in such a feature.
    Regards.

  • I've had an Apple ID under an old email address. I have a new Apple ID under my current email. Is there a way to link or merge the two together? I don't remember the old password and that email address is no longer active.

    I've had an Apple ID under an old email address. I have a new Apple ID under my current email. Is there a way to link or merge the two together? I don't remember the old password and that email address is no longer active. If I cannot link or merge the two, how can I activate the old ID on the new computer if that email account is no longer active?? Any advice would be great. Thanks in advance!!

    You cannot merge accounts.
    You need to sign into the old account on your computer.
    iTunes Store: Retrieving and changing passwords (Apple ID)

  • I have created an iTunes account on my current computer for my daughters ipod touch and tried connecting my ipod nano and it won't sync and says that it is associated with another iTunes library so how do I merge the two libraries?

    I have created an iTunes account on my current computer for my daughters ipod touch and tried connecting my ipod nano and it won't sync and says that it is associated with another iTunes library so how do I merge the two libraries?

    You do not merge libraries.
    iDevices sync to one and only one computer.
    If you want a single library, you manually move the content from one library to another... all content will still be associated with the Apple ID it was acquired with.

  • I had an Apple ID and password with my hotmail acct.  The password stopped working, so I set up a new one with my me acct.  How can I access my old acct. and merge the two of them?

    I had an Apple ID and password with my hotmail acct.  The password stopped working, so I set up a new one with my me acct.  How can I access my old acct. and merge the two of them?

    https://iforgot.apple.com/cgi-bin/WebObjects/DSiForgot.woa/wa/iforgot?language=C A-EN&app_id=2417&newWindow=true&border=false

  • I signed up for Apple ID and Apple Support Communities separately. Can I merge the two accounts?

    I signed up for an "Apple ID" and an "Apple Support Communities username" separately using the same e-mail address.  Is there any way to merge the two accounts?
    I signed up for "Apple Support Communities" several years ago to get help with Apple products. I then signed up for an "Apple ID" later on to buy stuff at the iTunes Store.
    I was trying to access "Apple Support Communities" using my Apple ID and I get prompted to choose a username. But when I type my current username, it says the username is already taken. Alternatively, if I try to choose a new username to go along with my Apple ID, I get a message saying that there is a username already assigned to my e-mail address.
    For some reason, "Apple Support Communities" is not intuitively syncing the two accounts together despite the fact that they are linked to the same e-mail address.
    I don't want to cancel either of these accounts since I have activities using one/the other that I do want to preserve.
    Can anyone help me merge these two accounts together?
    Thanks.

    I will do it for you.   I can't say they will take any action, they operate in their own way, but if they feel there may be a threat to your security they will normally take it seriously.   My guess is they would eMail their actions to you, though not to me of course.
    I hope this will help.
    Okay; I've now reported the thread.
    Message was edited by: seventy one

  • How to add two columns in OBIEE report?

    Hi to All,
    Can anyone tell me how to add two columns in OBIEE report and get that result in a new column?
    Thanks in Advance,
    Thenmozhi

    Assume you already have two columns SalesAmt1 and SalesAmt2, and you want to derive 3rd column say SalesAmt3 which would be the sum of SalesAmt1 and SalesAmt2.
    For this, as I mentioned above pull SalesAmt1 and SalesAmt2 columns in Report. Now pull another column (say SalesAmt1) and open the fx. Clear the contents of fx. Now locate the columns button in the bottom of the fx. From Here, first select SalesAmt1 and + sign and the select SalesAmt2.
    Now in this new column, the fx should look like SalesAmt1 + SalesAmt2.
    Let me know if you are looking for something else.
    Thanks

Maybe you are looking for

  • Applet needs browser to be restarted ?!?

    Hi again.. thats the problem: 1) I open FireFox2 2) i go to the Applet Page and make it start -> OK it works... 3) i close the Applet Page -> shutdown seems to be clear... 4) i go to the Applet Page and make it start -> it loads very quickly but it i

  • Can't use any tools from the toolbar

    I'm running  InDesign CS6 ver. 8.0.1 on a Windows 7 64-bit pc. InDesign has been running perfectly for about two years on this pc until about a month ago when I suddenly couldn't use the tools from the toolbar any longer. I have searched for a soluti

  • Basic Jnlp file question

    What tag do I need to add if I want to pass some command-line parameters to my main jar file? Does anybody know? Any hints will be much appreciated. Thank you!

  • Problem with exporting PDF from Indesign CS6

    Hi, I recently registered & installed CS6 on my computer (Last week!), and I seem to have problems with Indesign, which is the main reason for my buying the product. The problem is that whenever I try to save & export a file as PDF from Indesign I ge

  • Ring Tones & Photos . .

    Hello , i am using a apple i4 . but i have few problems with that . i thank u will help me on that . i want to pu a ringtone in ma phone . but how can i do that ? i can only use the songs which are coming with the phone  . i cant use a song which was