Creating a Universe on Bex Query --- Information Design Tool 4.0

Hi,
I am creating a Universe on a BeX Query, based on my understanding from the documentation i dont have to create a data foundation layer and i can directly call the connection in the Business Layer.
when I create a business layer and select OLAP connection (BICS connection), I get an error "this connection is not supported".
I was trying to look for a solution but i haven't found anything yet. Did anyone else encounter this issue. Please Share.
Regards,
Sheikh Hassan Ayub

HI there,
I read somewhere that the support for BEx Queries are done via Relational Connection.  However, the BICS connection is only available via OLAP connection.
I was able to successfully create an OLAP Connection with BEx Queries.  However when I do a Business Layer with this OLAP connection it says ERROR, not supported.
I havent tested creating a relational and thus having a Data Foundation yet as I am still have issues with my installation with ports.
Anyway, let me know if you are able to create a relational connection.
I'd be interested to hear your experience.
Regards,
Iris
P.S. the connection needs to be published.
Edited by: Iris Co on Nov 2, 2011 6:18 PM

Similar Messages

  • BO Universe on BeX Query in Lumira

    Hi All,
    I have a requirement of accessing a BeX query in Lumira and do visualizations on it. As Lumira is not capable of accessing BeX query directly, I think, I would need to create a universe on InfoCube, for that BeX query, and then consume that universe in Lumira. Thereafter, I would need to create different datasets for different queries.
    Now, I have two questions:
    1. Is this approach correct? Is there any other more efficient methos than this?
    2. Can I create a universe on BeX query directly? Is it possible?
    When I'm following first approach (universe on InfoCube using IDT) and trying to consume that universe in Lumira, I am getting below error:
    And when I'm following 2nd approach (universe on BeX query using UDT), I am not able to view that .unv in List of Available universes in Lumira.
    Please help.
    Thanks Much,
    Purnima

    Explanation on the error you faced:
    The data acquisition of medium-large, large, and very large datasets from UNV or UNX universes is not supported on default installations of both SAP BusinessObjects Business Intelligence platforms 4.0 and 4.1.
    It is recommended for customers that want to acquire such datasets to install a SAP BusinessObjects Business Intelligence platform (SAP BIP) server dedicated to SAP Lumira and significantly increase the value of the Maximum Character Stream Size of the Web Intelligence Processing Server on that particular server. Note that increasing this value on a running SAP BIP server can impact the memory consumption and performance of any BI clients tool running on that installation, particularly Web Intelligence. While this practice is not formally discouraged, we advise customers implementing this solution that they might face memory consumption increases and longer document data refreshes so they will need to monitor the SAP BIP server's behavior adequately to control the impacts.
    Can you try to place some filters to limit the data volume retrieved?
    Best regards
    Antoine

  • Cnnection error while creating universe on Bex Query in BW

    Hi
    I am getting connection error while connecting to BW Bex query.
    The error i am getting while creating universe is  A runtime exception has occured Error getting levels for hierarchy  dimension .....:Unknown error.
    After this
    Also while creating universe no key figures/measures are getting generated from Bex query to designer.
    Also in Bex query which are created as mandatory variables comes as  Prompts in webi.
    But when I try to parse in Condition filter it is throwing error.
    Currently that mandatory variable is From Date and To Date
    Is we require to change the prompt syntax in Condition filter.
    Also kindly suggest solution for Connection error as impemtation is getting affected.
    Regards
    Gaurav Mang

    Hi
    R u saying allow external acces in BEX query.This option in Bex Query designer.
    Or In whether while creating universes under properties tab there is use of OLAP universes option has to be made to Yes.
    This both things we have tried
    Let me know any other option to be tried.
    Regards
    gaurav mang

  • Universe on BEX query - Measures Question !!

    Hello All,
    I am building a Universe on BEx Query.
    We have the following environment:
    SAP BOE XI 3.1 SP2 FIX Pack 2.5
    Integration KIT SP2 FIX PACK 2.5
    SAP BW 701 Level 6
    I see that in the BEX query the KF have technical names as "ZZRKF_Amount".
    But, when this query is brought into Universe, I see the tech names as
    [[4J922TWKO24NHTROOEY3WXK72]].[[4J922URARWJHKBXHBR7H15F26]]
    I would like to see this as [[MEASURE]].[[ZZRKF_Amount]].
    Does anyone know how to do it?
    Your help & time is appreciated.
    Thanks

    Hi,
    In the Universe Designer, select Tools ->options. In the OLAP tab, there is option to select as generate technical names as details.
    I guess this may help you.
    If still facing the same issue, then follow the user guide from the below link:
    http://help.sap.com/
    -Noor.

  • Created Webi report using BEx Query.

    Hi All,
    I am going to upgrade in BW and using BEx  & Webi Report. I have created webi report using BEx query. Now I need to test data in webi report.
    Can anyone tell me how to test data?
    Regards,

    Hi,
    compare the webi report data with Bex report. more you can compare webi report with SAP R3 system for random records.
    Thanks,
    Amit

  • How to use recursive in Information Design Tools?

    Hi all,
    I want to use recursive for count number of employee in each organization. I write code something like this.
    with EmpCTE as
          select RootID = D.ORG_CD , D. ORG_CD, D .ParentOID
          from  (SELECT     CURRENT_LEAF as ORG_CD ,
                   D .DATE_KEY AS DateKey,
                        CASE WHEN LEAF_LEVEL = 1 THEN LEVEL0
                                   WHEN LEAF_LEVEL = 2 THEN LEVEL1
                                   WHEN LEAF_LEVEL = 3 THEN LEVEL2
                                   WHEN LEAF_LEVEL = 4 THEN LEVEL3
                                   WHEN LEAF_LEVEL = 5 THEN LEVEL4
                                   WHEN LEAF_LEVEL = 6 THEN LEVEL5
                        END AS ParentOID
           FROM [BISIPH_HR]. [dbo].[ORG_HIER_STD] H , MST_DATE_DIM D
           where 1= 1
           and D. DATE_KEY between BEGDA and ENDDA
           and D. DATE_KEY between C_L1_BEGDA_KEY and C_L1_ENDDA_KEY
           and D. DATE_KEY between C_L2_BEGDA_KEY and C_L2_ENDDA_KEY
           and D. DATE_KEY between C_L3_BEGDA_KEY and C_L3_ENDDA_KEY
           and D. DATE_KEY between C_L4_BEGDA_KEY and C_L4_ENDDA_KEY
           and D. DATE_KEY between C_L5_BEGDA_KEY and C_L5_ENDDA_KEY
           and D. DATE_KEY between C_L6_BEGDA_KEY and C_L6_ENDDA_KEY
           and D. DATE_KEY between C_L7_BEGDA_KEY and C_L7_ENDDA_KEY
           )   D
          where 1= 1
          AND DateKey = 20140101
          union all
          select EmpCTE. RootID, D .ORG_CD, D.ParentOID
          from (
            SELECT   CURRENT_LEAF as ORG_CD,
                   D .DATE_KEY AS DateKey,
                        CASE WHEN LEAF_LEVEL = 1 THEN LEVEL0
                                   WHEN LEAF_LEVEL = 2 THEN LEVEL1
                                   WHEN LEAF_LEVEL = 3 THEN LEVEL2
                                   WHEN LEAF_LEVEL = 4 THEN LEVEL3
                                   WHEN LEAF_LEVEL = 5 THEN LEVEL4
                                   WHEN LEAF_LEVEL = 6 THEN LEVEL5
                        END AS ParentOID
           FROM [BISIPH_HR]. [dbo].[ORG_HIER_STD] H , MST_DATE_DIM D
           where 1= 1
           and D. DATE_KEY between BEGDA and ENDDA
           and D. DATE_KEY between C_L1_BEGDA_KEY and C_L1_ENDDA_KEY
           and D. DATE_KEY between C_L2_BEGDA_KEY and C_L2_ENDDA_KEY
           and D. DATE_KEY between C_L3_BEGDA_KEY and C_L3_ENDDA_KEY
           and D. DATE_KEY between C_L4_BEGDA_KEY and C_L4_ENDDA_KEY
           and D. DATE_KEY between C_L5_BEGDA_KEY and C_L5_ENDDA_KEY
           and D. DATE_KEY between C_L6_BEGDA_KEY and C_L6_ENDDA_KEY
           and D. DATE_KEY between C_L7_BEGDA_KEY and C_L7_ENDDA_KEY
           ) D
          inner join EmpCTE on D .ParentOID = EmpCTE.ORG_CD
          AND D. DateKey = 20140101
    select distinct
    ORG_DIM.ORG_CD
    , ORG_DIM. ORG_DESC_T
    , EmpCTE. ParentOID
    --, EMP_DIM.EMP_CODE
    , cnt. Child
    , cntemp. ChildEmp
    from MST_EMP_DIM EMP_DIM
    INNER JOIN TXT_EMP_ORG_FACT EMP_ORG_FACT ON EMP_ORG_FACT .EMP_KEY = EMP_DIM.EMP_KEY
    INNER JOIN MST_ORG_DIM ORG_DIM ON ORG_DIM .ORG_CD = EMP_ORG_FACT.ORG_CD
    INNER JOIN EmpCTE ON EmpCTE .ORG_CD = ORG_DIM.ORG_CD
    INNER JOIN TXT_EMPLOYMENT_FACT EMPLOYMENT_FACT ON EMPLOYMENT_FACT.EMP_CODE_KEY = EMP_ORG_FACT.EMP_CODE_KEY
    INNER JOIN (
           SELECT ORG_CD = RootID, Child = COUNT (*)
           FROM EmpCTE
           GROUP BY RootID
    ) cnt ON cnt.ORG_CD = EMP_ORG_FACT. ORG_CD ------------------ ¹Ñº¨Ó¹Ç¹ ORG ·ÕèÍÂÙèãµé ORG »Ñ¨¨ØºÑ¹
    INNER JOIN (
           SELECT ORG_CD = RootID, ChildEmp = Count (*)
           FROM EmpCTE
           INNER JOIN TXT_EMP_ORG_FACT EMP_ORG_FACT ON EmpCTE .ORG_CD = EMP_ORG_FACT.ORG_CD
           INNER JOIN MST_EMP_DIM EMP_DIM ON EMP_ORG_FACT .EMP_KEY = EMP_DIM.EMP_KEY
           INNER JOIN TXT_EMPLOYMENT_FACT EMPLOYMENT_FACT ON EMPLOYMENT_FACT.EMP_CODE_KEY = EMP_ORG_FACT.EMP_CODE_KEY
           WHERE 1= 1
           AND 20140228 BETWEEN EMP_ORG_FACT.ORG_ASSIGN_START_DT_KEY AND ORG_ASSIGN_END_DT_KEY
           AND 20140228 BETWEEN EMP_DIM.EMP_START_DATE_KEY AND EMP_DIM.EMP_END_DATE_KEY
           AND 20140228 BETWEEN EMPLOYMENT_FACT.START_DATE_KEY AND EMPLOYMENT_FACT.END_DATE_KEY
           AND EMP_ORG_FACT. EMP_ASSIGN_PAYROLL_AREA_CD IN ('Z1', 'Z2')
           AND EMPLOYMENT_FACT. EMPLOYMENT_STATUS_KEY = 3
           GROUP BY RootID
    ) cntemp ON cntemp.ORG_CD = EMP_ORG_FACT. ORG_CD
    WHERE 1= 1
    AND 20140228 BETWEEN EMP_ORG_FACT.ORG_ASSIGN_START_DT_KEY AND ORG_ASSIGN_END_DT_KEY
    AND 20140228 BETWEEN EMP_DIM.EMP_START_DATE_KEY AND EMP_DIM.EMP_END_DATE_KEY
    AND 20140228 BETWEEN EMPLOYMENT_FACT.START_DATE_KEY AND EMPLOYMENT_FACT.END_DATE_KEY
    AND EMP_ORG_FACT. EMP_ASSIGN_PAYROLL_AREA_CD IN ('Z1', 'Z2')
    AND EMPLOYMENT_FACT. EMPLOYMENT_STATUS_KEY = 3
    ORDER BY EmpCTE.ParentOID
    and result
    I want to create ChildEmp object for display in web-i report. How can i use recursive in Information Design Tools? or Do you have other solution for this?
    Thank you for your advise.
    Notto Zung

    Hi,
    NoDim is a function of the Bex query formula ,  so you can't delegate that to the cube.
    What object is, and what are you trying to do.   For example,  Sales, and trying to leave out Currency attribute.
    You can do an awdful of customizing  in a Business Layer or Data Foundation,  that is where your solution where probably come from.
    Regards,
    H

  • WEBI error with multi-line descriptions for a Business Layer in information Design Tool

    help from Anyone on my problem described below would be greatly appreciated! 
    I'm working with Information design tool and am building a Business layer on top of my universe to prevent a clash of context in my query.
    I want a description on my business layer that explains the need for two business layers in this universe.
    The problem is entering data into the description of a business view
    I need to be able to put in line breaks or the user can't even read the description of the business view.
    If anyone could help I'll be very grateful.
    However this is how it looks in WEBI when I start to create reports. (the original snapshot is two monitors wide by the way)
    the text entered into the field is as exactly as follows:
    I have Descriptions that Explain the Business Layer so they need to be typed out with paragraphs and word wrap.
    Like this. Notice the line break?
    Oh wait What happened? let me try another line break.
    Did that work? ...
    No maybe <\br>
    or \n
    or \n\r ?
    or char(13)char(10)
    or 0x0a
    or 0x0D
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi convallis arcu quis libero sagittis, vel pulvinar velit pretium. Praesent vehicula luctus justo in laoreet. Aenean blandit eros eget nisi aliquet, et placerat elit convallis. Nam non adipiscing velit. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vestibulum a porttitor quam. Suspendisse vulputate eros nunc, ut vestibulum nunc feugiat eget. Phasellus interdum quam vitae quam posuere mattis quis ac elit. Curabitur fringilla justo vel elit lacinia, ac sollicitudin velit sodales. Nunc eget nulla id augue suscipit molestie ut nec nulla. In libero neque, commodo sit amet eros a, viverra aliquam nulla. Sed blandit magna eu orci pellentesque dictum.
    Vivamus urna est, tincidunt sit amet nisi vitae, placerat sodales dui. Donec a sapien tincidunt, auctor mi ut, ullamcorper sem. Sed viverra lobortis nisl at tincidunt. Integer at odio mollis, scelerisque leo vel, fermentum felis. Morbi ultrices magna neque, vel adipiscing urna dictum sit amet. Nullam quam felis, imperdiet quis nunc ut, pretium feugiat tellus. Etiam id auctor augue. Proin id feugiat ligula. Vestibulum congue ligula quis dui porta vehicula. Morbi at sem velit. Morbi vehicula dui nibh.
    Quisque eu imperdiet odio, quis scelerisque lacus. Aenean tortor odio, sagittis in urna id, porttitor convallis neque. Suspendisse eget suscipit nibh. Nullam tincidunt ornare eleifend. Phasellus laoreet molestie luctus. Nulla sit amet semper arcu, quis iaculis velit. Mauris a molestie magna. Ut id eros in diam viverra suscipit. Sed gravida elit vel est imperdiet interdum. Maecenas tempus dolor lectus, id aliquet ligula scelerisque vitae. Praesent pulvinar, velit id fringilla porttitor, massa neque aliquam sem, in tincidunt erat tortor et arcu. Nullam hendrerit condimentum faucibus. Fusce arcu odio, lacinia vel malesuada eget, malesuada eget felis. Praesent venenatis vestibulum ante ut pharetra.

    Bump.
    I still need a Solution to this problem.

  • Data Federator and Information Design tool

    Hi,
    First, Can Data Federator be a single data source for Information Design Tool?
    Second, from performance point of view, using Information Design tool to build multi-sources Universe or building Universe on Data Federator, which way is better?
    Thanks

    Hi,
    let me explain :
    in BI 4.0, the Data Federator Query Server engine is now part of the server-side Adaptive Processing Server .
    You only invoke this architecture when you select "Multi Source Enabled" -  any other entry point is NOT using the Data Federation Service.
    So - if you select SingleSource -  that's not using DF.
    However, it is entirely possible to select "Multi Source Enabled" then only use 1 connection in the MSU !!
    Having said the above,  Your second question doesn't make sense.
    Unless you mean, using the Data Federator middleware driver in BI 4.0 IDT, to connect to an XI 3.1 Data Federator Query Server?   (i.e. consuming the 'old source' in the new enviornment)   
    This backwards compatibility was delivered to facilitate transition of DF customers, especially since there is no standalone DF product in BI 4.0 (yet)
    I trust this is of use to you.
    Regards,
    H

  • Add Ranking in the Information Design Tool

    Regarding: Information Design Tool Version: 14.0.6.v20130408-1036  
    Question 
    Where do I find documentation about how to use the "Add Ranking" functionality that appears as an icon in the Information Design Tool / Query Panel / Query Filter pane?  

    Hi,
    See attached doc for to understand the Add Ranking functionality and it is in the Webi Query panel.
    Ranking data in web intelligence report.
    Amit

  • Where can I find the 'club' database sample used in the 'Information Design Tool' tutorials?

    Hi experts!
    I have been studying the tutorials for the Information Design Tool (http://scn.sap.com/docs/DOC-8461) and in some of them they use a database called 'club'. For what I see, this is an Access 2007 database and has some tables called City, Region, Customer, etc. I have been searching it across the web and have not found it.
    Hope somebody knows where I can find this sample.
    Thanks in advance!

    Hi Julio,
    You should be able find it in following locations
    If you are on 64 Bit OS
    C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\Samples\webi
    If you are on 32 Bit OS
    C:\Program Files\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\Samples\webi
    Kuldeep

  • Does Information Designer Tools's aggregate awareness function support OLAP

    Hi...
    Does Information Designer Tools's aggregate awareness function support OLAP ??
    Thanks

    To see which ODBC function DG4ODBC is looking for and unixODBC isn't supporting it would be best to get an ODBC trace file. But as your unixODBC driver (unixODBC-2.2.11-10.el5) is outdated and these old drivers had a lot of issues when being used on 64bit operating systems (for example wrong sizeofint etc). So best would be to update the unixODBC Driver manager to release 2.3.x. More details can be found on the web site: www.unicodbc.org
    - Klaus

  • How to create Text Variables in BEx Query Designer

    How  can i create Text Variables in Bex Q.D.
    I am able to create characteristic variables
    but i can't find option to create text variables.
    What's the requirement to create Text variables in Bex Q.D.
    When i try to create Text variable for 0calDay.. the variable type is characteristic by Default and disabled.
    How can i create text variables related to 0CalDay with which i need to work in Customer Exit.

    Hi,
    You have to create characteristic variable processing by Customer Exit by considering 0CalDay as a Reference Characteristic
    After creation of the above variable, you restrict your KF with the above created variable.
    Now you can create a Text variable for the description of your KF. This way it works...........
    Regards,
    Suman

  • How to remove Decimals in Quantity Objects in SAP BO Explorer View created on top SAP Bex Query?

    Hi,
    I created SAP BO Explorer report on top of SAP BEx Query.
    In SAP BEx Query, Decimals were hided but when i created OLAP Universe on top that SAP BEx Query and Created Index on top of Information Space in SAP BO Explorer and then created Exploration Views. But i'm getting Decimals in my Exploration Views where as SAP BEx Query in RSRT, no decimals were appearing.
    Can anyone suggest me how to remove decimals in SAP BO Exploration Views.

    Hi Ramana,
    I am not use how you connect to SAP BEx query (Via universe or BWA or HANA)
    What I could say is BWA and HANA, you cannot adjust this
    For universe, you could try in universe layer, there is note about this
    For BWA and HANA, this function might be enhanced but you 'd better raise OSS to SAP to check with them
    Best regards
    Alex yang

  • Unable to create an universe on a query based on a real time cube

    Hello,
    I'm trying to create a universe on a BEx query. This query is based on a multiprovider which consists of one standard cube and one real time cube. I'm unable to see this query in the designer. I do see an empty folder with the name of the multi provider.
    I can create an universe directly on this multiprovider.
    Are there any specific setting for real time cube or is it a compatibility issue? Can an universe be created on a real time cube?
    Regards,
    Sameer

    Hi Sameer,
    Let me know if this SAP note helps: 1291966 - "Output Cache Directory" & "Enable Real Time Cache" options in Central Management Console

  • I need to know the user who has created/modified a SAP Bex Query and WAD

    Hi!
    I need to know the user who has created and modified a SAP Bex Query and SAP  Web Application Designer. Does it possible to know this information by a table or view?
    Best Regards
    Ramon Sanchez

    Hi,
    In BEx query, when you click "Queries" to open the query, the list of queries are displayed. Highlight the query, click on the "Properties On/Off' icon(right most on the top), you would see all the details.
    In WAD, before opening the template, click on "Properties On/Off'" icon to see the details.

Maybe you are looking for

  • Your computer restarted because of a problem

    Hi there, my 15 inch mid 2010 macbook pro has a nasty habit of restarting at random times (typing a word document or playing a game) and starts with the dreaded "your computer restarted because of a problem". I can't really make sense of the error re

  • [Urgent] How to Print Main Window Twice ??

    Hi Everyone, I am making a Prenum Check which has 1 Main Win 00 : Invoiced Item Lines for the Check Payment 2 Check Window: A Check to be printed 3 Main Win 01 : Copy of Main Win 00 The Main Window has Line Items of the Payment Invoices for Vendor, w

  • What to do when the Macbook is hot that you cannot work with it?

    My four years old Mac book from the beginning was getting hot while in use. I decided that was due to the period of time it was switch on. However, I do not keep it on for more than four hours and I do also keep it still @ home, other than move it al

  • Oracle 10g + Bouncy Castle JCE provider

    Hi all, I'm trying to deploy Bouncy Castle JCE provider into Oracle environment. I've tried several choices but no one works. My environment: - Oracle 10.2.0.1.0 with Java version 1.4.2_08 - Java app deployed into Oracle uses $ORACLE_HOME/javavm as $

  • Cradle sync between BB Desktop Software and Zimbra

    Hi, I am a new Black Berry user. Only received my phone yesterday. I searched the forum for a solution on how to sync my BB 9800 with BB Desktop Software (version 6.0.0.246) and Zimbra (My company's choice not mine) desktop client (Version B10580). T