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

Similar Messages

  • 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

  • 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.

  • 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

  • OS users for Data Service and Information Platform Service

    Hello experts,
    We will install SAP Data Server 4.2 Support Package 2 which required Information Platform Service to be installed before.
    Can we use the same operating system user boadm for both software installation and maintenance.
    Thanks & Best Regards,
    Tong Ning

    Hello Dirk Venken,
    Thanks!
    What is the best practice about the uses required for Data Service and IPS? (in one user or two different user.)
    Regards,
    Tong Ning

  • Rule sharing between Data services and Information steward

    Hi, I would like to know if there is any way we can share/import Data services validation rules or functions into Information Steward. I know that we can import informaton steward rules/functions in Data services but not sure of vice versa.
    Thanks,

    Pandeyji,
    You can only import rules into Information Steward that were exported from another instance of Information Steward.  You cannot export a validation rule from Data Services to a zip format as is required by Information Steward.  The format that the rules are exported from Data Services are not compatible with import to Information Steward.
    Please refer to the Information Steward User's Guide in the section titled Importing and Exporting rules.  This states "You can also import rules which were exported from other instances of SAP BusinessObjects Information Steward."
    You can of course export rules from Information Steward directly to Data Services where they will be available for use in the Validation transform and in dataflows.
    Thanks,
    Denise

  • 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

  • Information design tool issues

    Hello All,
    I have several questions related to IDT...
    1. IDT is now showing business layer and data foundation layer in 2 different tabs.
    2. I am unable to view associated tables and values.
    3. how can i get the defalut view of my IDT universe where my business layer and data foundation layer are not in 2 different tabs...this way i cannot see associated tables and views.
    4. I am unable to drag and drop objects from my table in DFL to business layer...how do i resolve this
    Any help greatly appreciated.

    Hi Pali,
    DF and BL in IDT does open in different tabs when we try to retrieve a published unx from repository.
    I am unable to undesratnd your second point , it would be helpful if you attach some screenshots.
    In IDT there is option under Window--> Reset to DEfault Display , may be this would help you with the deafult view
    Thanks,
    Sneha

  • Relation between workflow tab in data manager and MS VISIO  tool

    hi
    any useful document on how to use visio tool in relation with workflows of data  manager
    regards
    sushma

    Hi,
    Refer following links:
    1.http://help.sap.com/saphelp_mdmgds55/helpdata/EN/43/8c8f594ddf22aee10000000a1553f6/frameset.htm
    2.https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/90990743-91c0-2a10-fd8f-fad371c7ee40
    3.https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9180cbaf-0801-0010-f882-f2af6dc975d0
    4.https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/60559952-ff62-2910-49a5-b4fb8e94f167
    Hope it will Help you,
    Rewards if Useful....
    Mandeep Saini

  • Help need on syntex of condition using Information Designer Tool 4.0

    I am new to BO.   Here is an illustration of the needs:
    1. I have a table mytab (col1, col2, col3). 
    2. add a custom dimension, called "mydim"
    3. click on SQL assistant to bring up SQL expression editor on "mydim".
    4.  Here what I need to do to define the outcome of mydim:
       *if value of col1 starts with 'A' then mydim=col1*
       *else if col2 starts with 'B' then  mydim = col2  and col1 concadnated else col3. .*
    I would appreciate help on the exact syntex to achive this.   Thx

    case when col1 like 'A%' then col1 when col2 like 'B%' then col1+col2 else col3 end
    try out this option if your database in sql server. If your backend database is oracle then use || instead of +symbol in the above syntax.
    one more this you need to consider is the priority of the conditions in the case statement. for example is there any possibility of getting rows with  col1 values starting with A and also col2 values starting with B , in that case which one u need to display

  • Data Federator 4.0

    Is there a product for Data Federator 4.0 or is it delivered as Information Design Tool in BI 4.0?  Is there an upgrade path for Data Federator 3.1?
    Thank you.

    You might have better luck asking this question in the (somewhat misnamed) [Data Integration and Data Quality Management|Data Services and Data Quality; forum:
    This forum is dedicated to topics related to SAP BusinessObjects Data Services (Data Integrator, Data Quality Management, Text Data Processing), SAP BusinessObjects Information Steward (Metadata Management, Data Insight), SAP BusinessObjects Rapid Marts and SAP BusinessObjects Data Federator.
    (emphasis added)
    Regards,
    Sean
    P.S. to moderators: can you create a sticky post to this effect?

  • URGENT: Connecting BPC 10.0 with BI4.0, with Universe Design Tool

    Hi all,
    I have quite an urgent question that I need some guidance from all you SAP gurus on!
    Is it possible to connect BPC 10 to BI4 using Universe Design Tool? We are under the impression very few people have connected these pieces of software together, if at all. It is very important to a Project I am on at the moment as to whether it is possible so any advice would be very much appreciated.
    So far we have done..
    Software is installed - Universe Design Tool (UDT)
    Logins have been created for BPC 10
    Opened up UDT and go through the Wizard;
    Connection name is BPC CCONNECTION
    Select data access driver: Business Planning and Consolidation OLE DB for OLAP
    Enter the server address for BPC 10 (This is the URL that we log in to the BPC Admin Console)
    After we try to continue, we get the error as follows:
    [Image of error|http://s9.postimage.org/pxk8raci7/UDT_Screen1.jpg]
    If anyone could give any kind of advice I would really apprecaite it!
    Nick

    Hi Nick,
    If you are trying to connect BPC 10 NW to BI 4.0 then I have some suggestions. We did this in our SAP EPM 10 training. In the Admin go to the model tab , select your model and edit it. Select the check box Use as a source. This creates a transient query in the backend.. Then we designed the connection in IDT (Information Design tool). Login to IDT and create a new project. Now Right click on the project and create a new OLAP connection. Select SAP BICS as driver selection. Provide the server details and user aunthetication. Select specify a cube in connection option. Now You can select your model <MODELNAME>_B folder and u will see one query with /CPMB/TQ_XXXX. Test your connection and publish your connection to repository . Now you can use this connection for creating Interactive Analysis (Webi Report). I am not sure about the reporting client you wish to use.
    Hope this Helps
    Regards
    Nikhil

  • Data Federator connection from universe - commProtocol EBUS error

    I am working with a prospect that is attempting to get a universe to communicate with DataFederator via JDBC.  We modified the jdbc.sbo file and added the line
    <Paramter Name="URL format">jdbc:datafederator://$DATASOURCE$;catalog'&quot';$DATABASE$'&quot';;commProtocol=EBUS</Parameter>
    (single quotes were added above to preserver contents in quote marks, they are not really in the file)
    along with the appropriate classpaths, per the XI3 datafederator release notes.  However when the customer tries to connect via the connection manager in the universe the following error is thrown:
    [Data Federator Driver] Invalid identifier for site wrapper in parameter 'commProtocol'. Reason: EBUS
    Has anybody seen an error like this, and have any suggestion on how to correct it?
    Thank you.

    Hi Eric,
    Can you tell me which version of Data Federator and BOE you are using?
    It looks like you tried to configure Data Federator JDBC driver with a commProtocol that is not supported by this version of DF.
    Are you using Data Federator XI 3.0 SP1 (12.1.0.0) or later version?
    You can check the version of the Data Federator JDBC driver you are using by clicking "Test Connection" in Universe Designer. You will see the driver and database (DF) versions.
    Make sure you are using the 12.1.0.0 version or later for both driver and server.
    Regards,
    Mokrane
    Mokrane Amzal
    Software Development Manager

Maybe you are looking for

  • Sharing a single calendar in iCal

    Is it possible to share just one calendar with another computer that has the same mobileme account? Example: My wife has 5 calendars, I have 7. We want one common calendar for our meetings and I don't want her 5 calendars and she doesn't want my 7. (

  • HP C6380 photo tray prints only green

    The problem started when I installed my new computer with Windows 7. The photo tray prints only in green. I tried to print from the photo tray from various programs with the same result, so the printer must be the problem. I downloaded and installed

  • Student CS6 on pc and mac?

    I have a student license. Can I install on more than one computer? My pc(win7) is dying and I want to install on my macbook(10.8), but I'm getting an  error that my serial number is wrong. Is this because I have to  deactivate my other copy? I have c

  • Recovery_mode managed vs managed real time apply

    Hello All, I am using Oracle 11.2.0.3 My primary database is an Oracle RAC 2 nodes database with ASM and my standby database is a single instance physical standby database on file systems. My protection mode is MAXIMUM PERFORMANCE What is the differe

  • Are there any good fax programs that work with Efax besides Efax Messenger

    I just signed up for a free months trial of Efax. I downloaded the Efax Messenger program which seems to work well except for the fact that it does not save any fax packages (on my computer) that I send out. This is an important needed feature. If I