Join two unrelated data sources

Is it possible to join two unrelated data sourcesin OWB, if yes, how?
The closest which comes to my mind is union (outer join) thru two proxy expressions with redundant column holders for reciprocal columns.
But I am thinking, above would lead to excessive wastage.
So is there a better way possible.
Rgds,
Deepak

Deepak,
I think there are 2 different things you are trying to achieve:
1) With a grand total, something along the lines of:
select emp1.empno
, emp1.ename
, count(emp2.empno) count_empno
from emp1
, emp2
This query will retrieve a grant total, and because there is no relationship, you do not need a join condition. You do access the emp table twice.
OWB would implement this like:
select emp1.empno
, emp1.ename
, (select count(emp2.empno) from emp2) count_empno
from emp1
The other thing you seem to like to implement is a join on the customer_id, or similar for the simplified example, say on deptno in the emp table:
select emp1.empno
, emp1.ename
, sum(emp2.sal) dept_sal_sum
from emp1
, emp2
where emp1.deptno = emp2.deptno
group by emp1.empno
, emp1.ename -- this does not add anything, but...
Again, the way OWB would implement this (something similar):
select emp1.empno
, emp1.ename
, (select sum(emp2.sal)
from emp2
where emp2.deptno = emp1.deptno
) dept_sal_sum
from emp1
group by emp1.empno
, emp1.ename -- this does not add anything, but...
Anyway, so the way you would create this is by using the same source multiple times, include the aggregates and put in the join conditions appropriately.
Hope this makes sense... and addresses the issue.
Mark.

