Multiple query support for BICS

Hi,
Here are few queries:
1 - Does new BICS connection support multiple BW queries for a dashboard? Any limitations with BICS?
2 - How does Xcelsius handle huge data coming from BW in queries?
3 - is EHP4 on ERP side a mandatory thing for upgrade to SAP NW BW Ehp1?
appreciate answers.

Hi Ingo,
Thanks a lot for the clear answer.
Well a couple of more questions are still unanswered:
1 - "Is EHP4 a mandate for having Ehp1 on SAP NW BW? If we just install Ehp1 on BW side without upgrading the ERP, will there be any issues? We want the EHP1 only for leveraging the BW-BO integration features and are not looking at any additional functionality from the source system. However we would like to know if upgrading BW with EHP1 WITHOUT upgrading the current ECC to EHP4 has any adverse effect (known-documented) on the current BI/ECC systems?
2 - Do we have Universes supporting multiple queries in coming releases? If yes then from which release onwards?
Due to these a major decision is sitting on fence and we are not able to make any headway.
Need a clear answer for this as well.

Similar Messages

  • Multiple language support for E71

    Is it possible to have English, Simplified Chinese and Hebrew on the same E71?

    i downloaded the program but cannot install as it says certifcate error
    i have installed simialr program for nokia 9300i which iw as using before
    now with the world shrinking and memory capacities increasing all the time and people like me who travel so often nokia and ther manufatcurers should provide multi langauge support
    please help us to install the support as it is really tough to travel if you cannnot read local language message showing address and other informaiton
    Moderator's note:
    The above link to a non-English content website and unnecessary information removed.
    Message Edited by gcpropulser on 05-Nov-2008 12:22 PM

  • Query support for approval templates

    hi
    i want set approval on the base of query so i write query as follow 
    SELECT T0.[CardName], T0.[CreditLine] FROM OCRD T0  INNER JOIN OCRG T1 ON T0.GroupCode = T1.GroupCode INNER JOIN OINV T2 ON T0.CardCode = T2.CardCode
    WHERE T1.[GroupName] ='INSTATION' AND
    T0.[CreditLine] >= 0 AND
    T0.[CreditLine] <=50000
    GROUP BY T0.[CardName],T0.[CreditLine]
    but on this condition approval is not set so if i write query wrong then pls send updated quer
    regards,
    sandip

    Hi
    There are plenty of threads how to write user defined query for  writing approval query .
    You have to use something like this ;
    Select Distinct true ...
    Here is what I found for you
    Re: HELP TO WRITE A QUERY
    Please search forum first
    Thank you
    Bishal
    Edited by: BIshal Adhikari on Dec 11, 2008 9:59 AM

  • Multiple IdP support for HCP Portal

    Hi all,
    I'm having lots of fun developing on the HCP and really love it!
    Now I need to integrate multiple IdPs for the same account.
    I know this can be specified using the url structure:
    https://<app name>.hana.ondemand.com/index.jsp?saml2idp=<idp name>
    I also plan to use the HCP Portal, so my question would be:
    Can I use the url parameter above (saml2idp) also for HCP Portal?
    Thanks, regards
    Vincenzo

    Hi Vincenzo,
    Thanks for your kind words about HCP!
    I'll move this thread to the dedicated SAP HANA Cloud Portal space where you should have better chances of getting it answered.
    Cheers,
    --Vlado

  • Multiple Mac support for rendering

    I heard that i can set up Final Cut X so that i can use multiple platforms for rendering or exporting, but i can't seem to find out how to do this.  Can someone point me to where i can find out info on doing this.
    Thanks
    john

    Here's a pretty good place to start.
    Good luck.
    Russ

  • Is it too much to ask MS for a simple ad-hoc query tool for end users?

    Hello
    This is a general MS BI topic and not specific to Power Query, but I couldn't find a more suitable general forum for it.
    This posting is the result of the frustration I have with MS BI stack, whereby a simple ad-hoc drag and drop query tool to get the data in a table format (preferably from a relational
    data source) is missing, something that other big vendors have, such as SAP Business Objects Universe and the associated tools. The deprecated SSRS Report model and SMDL was the closest MS ever got to this functionality (although that had some limitations
    too), which unfortunately is dead now in favour of all sort of "Power" tools that basically can’t deliver the same functionality.
    The requirement is pretty simple: provide users with a tool that they can drag and drop fields from different entities in a data model without having to worry about entity relationships and
    apply necessary filters and get the data out in Excel or CSV, no fancy (or even simple) aggregation or formatting is required, and users should only see the rows they are authorized to see, i.e. row level security (RLS) of data.
    Let’s see what we have at our disposal from MS BI:
    From the modeling perspective, we have relational models in the database that support RLS with views, but obviously cannot maintain PK-FK relationships in the database model between views. Other
    models are .Net Entity Data model Framework model exposed as OData, and SSAS tabular, SSAS PowerPivot, SSAS multidimensional, which you can find a good comparison of their features here:
    http://www.sqlchick.com/entries/2012/3/4/decisions-powerpivot-ssas-tabular -or-ssas-multidimensional-m.html
    From the tools perspective we have:
    Power Query on top of a relational database (SQL Server): Can connect to relational databases easily, generated queries are optimal, detects relationships with entities, but only when entities
    are tables and have PK-FK relationships enforced in the database. So can’t detect relationships with views and hence can’t enforce RLS, so this is not an option unless users keep joining entities, which is not a desirable option either.
    Power Query on top of an OData: Works well except that queries generated for multiple entity expansion are terrible (look here for more details:
    http://social.technet.microsoft.com/Forums/en-US/7a8b8e52-d3a9-42af-bc52-9d5459c00529/odata-multilevel-expand-query-issue?forum=powerquery). In addition all filtering and projections are done at client side, so even if you want 1 row out of 1 million, all
    rows are brought over to Excel before filtered. Overall this results in unacceptable performance even for small sized data.
    Power Query on top of a tabular model: Doesn’t support that type of data source yet (http://social.technet.microsoft.com/Forums/en-US/ebcccb5e-7058-4046-917d-3d7fcf60cbdc/tabular-model-as-data-source-for-power-query?forum=powerquery).
    Even if it did, tabular models don’t support Many-to-Many relationships out of the box and not sure if there are plans to support tabular models in Direct Query mode in Power Query to take care of RLS.
    Excel on top of tabular models or multidimensional models: The tabular model should not be in Direct Query mode and you only get to use PivotTable to query the model. PivotTables are not famous
    for generating optimal MDX queries, so performance is not going to be acceptable if you are dealing with large dimensions, especially large junk and degenerate dimensions. You can use drilltrough to get details of a measure, but you have to specify the columns
    for a drilltrough action upfront, no flexibility for users to select what they want to see.
    PowerPivot on top of relational databases: The query designer cannot detect relationships between views, so users have to perform manual joins, not an option.
    PowerPivot on top of a multidimensional or tabular model: The query designer doesn’t generate optimal MDX queries by drag and drop. Especially there doesn’t seem to be a way to add related
    attributes of a dimension attribute to the query without cross joins which results in poor performance on large dimensions. Other issues found here
    http://sqlblog.com/blogs/marco_russo/archive/2010/08/24/using-ssas-2005-2008-as-powerpivot-data-source-query-designer.aspx. In addition the result set has ugly column names and issues with data types, such as interpreting numeric data types as Text, and
    there’s no straight forward way of getting the data from PowerPivot directly to Excel. The user either has to do a copy/paste (which doesn’t work on large datasets) or create a pivot table, bring the measure, and drillthrough the measure to get the details
    in table format.
    PowerPivot with OData: Treats every entity as a separate table to import, not suitable for our use case.
    Report Builder and SSRS on top of relational, multidimensional or tabular model: Given the query designer is the same as PowerPivot, it has similar issues. In addition, there are 4 more steps
    from designing a query to generating an Excel or CSV output, not an option.
    PowerView: Works against tabular and multidimensional models, but there’s no way of exporting data to Excel sheet. Besides the add-in is not available for Excel 2010.
    Good old MS-Access: Link to tables and views through ODBC, create relationships between entities and give each user a copy of that Access database to create their queries, and deal with the
    nightmares of updates to the model and distribution of new models to the users! Did I mention Access as an option?
    So there you go, 10 options, none of which can deal with a seemingly simple use case sufficiently. At the moment, the best among them appears to be option 6 against a heavily optimized OLAP
    cube, and perhaps #3 when/if Power Query support for tabular models in direct query mode arrives. Perhaps I am missing something very obvious, and would like someone to enlighten me here.
    Thanks
    MR

    Hi, as far as I can infer, that term means it's not loading any resources until needed, opposite of this...
    -bind_at_load
                     Sets a bit in the mach header of the resulting binary which tells dyld to bind all symbols                when the binary is loaded, rather than lazily.
    https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/ man1/ld.1.html
    Load resources lazily.
    You should never load a resource file until it is actually needed. Prefetching resource files may seem like a way to save time, but this practice actually slows down your app right away. In addition, if you end up not using the resource, loading it wastes memory for no good purpose.
    http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneos programmingguide/PerformanceTuning/PerformanceTuning.html
    And, higher OS versionsare even worse with Bonjour/mDNSResponder, but might see this...
    http://support.apple.com/kb/ht3789

  • NB520 - Multiple monitor support

    Do NB520 have multiple monitor support built in, if not, how can I have multiple monitor support for my NB520? I need for using a Pewerpoint 2007 (to display presenter view differs from audience view).
    Many thanks for an answer in advance.

    Hi smit_Aood,
    The NB520 supports one external monitor and you can use internal + external monitor at the same time (two monitors are supported). Furthermore you can choose if you want to extend the desktop on second monitor or clone it.
    Using FN+F5 key combination you can switch between different modes.
    Last but not least you can also use a Beamer or TV as second monitor. A certain computer monitor is not required. ;)

  • What Multiple GPU Support??

    I just purchased a very pricey Mac Pro for my company, with the intention of utilizing it's dual GPUs & processing power for fast turnaround times on video projects. Turning on GPU acceleration in Premiere, however, essentially renders this machine useless. I can use Premiere (GPU acceleration on) with a single monitor, but as soon as I hook up a 2nd, I have no playback anywhere. No video signal from the program feed or the preview window. My question is, why has Adobe not provided multiple GPU support for a graphics card that currently ships in brand new Macs (ATI Radeon HD5770)? Side note, there are no driver updates for this GPU on the AMD website either. This is very frustrating and disappointing. Next logical question: How quickly will Adobe respond to this screw up?

    I think some things need to be clarified here...
    digitalkiln wrote:
    As far as waiting for a new Mac Pro you might not even get better performance than what would be possible on your current Mac Pro since the new one doesn't have NVIDIA cards and it hasn't been benchmarked.
    You're right that they don't have nVidia chips in them, but it's very likely they'll perform quite well when compared to yesterday's Mac Pro.  Specially since the rig has enough power available to drive two of them.  Also, read my previous post: the IVB Xeons are nothing to sneeze at.
    Personally, I prefer nVidia, and I also prefer not using Thunderbolt for storage.  So a new Mac Pro isn't for me.  But it may be others.
    Alternatively you can keep one 5770 in one slot, sell the other and pick up a used Quadro 4000 for another slot on ebay for $200-$300. 
    Please, whatever you do, DON'T follow that suggestion.  Q4Ks are turds, and hyper-expensive ones at that.  Talk about WAY old technology.
    Oh, and Jim: it's probably time to punt this to Hardware.

  • Multiple language support help

    I have a large application with more than several hundred sub VIs. Now, we want to modify it to provide multiple language support, for example, Chinese or French.  I have searched the forum and have some clue, but still cannot fit our needs.
    1. from NI site, one method is to export string and import string. But for several hundred sub VIs, do I need to to this several hundred times for each VI? since in our application, some strings are hardcoded.
    2. using excel sheet, everytime read excel file and modify the contorl properities. I am not sure how this works in details.
    Any advice or suggestion will be appreciated. Thanks.

    michenglaoxu,
    Please see the following post, as well as How Can I Use Chinese Characters in LabVIEW on Windows XP?, perhaps it can help also note the following excerpt from Localizing Your LabVIEW Application to Different Languages:
    "You do not need to have a specific language
    version of LabVIEW, such as French, German, or Japanese, to be able to
    enter display text in that language. LabVIEW supports single and double
    byte characters, but it does not support bidirectional scripts (such as
    Arabic or Hebrew).
    If you want to display text in multi-byte
    character sets (such as Japanese, Chinese, or Korean) in LabVIEW, you
    only need an operating system of the appropriate language or an
    MBCS-enabled operating system with an Input Method Editor (IME) for the
    corresponding language. Also, there are several commercially available
    language kits that you can add on to the operating system."
    Doug M
    Applications Engineer
    National Instruments
    For those unfamiliar with NBC's The Office, my icon is NOT a picture of me

  • Maintaining multiple query templates

    Hi,
    We created a generic query templates for SQL Query and this query template does not have any query specified inside the Query Template. The SQL query is assigned inside the xMII transaction. Instead of creating and maintaing multiple query templates for various SQL queries, we created this single query template and we use this query template by assigning the SQL query in xMII Transaction at runtime. Will there be any issues around this approach?
    Thanks,
    Sara

    This approach limits the reusability/maintainability of your queries.  If any query is to be used more than once (e.g. in a UI application or more than one BLS transaction), it makes sense to put it in its own query template.  Also, if you want to take advantage of xMII's caching infrastructure, you should also do this.
    There's also a small possibility in the future (I'm no longer with SAP, but just suggesting it is a possible outcome) that the SQL will not be dynamically assignable to avoid SQL code injection security issue(s).

  • Support for Multiple Hierarchies defined for the same GL Segment

    Hi,
    In our eBS setup, we have multiple hierarchies defined for a GL Segment.
    OOTB, BI Apps 7.9.6.3 provides support for 10 Segments, and it's corresponding Hierarchies (1 Hierarchy for each Segment).
    My question here is whether OOTB BI Apps 7.9.6.3 supports Multiple Hierarchies for the same Segment?+
    Thanks,
    Ab

    no it is not supported OOTB as of today
    you need to customize ETL mappings and OBIEE metadata to include hierarchy identifiers from the EBS segment definitions.
    Then you have to consider that filtering a hierarchy identifier becomes mandatory during query execution to avoid aggregation of duplicated values.

  • Feature request: Support for Multiple Libraries (like in iMovie)

    From the threads, I can tell this topic was raised by many for many years. I would like to propose support for multiple iPhoto libraries -- or more specifically, the ability to distribute media across different storage devices.
    There is a huge gap between my spacially limited MBP 250 GB SSD and my external 4 TB HDD. I am aware that I can juggle two separate libraries in iPhoto but it's just not practical and the moving of media between the libraries is not a simple drag and drop effort but involves exporting and importing with me having to clean up on one side or the other.
    iMovie has had support for several libraries for a long time presumably because the sheer size of media in the video realm gave the iMovie team little choice.
    I can't be the only one having this itch, right?

    Again, you need to clarify your terms
    Aperture can move master photos files around. With Aperture you can write additional metadata to the original file.
    You don't need multiple libraries to thematically arrange photos, though. A simple keywordign system will do that.
    So in Aperture I don't have to restart into different libraries?
    You can have all your photos in a sinble library with the master files stored off-disk easily. You can relocate them from disk to disk too. However, if you;re doing presentations that is probably not necessary if you generate good quality previews. I'd ask about these things on the Aperture forum for more.

  • [Non IE Regression] Support for full screen mode with multiple monitors

    This seems to be a regression with Flash Player v11.2.202.x (for all other browsers).
    With Internet Explorer it is still working.
    http://kb2.adobe.com/cps/890/cpsid_89050.html
    == Support for full screen mode with multiple monitors ==
    Full screen content will remain in full-screen on secondary monitors, allowing users to watch full-screen content while working on another display.
    Tested on Windows 7 x64 SP1 with:
    - Internet Explorer 9
    - Firefox Release, Beta, Aurora, Nightly
    - Opera 12 build 1116
    In bugbase.adobe.com I cannot choose v11.2.x

    Please vote for it If you have the same problem:
    https://bugbase.adobe.com/index.cfm?event=bug&id=3016912
    Thanks

  • Support for multiple libraries...?

    Hi, I have a question as how is the best way to manage y music libraries given my usage scenario.
    First let me set the context of what I have. I have over 35GB of ripped music, that resides in an external drive. Currently this music is available through my iTunes application, but it is NOT part of my lybrary (meaning I imported but did NOT copy it into the library). I do NOT want to have 35GB of music in my notebook's HD.
    My iTunes library is in my local HD (music folder). This is a small file that basically has the 'podcasts' and the 'artwork'.
    What do I want? I would love to keep all my music and videos on the external drive, and have my podcasts in my local HD. This way when I am on the road, I can update the podcasts, without having to carry with me all my music.
    This all works fine the way I have it now, except that every time I rip a new CD or buy music from the iTunes Store, they go to my local HD and not my external drive.
    Any ideas on how to work this out? I would love support for multiple libraries, but I don't thnks it's possible as far as I looked into it.
    Thanks SO much!

    This all works fine the way I have it now, except that every time I rip a new CD or buy music from the iTunes Store, they go to my local HD and not my external drive.
    Set the 'iTunes Music folder location' (Preferences>Advanced>General) to the music folder on your external.
    The next time you rip a CD or purchase music, it will be stored there.
    Note: the 'iTunes Music folder location' is not the folder where your music is, but the location where iTunes stores imported music (and added music when 'Copy files to.....' is checked)
    If you ran iTunes once with your external drive not attached/mounted, this location is reset to the internal drive.
    iTunes 7 has support for multiple libraries. Press and hold the Option-key on launching iTunes until a window pops up which asks you to choose a library or create a new one.
    Libra and iTunes Library Manager both work with iTunes 7 and older versions. They also save the preferences for every library you created.
    Hope this helps.
    M
    17' iMac 800 MHz, 768 MB RAM, 200 GB HD, DL burner   Mac OS X (10.4.8)   iTunes 7.0.1

  • [svn] 4875: Adding support for multiple @productversion tags

    Revision: 4875
    Author: [email protected]
    Date: 2009-02-06 08:31:48 -0800 (Fri, 06 Feb 2009)
    Log Message:
    Adding support for multiple @productversion tags
    QE Notes: None.
    Doc Notes: None
    Bugs: SDK-19104
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19104
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java

    Revision: 4875
    Author: [email protected]
    Date: 2009-02-06 08:31:48 -0800 (Fri, 06 Feb 2009)
    Log Message:
    Adding support for multiple @productversion tags
    QE Notes: None.
    Doc Notes: None
    Bugs: SDK-19104
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19104
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java

Maybe you are looking for

  • Null Pointer Exception Trying to Read File?

    I get a Null Pointer Exception when I try to perform the read hex2.txt, which i know exists and is in the same folder as this java file. Anyone see where my problem is? <code> import java.io.*; public class BytesToZeros           int count = 0;      

  • How to make Exit button for Out-of-browser application

    Greetings all, This sounds so simple, yet I can't find anything about it.  I want to make an Exit button in a Silverlight 4 Out-of-browser application.  When the user clicks the button, the application is to quit or close or exit.  (The same effect a

  • How can you move to a specific page in a large document

    Trying to move to specific page within a 90-page document on I-Pad, other than scrolling--Is there a way to "go to" page # whatever?

  • Inventory management configuration for Rollout project.

    Hi all, We have created new plant using Copy function (using reference Plant). Kindly let me know what are other configuration required for Inventory management in new plant? Please provide if any check list available for Roll-out project. Thanks SAP

  • Hour Long Shut off

    Hi guys, My Blackberry has been ruining my life recently in that it spontaneously shuts down, and takes nearly an hour to reboot. This means that I am left without my phone at what are often critical junctures of the day, and I am screwed. Essentiall