Is it possible to add multiple charts in a single visualization?

Hi All,
I would like to know whether we can display multiple charts (line, column, etc) inside a single 'Visualize' screen.
I am using:
SAP Lumira
Version: 1.15.1
Build: 879
This will help in situations where we need to compare 'month on month' values for sales and demand data to be displayed side by side instead of different Visualization screens
Regards,
Chinmay

Hello Chinmay - that is what Storyboards are for
See SAP Lumira 1.12.0: Create a storyboard

Similar Messages

  • Is it possible to  add multiples dimension objects in Webi Ranking ?

    As per the project requirement we need to convert custom sqls to reporting sql in webi 3.1 sp5 .
    Is it possible to  add multiple dimension objects while applying ranking (Webi query panel ).
    Or is there any other way to achieve this feature in BO ?
    Regards,
    Pranay

    Hi ,
    There is a way if you want to apply ranking within a ranking . Below are the steps:
    First on the outer side we can use the Rank feature which is available directly
    Then use the Rank Function (=rank ()) and reset your dimension accordingly .
    This kind of Ranking is possible.
    Regards,
    Rahul

  • Is it possible, to add multiple USB devices to TC

    Is it possible, to add multiple USB devices using a hub to Time Capsule (as stated for Airport Extreme)?
    Thanks in advance.
    Stefan

    The Time Capsule is an AirPort Extreme with a built-in hard drive, so you can add multiple USB devices if you use a powered USB hub.

  • Can I add multiple elements on a single line?

    Can I add multiple elements on a single line?

    Not yet. But this is something we plan to support. You can vote on this idea here: http://forums.adobe.com/ideas/1046
    We use this to help prioritize our work.
    Randy

  • Is there a way to add multiple borders to a single cell with one click or do I have to add one border at a time for example, one cell with borders on three sides?

    I would like to know if there is a way to add multiple borders to a single cell or selection of cells in one click.  At this time, if i want to add for example a top border and a bottom border to a single cell I have to do this in two steps: first select the top border, style, thickness, and color, and then next select the bottom border, style, thickness, and color.  Is there a way to select the top and bottom border of a cell in one click?  Clicking on the top border then holding down the command key while selecting the bottom border does not work, nor does holding down the option key, the control key, or the shift key work. Thanks for your help.

    Thank you for the suggestion but this did not work for my Mac.  When a cell is selected for which I want borders, the entire cell is lit up.  Then when I go to the border tool and select style, thickness, and color, the entire lit up cell takes on the border, that is the Outside Edges of the cell now have a border.  So selecting the style, thickness, and color first doesn't work.
    If I select the top border first (or any border), the drop down goes away and I can't select multiple borders - I get to choose one at a time.  After selecting one border, style, thickness, and color, said border is now on the spreadsheet.  Then I go back to the border selection and pick another border and the the previously selected style, thickness, and color reverts to null, so I start over with the new border style, thickness, and color.  Yes, it is tedious.
    The Fix would allow the user to select multiple borders, say left and right, before the drop down goes away after selecting only one border
    Does it have something to do with Allow or Disallow border selection?
    I have Numbers '09 version 2.1 (436)

  • Want to add multiple idoc type with single message type.

    Hi Gurus,
    I have a problem. I want to add multiple idoc type with single message type in WE20.
    How we can do this in WE20 or is there any other way to do that?
    Please help me.
    Thanks in advance.
    Srimanta.

    hi,
    basically in partner profile i.e. in we20 , we add details to the receiver / sender port that we have created using we21.
    so what exactly we do in that is that we first use the message type for those idocs that we have created.
    now based on those message type we create a process code. now this is the reason why you cannot apply several message types with the same name in we20... as process code is unque for each message type.
    so thats why you can only assign the same message name to several idocs in we82 and then in we20 define the process code for that message type.
    it will solve your problem.
    hope this will help you!!!
    Thanks & regards,
    punit raval.

  • Does anyone know how to add multiple pictures to a single frame in iMovie?

    Does anyone know how to add multiple pictures to a single frame in iMovie?

    Maybe you would be better off posting this in the iPhoto or iDVD categories of the forums.
    http://discussions.apple.com/category.jspa?categoryID=143
    http://discussions.apple.com/category.jspa?categoryID=128
    The answer to your question depends on what you ant to do with the DVD.
    Do you want a DVD menu, slide show etc.
    iPhoto will allow you to burn straight to a DVD. Just select the album you want to burn then go to share in the tool bar and select Burn.

  • How can i add multiple validations for a single input box in adf?

    hi,
    i want to add multiple validation for a single input text control in adf like number validation and its existence in database.
    MY JDEV VERSION IS 11.1.1.5.0
    pls help !!!!

    Hi,
    1.I want to validate if the value entered is pure integer
    Option 1-
    select the component and in the Property Inspector, in the "Core" category select a "Converter" format, select javax.faces.Number, if the user put a string, adf show a dialog error or message error...
    Option 2-
    or use the Regular expression:-
    http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_validateRegExp.html
    https://blogs.oracle.com/shay/entry/regular_expression_validation
    Also check this:-
    http://docs.oracle.com/cd/E15523_01/web.1111/b31973/af_validate.htm#BABHAHEI
    Option 3-
    Frank in his great book 'Oracle Fusion Developer Guide' shows a example using a javascript for input which is allowed only for numbers. You can manipulate for your requirement.
    Here is the code:
    function filterForNumbers(evt) {
        //get ADF Faces event source, InputText.js
        var inputField = evt.getSource();
        var oldValue = inputField.getValue();
        var ignoredControlKeys = new Array(AdfKeyStroke.BACKSPACE_KEY, AdfKeyStroke.TAB_KEY, AdfKeyStroke.ARROWLEFT_KEY, AdfKeyStroke.ARROWRIGHT_KEY, AdfKeyStroke.ESC_KEY, AdfKeyStroke.ENTER_KEY, AdfKeyStroke.DELETE_KEY);
        //define the key range to exclude from field input
        var minNumberKeyCode = 48;
        var maxNumberKeyCode = 57;
        var minNumberPadKeyCode = 96;
        var maxNumberPadKeyCode = 105;
        //key pressed by the user
        var keyCodePressed = evt.getKeyCode();
        //if it is a control key, don't suppress it
        var ignoreKey = false;
        for (keyPos in ignoredControlKeys) {
            if (keyCodePressed == ignoredControlKeys[keyPos]) {
                ignoreKey = true;
                break;
        //return if key should be ignored
        if (ignoreKey == true) {
            return true;
        //filter keyboard input
        if (keyCodePressed < minNumberKeyCode || keyCodePressed > maxNumberPadKeyCode) {
            //set value back to previous value
            inputField.setValue(oldValue);
            //no need for the event to propagate to the server, so cancel
            //it
            evt.cancel();
            return true;
        if (keyCodePressed > maxNumberKeyCode && keyCodePressed < minNumberPadKeyCode) {
            //set value back to previous value
            inputField.setValue(oldValue);
            evt.cancel();
            return true;
    2.I want to check if the value exists in my respective DB You must be having EO or VO if you want to validate with database in that case use the solution suggested by Timo.
    Thanks
    --NavinK                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Is it possible to have multiple users on a single ipad

    Is it possible to have multiple users on a single ipad

    Once a device or computer is associated with your Apple ID, you cannot associate that device or computer with another Apple ID for 90 days.
    http://support.apple.com/kb/ht4627

  • IS IT POSSIBLE TO ADD MULTIPLE ATTACHEMENTS?

    WHEN EMAILING ON IPAD, IS IT POSSIBLE TO ADD MORE THAN ONE ATTACHMENT? TWO OR MORE DOCUMENTS ON ONE EMAIL?

    The iPad requires you first to define the object you want to email and then open a send-mail page. Thus, natively you can only send one attachment. I looked at the app store and Mail2List allow sending up to six photos at once. AceMail allows sending multiple audio files and photos. I could not find anything to send more than one document.
    Also, please do not use all caps.

  • Is it possible to add multiple contacts to Safari autocomplete for iPads used by more than one person regularly?

    If there are multiple regular users who both want to take advantage of the Safari autocomplete function for forms can you add multiple people in Settings?

    No, that's not possible.

  • Possible to add multiple 'Collections' to a container

    Hello,
    In DB XML, is a 'Container' equivalent to an xquery 'Collection' ? All of the examples that I see, refer to the container when specifying the collection.
    Basically, I would like to create one Container - call in container1.dbxml Within container1, I would like to have multiple collections, collection1, collection2.
    I would then like to be able to run xqueries such as:
    count(/*) - and get a count of all the docs in both collection1 and collection2 or
    collection("collection1")/* - and get all the nodes in collection1 only
    So, bottom line question - can I add multiple collections to a container, or is a container and collection equivalent in DB XML?
    Thanks for your responses.

    IBB
    What you want to do is create a class that extends the Java XmlResolver class, and register that class with the XmlManager. In your extended class you would want to implement the following function:
    public boolean resolveCollection(XmlTransaction txn, XmlManager mgr, String uri, XmlResults result)
    So that the result argument contains all the documents in the collection specified by the uri. You will likely want to do this by querying the container for the documents for the given collection and copying the results returned by the query to the argument.
    Below is an example of an implementation of the function that resolves the collection to a single document.
    public boolean resolveCollection(XmlTransaction txn, XmlManager mgr, String uri, XmlResults result) throws XmlException {
         XmlDocument doc = mgr.createDocument();
         doc.setName(name);
         doc.setContent(content);
         XmlValue val = new XmlValue(doc);
         result.add(val);
         return true;
    Lauren Foutz

  • Possible to add Multiple Destinations on WORLD MAP?

    Can I add multiple destinations in 1 world map in imovie? Or only the Start and End location? Thanks

    You cannot have multiple destinations in a single map, but you can go from point A to point B to point C to point D, etc. You do this by putting several maps adjacent to each other. So the first map is A to B. The second is B to C. The third is C to D, etc.

  • Is it possible to add multiple files to a collection at once?

    Hello,
    I have a lot of big zip files and I want to add them all to a single collection. It would take ages to do it one-by-one. Is it possible to do them all at once? How can I do that?
    Many thanks.

    Hi there,
    Thanks for posting. Unfortunately, it's not possible to upload a zipped file to Acrobat.com; we support the filetypes listed on the following linked page:
    http://kb2.adobe.com/cps/524/cpsid_52456.html
    I'm very sorry to disappoint you! We are constantly trying to improve our service, and I'll be sure to put in a good word for supporting .zip uploads. In the meantime, you could always suggest it yourself at our Ideas site, where people post, view, and vote on suggestions for additions to the service at Acrobat.com:
    http://ideas.acrobat.com
    Thanks, and take care,
    Rebecca

  • Is it possible to add multiple  songs to a slide show?

    Hi there.
    A slide show can be quite long as you all know and the same music continusly repeated can become boring.
    Is it possible to add several songs to the slide show to overcome this problem?
    Regards.

    One thing you can do to make it all turn out even--think about how long each slide is going to display, say you want about 3 seconds per slide, multiply by the number of slides, say you have 100 slides (I picked those numbers so the arithmetic would be easy!). That's a total of 300 seconds. Divide by 60 seconds per minute to get the number of minutes, in this case that would be 5 minutes. Then when you make your playlist in iTunes find music that fits the mood of the show and that totals a little more than 5 minutes (and is NOT Protected, as Terence mentioned). Back in iPhoto select your Playlist in the Music section and then check the box to have the slideshow fit the music, and iPhoto will adjust the display time so that everything runs the same length of time. Export to iDVD and burn your disk.
    Personally, I like to get a little fancier, so I export my slideshow without sound, then open the project in iMovie HD and make a layered soundtrack, where I arrange the music and sound effects, as in this one:
    http://homepage.mac.com/francines/.Movies/kenstr.html
    It has the music, plus a coffee gurgle, birds tweeting, page flips and a lion roar at the end. Once it's built you can send it to iDVD at full size and/or, as I did here, make a small streaming web version to share over the Internet. I wrote up a VERY short tutorial on this (notes from a workshop I ran) and put it up here:
    http://pinkmutant.com/smug/psws06/bling.html
    Afraid I haven't worked that much with iMovie 08, but I believe you can do something along the same lines.
    Francine
    Francine
    Schwieder

Maybe you are looking for