Similar Messages

  • Login Module validation against two different data sources

    Hi All,
    We have the following setup
    NW Portal 7.31
    Single stack
    We are in the process of implementing Employee Self Service 1.50 WDA.
    And as part of the requirement , we have implemented LDAP as the UME DataSource.
    So, employees log into the portal using the LAN ID and Windows password  and are authenticated using the Logon ticket.
    Now the client has come up with a requirement to have all German employees login with their ECC user id and password.
    NOTE: ECC User ID and LAN IDs are the same, but the passwords are different.
    a) Is it possible to use two UME data sources for logon validation.
    b) Is customization of the Login module needed for this scenario?? If Yes, what components need to customized?
    c) What is the best approach to handle this requirement?
    Thanks.
    Regards,
    Raj

    check this link if it provide any helpful info:
    User Mappings in the Authentication Framework of SAP NetWeaver Application Server (AS) Java - Security and Identity Mana…
    Also you can search around creating a custom login module for authenticating useres against ECC ,if its possible you need to plugin the custom login module in your authentication stack along with the applicable flag and order so that if user authentication failed at ldap level then the control should go to authenticate it against the ECCcustom login module and logon ticket should be generated in both the cases.

  • Report using two different data sources won't work.

    I'm trying to build a report that shows information from a production table and an archive table.
    Tables are in different databases, which are defined as their own Data Sources in Publisher.
    Two data sets containing the same query but using different Data Sources are defined in the Data Model.
    When selecting option 'Concatenated SQL Data Source' the report never completes.
    If any of the two Data Sets is selected as the Main Data Set, the report shows information related to that source only.
    Any hints on how to make this work would be appreciated.
    Thanks.
    ccastillo

    More details on this issue:
    The production database has a synonym pointing to the archive database. I build a query using a UNION ALL statement linking both tables.
    For the same set of parameters, this query completes in a couple of minutes outside BI Publisher, but never ends (I cancel after an hour) inside Publisher.
    Is there any special considerations for the use of synonyms inside Publisher?

  • PREDICTION JOIN OPENQUERY against data source view does not work

    Hi,
     I am trying to follow the example in this link:
    http://technet.microsoft.com/en-us/library/ms132031.aspx
    to do a prediction join with a table defined in a data source view of our cube/mining structures.  No matter how I specify the table in the OPENQUERY statement I get: "OLE DB error: OLE DB or ODBC error: Invalid object name 'DataSourceView.dbo.TableName'.;
    42S02."  I've tried specifying the table name in 1, 2, and 3 parts, with and without the '[]' brackets but get the same error every time.  I thought something might be wrong with the table in the DSV so tried putting other tables in the query,
    but that produces the same error.  Any ideas on the problem?
    SELECT FLATTENED
            t.[Column1],
            t.[Column2],
            t.[Column3],
            PredictTimeSeries([ModelName].[Column3],5)
    From
      [ModelName]
    PREDICTION JOIN
      OPENQUERY([DataSourceView],
        'SELECT
            [Column1],
            [Column2],
            [Column3]
        FROM
          [DataSourceView].[dbo].[TableName]
        ') AS t
    ON
            [ModelName].[Column3] = t.[Column3]
    OLE DB error: OLE DB or ODBC error: Invalid object name 'R Staging.dbo.TestSet'.; 42S02."

    I want to be able to query a data source view table/named query.  This TechNet article seems to imply it is as simple as running the following in a DMX window:
         OPENQUERY ([MyDatasourceView],'select Column1 from DataSourceTable')
    I've also tried:
         select * from OPENQUERY ([MyDatasourceView],'select Column1 from DataSourceTable')
    Both result in:
        "Query (1, 1) Parser: The syntax for 'OPENQUERY' is incorrect."
    Can we query a DSV table from a DMX query directly with OPENQUERY, or does the OPENQUERY only work within a PREDICTION JOIN?  Seems like such a simple case for it not to work.
    Following the example in this article:
    http://technet.microsoft.com/en-us/library/ms132173.aspx

  • Join conditions in data source - Configurable sub scenario

    Hello Experts,
    In configurable sub scenario, when I try to join 2 tables (EKKO and EKPO), I am getting a warning message saying that "Redundant Join Conditions proposed; manual maintenance required" and the data source is not fetching any data.
    Could anyone suggest what could be the reason
    Regards,
    Ramakrishna Chaitanya

    Hello Ramakrishna,
    Alessandro is right. EKKO-EBELN and EKPO-EBELN is the redundant condition. Just remove manually this row from the join condition and the warning message dissapears.
    Best Regards,
    Fernando

  • Calling two different data sources within same transaction

    Hi,
    I have a method (in an Entity Bean), which I need to use two data sources.
    But the system give this error when I try to do it.
    An illegal attempt to use multiple resources that have only one-phase capability has occurred within a global transaction.
    Please help me to solve this problem.
    Best Regards,
    Chamal.

    I hope you need to use XA Drivers (while create the connection pool it self you need to choose the XA Drivers) for this. else you need to use the userTranscations instead of containers.
    Because other database drivers won't support this feature.
    Please try any of this. Using XA drivers is costly interms of performace.

  • Two Different Data Sources in EIS

    <p>Hi -</p><p> </p><p>Can we have 2 different Data Sources in the OLAP model.</p><p>Example:</p><p>We have our Fact table in Teradata and Dimension table inOracle.</p><p>Can we create a model with this kind of scenario?</p><p>WIll it be a maintenance nightmare if we do this?</p><p> </p><p>Any help would be greatly appreciated.</p><p> </p><p>Thanks,</p><p>Jeeva</p>

    Hi Jeeva,<BR><BR>Yes you can do this. I have models which use data from Oracle, SQL Server and also Text files! All you need is to setup the appropriate ODBC connections on the box that contains EIS then when you create your OLAP model, you add new data sources by clicking "Connections" then "Add Data Source"<BR><BR>Hope this helps.<BR><BR>Brian

  • Outer join two different dates

    I have a table that has some pre-aggregated dollar amounts.  Each record also has a date of fill and a file date.  I want to sum all records in the table by year/month of fill date and separately I want to use the same query results to sum by year/month
    of file date.  The problem I was initially having was that the query was not showing all dates January through December, but instead was only showing dates for which there was a record.  Makes sense, I get it, and I fixed that by using a cross join
    on a date table and left join on that table.  See below.  Pretty simple really.  My results have a record for every file date and a $0 amount if there is no file for that date.  However, I want the same thing for fill date.  If I don't
    have a file for January but I do have a fill for that date then I want to display that year/month with the dollar amount.  I hope this makes sense.
    The approaches I have tried thus far are to add a separate CTE for the fill date, joining to the same CTE twice (once for fill and once for file), and some crazy unions... all with no luck.
    Can anyone help me out please?
    Thanks!
    WITH dt
    AS (SELECT cdb.ID,
    cdb.RestoreDBName,
    cdb.DisplayName,
    d.Date
    FROM DataOperations.lkp.Dates AS d CROSS JOIN DataOperations.dbo.vwClientDatabases AS cdb
    WHERE d.Date BETWEEN '01-01-2013' AND DATEADD(day, -1 * DAY(CAST(GETDATE() AS DATE)), DATEADD(month, 1, CAST(GETDATE() AS DATE)))
    AND d.DayOfMonth = 1
    SELECT dtFile.RestoreDBName,
    dtFile.ID,
    YEAR(dtFile.Date) AS FileYear,
    MONTH(dtFile.Date) AS FileMonth,
    dtFile.Date AS FileDate,
    LEFT(CONVERT(VARCHAR, dtFile.Date, 120), 7) AS FileYearMonth,
    YEAR(rx.FillDate) AS FillYear,
    MONTH(rx.FillDate) AS FillMonth,
    CAST(CONVERT(VARCHAR, YEAR(rx.FillDate)) + '-' + CONVERT(VARCHAR, MONTH(rx.FillDate)) + '-01' AS DATE) AS FillDate,
    LEFT(CONVERT(VARCHAR, rx.FillDate, 120), 7) AS FillYearMonth,
    ISNULL(SUM(rx.TotalPayAmount), 0) AS TotalPayAmount
    FROM dt AS dtFile LEFT JOIN DataOperations.rpt.RxGrossPayAmountByDay AS rx ON rx.DBName = dtFile.RestoreDBName
    AND DATEADD(month, DATEDIFF(month, 0, rx.TapeFileDate), 0) = dtFile.
    [Date]
    LEFT JOIN DataOperations.dbo.vwClientDatabases AS cdb ON cdb.RestoreDBName = rx.DBName
    GROUP BY dtFile.RestoreDBName,
    dtFile.ID,
    YEAR(dtFile.Date) ,
    MONTH(dtFile.Date) ,
    dtFile.Date ,
    LEFT(CONVERT(VARCHAR, dtFile.Date, 120), 7) ,
    YEAR(rx.FillDate) ,
    MONTH(rx.FillDate) ,
    CAST(CONVERT(VARCHAR, YEAR(rx.FillDate)) + '-' + CONVERT(VARCHAR, MONTH(rx.FillDate)) + '-01' AS DATE),
    LEFT(CONVERT(VARCHAR, rx.FillDate, 120), 7)
    ORDER BY dtFile.RestoreDBName, YEAR(dtFile.Date), MONTH(dtFile.Date)

    Ok, how about this.
    WITH dtFile
    AS (SELECT dt.RestoreDBName,
    YEAR(dt.Date) AS Year,
    MONTH(dt.Date) AS Month,
    ISNULL(SUM(rx.TotalPayAmount), 0) AS TotalPayAmount
    FROM(
    SELECT cdb.ID,
    cdb.RestoreDBName,
    cdb.DisplayName,
    d.Date
    FROM DataOperations.lkp.Dates AS d CROSS JOIN DataOperations.dbo.vwClientDatabases AS cdb
    WHERE d.Date BETWEEN '01-01-2013' AND DATEADD(day, -1 * DAY(CAST(GETDATE()AS DATE)), DATEADD(month, 1, CAST(GETDATE()AS DATE)))
    AND d.DayOfMonth = 1
    )AS dt LEFT JOIN DataOperations.rpt.RxGrossPayAmountByDay AS rx ON rx.DBName = dt.RestoreDBName
    AND DATEADD(month, DATEDIFF(month,
    0, rx.TapeFileDate), 0) = dt.[Date]
    GROUP BY dt.RestoreDBName,
    YEAR(dt.Date) ,
    MONTH(dt.Date) ),
    dtFill
    AS (SELECT dt.RestoreDBName,
    YEAR(dt.Date) AS Year,
    MONTH(dt.Date) AS Month,
    ISNULL(SUM(rx.TotalPayAmount), 0) AS TotalPayAmount
    FROM(
    SELECT cdb.ID,
    cdb.RestoreDBName,
    cdb.DisplayName,
    d.Date
    FROM DataOperations.lkp.Dates AS d CROSS JOIN DataOperations.dbo.vwClientDatabases AS cdb
    WHERE d.Date BETWEEN '01-01-2013' AND DATEADD(day, -1 * DAY(CAST(GETDATE()AS DATE)), DATEADD(month, 1, CAST(GETDATE()AS DATE)))
    AND d.DayOfMonth = 1
    )AS dt LEFT JOIN DataOperations.rpt.RxGrossPayAmountByDay AS rx ON rx.DBName = dt.RestoreDBName
    AND DATEADD(month, DATEDIFF(month,
    0, rx.FillDate), 0) = dt.[Date]
    GROUP BY dt.RestoreDBName,
    YEAR(dt.Date) ,
    MONTH(dt.Date)
    SELECT dtFile.RestoreDBName,
    dtFile.Year AS FileYear,
    dtFile.Month AS FileMonth,
    dtFill.Year AS FillYear,
    dtFill.Month AS FillMonth,
    dtFile.TotalPayAmount as FileTotalPayAmount,
    dtFill.TotalPayAmount as FillTotalPayAmount
    FROM dtFile FULL OUTER JOIN dtFill ON dtFile.RestoreDBName = dtFill.RestoreDBName
    ORDER BY dtFile.RestoreDBName, dtFile.Year, dtFile.Month
    I think I'm getting close, but there's some odd results for the file total pay amount.  Here are the partial results for the first RestoreDBName in my results.  I have some repeating and I'm not sure what value to use.  Do I use FillTotalPayAmount
    PLUS FileTotalPayAmount or one or the other or what?  Am I joining on the right fields?
    Thank you so much.  This is a big help and a great learning lesson too!
    FileYear
    FileMonth
    FillYear
    FillMonth
     FileTotalPayAmount 
      FillTotalPayAmount 
    2013
    1
    2013
    1
    655.5
    711.7
    2013
    1
    2013
    2
    655.5
    658.5
    2013
    1
    2013
    3
    655.5
    715.2
    2013
    1
    2013
    4
    655.5
    744.5
    2013
    1
    2013
    5
    655.5
    765.8
    2013
    1
    2013
    6
    655.5
    718.8
    2013
    1
    2013
    7
    655.5
    792.8
    2013
    1
    2013
    8
    655.5
    781.4
    2013
    1
    2013
    9
    655.5
    748.6
    2013
    1
    2013
    10
    655.5
    822.4
    2013
    1
    2013
    11
    655.5
    752.2
    2013
    1
    2013
    12
    655.5
    839.0
    2013
    1
    2014
    1
    655.5
    702.9
    2013
    1
    2014
    2
    655.5
    7.3
    2013
    1
    2014
    3
    655.5
    0.0
    2013
    1
    2014
    4
    655.5
    2013
    2
    2013
    1
    672.7
    711.7
    2013
    2
    2013
    2
    672.7
    658.5
    2013
    2
    2013
    3
    672.7
    715.2
    2013
    2
    2013
    4
    672.7
    744.5
    2013
    2
    2013
    5
    672.7
    765.8
    2013
    2
    2013
    6
    672.7
    718.8
    2013
    2
    2013
    7
    672.7
    792.8
    2013
    2
    2013
    8
    672.7
    781.4
    2013
    2
    2013
    9
    672.7
    748.6
    2013
    2
    2013
    10
    672.7
    822.4
    2013
    2
    2013
    11
    672.7
    752.2
    2013
    2
    2013
    12
    672.7
    839.0
    2013
    2
    2014
    1
    672.7
    702.9
    2013
    2
    2014
    2
    672.7
    7.3
    2013
    2
    2014
    3
    672.7
    0.0
    2013
    2
    2014
    4
    672.7
    2013
    3
    2013
    1
    630.6
    711.7
    2013
    3
    2013
    2
    630.6
    658.5
    2013
    3
    2013
    3
    630.6
    715.2

  • Retrieving data from two CRM data sources having same field name.

    Hello Experts,
    I am extracting data from 0CRM_OPPT_H(Opportunties) and 0CRM_SALES_ACT_1 (Activities), in both data sources we have a comman field "DESCRIPTION_UC".which is the field for both Opportunity Description and Activity Description.
    In BW "0CRM_DESCR" is the same object which is mapped to both opportunity and Activity descriptions field"DESCRIPTION_UC".
    Data is retriving fine in both Infoproviders.
    Our Requirement is to populate both above said Activity and Opportunity descriptions in the report, to achive this we need to create a multiprovider and populate the data.Plz help me how to assaign the objects in the multiprovider.
    Thanks
    Satya

    Hi,
    In Characteristics tab.
    u find the identification tab.
    Go there and click on both infoproviders corresponding to both info providers.....
    One needs to clearly understand that there are different approaches in identification of KFs and Chars in a MP.
    KFs, if they are identical by meaning, must be selected from EXACTLY ONE INFOPROVIDER.
    CHARs must be selected in EACH INFOPROVIDER involved.
    For example, I have a Char COUNTRY in my MP. And in the infoproviders I have Chars such as SENDING COUNTRY, DESTINATION COUNTRY, TRADING COUNTRY, COUNTRY OF GOODS ORIGIN, COUNTRY OF TRANSPORT. I need to identify which country in infoprovider will be treated as a COUNTRY in the MP. And such identification should be set for each Char in MP for each infoprovider.
    If there is no data for COUNTRY in one of the providers (or COUNTRY is not properly identified in MP) then data from this infoprovider will come into MP query as NOT ASSIGNED or not come at all.
    You can search these forums for something like ‘no data in multiprovider’. You’ll find a lot of threads concerning this problem. In most cases the reason of this exactly what was said – wrong identification of chars in MP or absence of char values in some infoproviders.
    Check this link for more info
    Identification in Muticube
    Hope this helps u..
    Best Regards,
    VVenkat
    Edited by: Venkata Narayana Jakkampudi on Dec 24, 2008 12:37 PM
    Edited by: Venkata Narayana Jakkampudi on Dec 24, 2008 12:41 PM

  • Outer-join merge of data sources

    I need to join the data from our primary universe to various sets of Excel data.  The universe contains the primary, core data (employees).  The Excel data will contain additional dimensions and measures.  The "Merge" feature works well for analyzing the measures found in the Excel file, but I need to be able to slice my data by dimensions included in the Excel file.  I receive the "data not compatible" warning when I try to drop a dimension from the Excel file into a table that contains dimensions from the primary universe.
    Example:  The universe contains the employees' Employee ID and Country.  The Excel file contains the employees' Employee ID and City.  I merged the two data sets on the Employee ID.  I need to see a count of employees by Country and City but Webi doesn't allow me to put Country and City into the same table because they are both dimensions and Country is sourced from the universe whereas City is sourced from the Excel file.
    Does anyone have ideas on how to make this work?

    Hi,
    As mention by Gaurav Try this .
    You have Created Merge Dimension on [Emp_ID] .
    Create 2 variables both will be detail object & Associated dimension will be [Emp_Id] (Merged) .
    v_Country = Q1.[Country]
    v_City =  Q2.[City]
    now add
    [Emp_Id] (Merged) , v_Country , v_City in one table .

  • Joining two unrelated tables

    Hi i posted this in the SQL * Forum as well and realised it was in the wrong place,
    I'm trying to run a query on 2 unrelated tables
    i) sdevmove_completed
    ii) sdevfailure_occurred
    sdevmove_completed holds the data of successful moves completed by a device and sdevfailure_occurred holds the data for failures that occurred when a move was issued.
    both tables have a common field Device_ID but are not related in a pkey/fkey manner (with each other).
    this is the SQL i tried
    select unique
    mvSu.id as "suc.Dev_ID",
    mvSu.source_location as "suc.Src_Loc" ,
    mvSu.destination_location as "suc.Dest_Loc" ,
    mvSu.timestampdb as "suc.Time" ,
    mvSu.equipment_type as "suc.Eq_Type" ,
    mvFa.timestampdb as "fail.Time" ,
    mvFa.failure_id as "fail.Alarm_ID" ,
    mvFa.failure_description as "fail.Alarm_Desc" ,
    mvFa.id as "fail.Dev_ID"
    from sdevfailure_occurred mvFa, sdevmove_successful mvSu
    where mvSu.timestampdb >= to_date('03-sep-03 00:00:00','dd:mon:yy hh24:mi:ss')
    and mvSu.timestampdb <= to_date('10-sep-03 15:30:00','dd:mon:yy hh24:mi:ss')
    and mvFa.timestampdb >= to_date('03-sep-03 00:00:00','dd:mon:yy hh24:mi:ss')
    and mvFa.timestampdb <= to_date('10-sep-03 15:30:00','dd:mon:yy hh24:mi:ss')
    and mvSu.id (+) = mvFa.id
    and mvSu.id='BLAX0200'
    The above query returns an extremely large amout of data as a result of the join. Eg. moves between the time specified is 100 (may return 1000 or more - this is dynamic) and failures between time specified is 100 (same as moves).
    Resultant, the above query returns 100 * 100 = 10000 (the actual data size is generally no less than 900,000 rows with the query i'm using).
    Is there anyway i can create a join such that only 200 rows get returned (assuming the above example),i.e. 100 rows with move_successful data and 100 rows with failure_occurred data
    Any help would be greatly appreciated.
    thanks in advance
    Prem

    Prem,
    The tables both contain more than 1 row per id (multiple timestamps). You can join on ID, but that will still do a carthesian product between all the dates within a particular ID. That is correct behaviour. If you have no other joining field, you basically want to see arbitrary matched data. In that case you might want to try this:
    select unique
    mvSu.id as "suc.Dev_ID",
    mvSu.source_location as "suc.Src_Loc" ,
    mvSu.destination_location as "suc.Dest_Loc" ,
    mvSu.timestampdb as "suc.Time" ,
    mvSu.equipment_type as "suc.Eq_Type" ,
    mvFa.timestampdb as "fail.Time" ,
    mvFa.failure_id as "fail.Alarm_ID" ,
    mvFa.failure_description as "fail.Alarm_Desc" ,
    mvFa.id as "fail.Dev_ID"
    from
      (select rownum rn, sdevfailure_occurred.* from sdevfailure_occurred) mvFa,
      (select rownum rn, sdevmove_successful.* from sdevmove_successful) mvSu
    where mvSu.timestampdb >= to_date('03-sep-03 00:00:00','dd:mon:yy hh24:mi:ss')
    and mvSu.timestampdb <= to_date('10-sep-03 15:30:00','dd:mon:yy hh24:mi:ss')
    and mvFa.timestampdb >= to_date('03-sep-03 00:00:00','dd:mon:yy hh24:mi:ss')
    and mvFa.timestampdb <= to_date('10-sep-03 15:30:00','dd:mon:yy hh24:mi:ss')
    and mvSu.id (+) = mvFa.id
    and mvSu.rn (+) = mvFa.rn -- table with the least records per id should come first, if this is not always the case you will loose data from mvFa!
    and mvSu.id='BLAX0200'Hope this helps,
    Lennert

  • How do I get two independent data sources to graph on the same chart?

    I have one graph of streaming voltage and another graph of a simple boolean function which jumps from zero to one when a button is pushed. I'd like to have both lines of data display on one graph. The goal is to have an even marker for the voltage graph - pressing the boolean button would "mark" important data points during acquisition. How do I combine the two? (I tried putting both into an array and graphing that, but it seems to just average the two instead of plotting them separately.) Thanks.

    And yet another way...
    If you present an array of waveform data-types you can sidestep this issues of disimilar sample rates.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    Wform_chart.vi ‏40 KB

  • Assigning two different data sources to infosource

    hi
    i have a small problem. Actually we have a development bw server which is having client no.500.
    we have a development r/3 server which is of client 330. and we have defined a rfc connection for client 330 in bw client 500. and all the infosources are assigned to that rfc connection which is configured for 330.
    In 330, we  have very less data. We have one more client 700 which is having data. Now i have created a rfc connection for this client 700. and i want to use this connection  as a source for client 500 in bw.
    can i disable the existing rfc connection of 330 and use rfc connection of 700 for the same infosource.
    Please reply.
    regards
    padma

    You can assign from different clients of your source system datasources to your infosource. I've already linked 30 datasources out of 30 clients to one infosource. No problem.
    So you can link both of your clients to your infosource. I think it is important not to delete the connection to client 330 because this - I think - is the client where you do all the "customizing" setting for your datasource. Then this datasource-infosource connection is the basic for the transports to the production system.

  • Can CLOUD data source be joined to a combined data source?

    Hi, experts,
           I have created a cloud data source and I am trying to join the cloud data source with a combined data source.
           I am having a problem.
               This is how I joined the two data sources. I checked the Joined Data Source. It is ok.
              When I open the report,
              The error is just like this.
              The error is just one line . So , I simply dont know how to solve this.
               Any help is greatly appreciated.
    Thanks in advance.
    Regards,
    Fred.

    Hi Murali,
    I saw the solutions you provide seems to work for the user.
    What I want to do is to transfer the Hierarchy from 0GL_ACCOUNT to another InfoObject 0GLACCEXT, however, when I right clicked the Hierarchy and tried to create transfer rules, but the Transfer Rules option prompted only DataSource in Source selections, I cannot select 0GL_ACCOUNT_HIER as my source.
    Any advice?
    Many thanks,
    Vince

  • Infospoke with two data source

    Hi all,
    is there a way in an Infospoke to include infoobjects belonging to two different data source?
    tks,
    Federico

    Hello Frederico,
    as far as I know you can only use one data source of type InfoObject, basic cubes or ods in an infospoke. Perhaps Analyses Process Designer (APD) may help you to achieve your goal. You can use it to join your InfoObject into a new one, or create a transactional ODS with the desired data. These new objects can than be used in an infospoke. And you can use a process chain to put all required steps in the right order.
    Kind regards,
    Jürgen

Maybe you are looking for

  • AirPlay issues on iMac (late-2012)

    My devices: iMac is (Late-2012 21-inch model) - OS X 10.10.1 3rd-gen. Apple TV (2012 model) - newest software. When I using the Apple TV and try to AirPlay the movie from my iMac yesterday. I find that my iMac can not AirPlay to my Apple TV. Issues:

  • CRASH DURING INSTALLATION OF APPLICATION - UNABLE TO DELETE EITHER !!

    Hi, I am presently very happy with iPhone 3G having upgraded from the original model yesterday... I have one small problem, however, I have installed about a dozen or so applications from the the Apps store, about half using the iPhone and the other

  • Can anyone tell me if i can make a virtual car accident in premiere pro cc

    Can anyone tell me if I can make a virtual car accident, in premiere pro cc

  • Multiplr Idocs to File

    Hi, I have a scenario where I am collecting IDocs and producing a single file in XI. I am following the steps described in the blog The specified item was not found. . I have checked the option for Collecting IDocs in Partner Profile on the R/3 side

  • Slideshow not playing as a PDF

    In the last version of Lightroom, I could export a pdf slideshow and it would actually play when the PDF was opened. No music but it did play. Now I do not know if it is a PDF issue or a Lightroom issues, but my slideshows have to be arrowed through,