Decision  to Build BW data model with legacy data

Hi experts,
I was assigned a task to take decision on  creating  new data warehouse on the following scenario's
Option1:
1.SAP BW + Legacy data( Separate database)
Option2:
2.SAP BW+ Legacy data integrate to BW.
Please let me the pros and cons involved in integrating legacy data to BW or to report separately as two different data bases using BOBJ.Client is having SAP R/3 EEC6.0 running.SAP data is around 60% and remaining is legacy.
My question is which option is better with some detail.
Regards
prasad

Hi Prasad,
As mentioned no need to combine Legasy data and BW data in BOBJ.You can directly extract to BI from R/3 and Legasy Data.But
Please check the folliwng points from DB People.
1. As per requirement how many Tables that you are using to extract the data?
2.  You have three source tables.But there are no unique records.In this case first you need to identify the common key field.
Note : That key field also should same as in R/3 also.
Based on the three source tables inform the DB team Mainatain a separate table (Which should collect only common record from three tables).
3. Now you can load the data into BI.So the above scenario will resolve issue.
Issues & Concern :
1. If yopu extract Lagasy and BI to BOBJ ?How u r going to combine data in BOBJ to generate a global report.
2. Is this possible to maintain a separate table in DB by the DB team.
Check once with DB team before proceeding further.
Regards
Ram.

Similar Messages

  • Filling bc travel data model with test data

    Hey i read somewhere that there is a app to fill the bc travel data model with test data.I been searching but havent found one in the preview version.Please help me if anyone knows how to get it done.Filling it manually is taking a whole lot of time.

    Go to the ABAP Editor (SE38) and execute the SAPBC_DATA_GENERATOR program. This program generates suitable sample data in the tables of the flight data application.

  • How to share JHS BC4J data model with  JClient application ?

    In our project, some application system using JHS Struts/JSP solution but others which need rich UI application prepare to adapt JClient solution, so whether we can share JHS BC4J data model with JClient application ?

    Ting Rung,
    The JClient application will communicate with your application module. So all logic in you app module, EO's and VO's can be resued by JClient. Logic in Jheadstart handlers cannot be reused.
    Steven Davelaar,
    jHeadstart Team.

  • Can SPM 2.1 or 3.0 BI standard  data model read the data form existing BI P

    Hi,
    I am curious to find out, can SPM 2.1 or 3.0 BI standard  data model read the data form existing BI Procurement  (Cubes and DSO's) with no customization mapping?
    i know SPM 2.0 do not have that flexibility (Standard data model can read from BI), we would have to map transformation.
    I would appreciate your response..
    Rgds,
    Mahesh

    Hi Mahesh,
    What you can do in SPM30 is create an export datasource for existing BI objects and use them as direct datasource in SPM using template mapping.
    Direct transformations from BI object to SPM objects is not provided.
    Regards,
    Divyesh

  • Query To update a date column with a date of my interest

    All,
    How to update a column in a table which is in date format with a date of my interest??
    Pls suggest.

    Please detail :
    1. what exactly you are trying to do
    2. what exactly you have done
    Nicolas.

  • Not able to save date column with custom date format. in OBIEE 11g

    Hi,
    I have migrated one report from OBIEE 10g to 11g. There is a date column with customized date format(i.e. Default format is 'dd-MMM-yyyy' and I have used 'MMM-yyyy').
    But when I use this custom format and try to save the report in 11g its giving this below error.
    ''Catalog object privilege validation failed for user to path /shared/ALM BI/Finacial Results/History Income Statement Detail.
    You do not currently have sufficient privileges to save a report or dashboard page that contains HTML markup.
    This HTML might be present in column headings, table headings, text views, narrative views, the print header,
    or the print footer and must be removed before saving.''
    Please let me know what changes I need to do for this.
    Regards,
    Ambika Nanda.

    Hi ,
    privilage issues...check the security settings once..
    Thanks,
    Ananth

  • Error in viewing data in a data template with multiple data sources

    Hello,
    I have designed a data template with two data sources.One is from DEPARTMENTS table and the other datasource is a xml file.Following is the code for the data template :
    <dataTemplate name="EmployeeListing" dataSourceRef="demo">
    <parameters>
    <parameter name="p_DEPTNO" dataType="character" defaultValue="20"/>
    </parameters>
    <dataQuery>
    <sqlStatement name="Q1">
    <![CDATA[SELECT DEPARTMENT_NAME,DEPARTMENT_ID,LOC from DEPARTMENTS]]>
    </sqlStatement>
    <xml name="empxml" expressionPath=".//ROW[DEPARTMENT_NAME =$DEPARTMENT_NAME]">
    <url method="GET" realm="" username="" password="">file:///D:\OraHome_1\xmlp\XMLP\DemoFiles\Employee Salary Report.xml</url>
    </xml>
    /dataQuery>
    </dataTemplate>
    The problem is when i am trying to view the data, only data from SQL Query Q1 is getting displayed and the data from Employee xml is not at all getting displayed.
    Could anyone please let me know what i am missing?
    Thanks
    Nutan
    Edited by: user609971 on Oct 23, 2008 8:06 AM

    This is from Documenation sample....
    Did you see the data structure section, where you say, how you wanted the columns ?
    <?xml version="1.0" encoding="WINDOWS-1252" ?>
    <dataTemplate name="Employee Listing" description="List of Employees" v
    ersion="1.0">
    <parameters>- Defines a single parameter for the Department Number
    - with default of 20:
    <parameter name="p_DEPTNO" dataType="character"
    defaultValue="20"/>
    </parameters>
    <dataQuery>
    <sqlStatement name="Q1">
    <![CDATA[SELECT DEPTNO,DNAME,LOC from dept
                      order by deptno]]>
    </sqlStatement>
    <xml name="empxml" expressionPath=".//ROW[DEPTNO=$DEPTNO]"> - Defines name
    - and link to DEPTNO in Q1
    <url method="GET" realm="" username="" password="">
    file:///d:/dttest/employee.xml</url> - Defines url for xml data
    </xml>
    </dataQuery>-
    <dataStructure>- The following section specifies the XML hierarchy
    - for the returning data:
    <group name="G_DEPT" source="Q1"
    <element name="DEPT_NUMBER" value="DEPTNO" />
    <element name="DEPT_NAME" value="DNAME"/>
    - This creates a summary total at the department level based
    - on the salaries at the employee level for each department:      
    <element name="DEPTSAL" value="G_EMP.SALARY"
    function="SUM()"/>
              <element name="LOCATION" value="LOC" />
    <group name="G_EMP" source="empxml">
    <element name="EMPLOYEE_NUMBER" value="EMPNO" />
    <element name="NAME" value="ENAME"/>
    <element name="JOB" value="JOB" />
    <element name="MANAGER" value="MGR"/>
    <element name= "HIREDATE" value="HIREDATE"/>
    <element name="SALARY" value="SAL"/>
    </group>     
    </group>
    </dataStructure>
    </dataTemplate>

  • Logical Data Model Vs Physical Data Model

    Hi guys, what is the difference between, logical data model and physical data model.

    Duplicate Thread:
    Logical Vs Physical Data Model
    Daljit Singh

  • Ora-00922 when building a model with Oracle Data Miner

    Hi,
    i'm using Oracle Data Miner 10.1.0.2 with Database 10.1.0.3.0 under Linux x86.
    The specific patch 10.1.0.3.1 for Data Mining was applied because i didn't manage to execute the models in the tutorial.
    So all were fine, and i succeded creating my own models and i executed them.
    But few months later, i.e now, i'm trying to build som other models but when building i have again the ora - 00922 : missing or invalid option
    I tried applying once again the patch but no effect !
    Is anyone ever faced this problem !?
    Eric

    Hi Xiafang,
    the database were not upgraded but used to build some ETL mappings.
    Here are the results of the SQL statements u gave me
    SQL> connect / as sysdba
    Connected.
    SQL> select value from v$option where parameter like '%Data Minin%';
    VALUE
    TRUE
    FALSE
    SQL> select comp_id, version, status from dba_registry;
    COMP_ID VERSION STATUS
    WK 10.1.0.3.0 VALID
    EM 10.1.0.3.0 VALID
    XDB 10.1.0.3.0 VALID
    AMD 10.1.0.3.0 VALID
    CONTEXT 10.1.0.3.0 VALID
    SDO 10.1.0.3.0 VALID
    ORDIM 10.1.0.3.0 VALID
    EXF 10.1.0.3.0 VALID
    OWM 10.1.0.2.0 VALID
    ODM 10.1.0.3.1 VALID
    CATALOG 10.1.0.3.0 VALID
    COMP_ID VERSION STATUS
    CATPROC 10.1.0.3.0 VALID
    JAVAVM 10.1.0.3.0 VALID
    XML 10.1.0.3.0 VALID
    CATJAVA 10.1.0.3.0 VALID
    APS 10.1.0.3.0 VALID
    XOQ 10.1.0.3.0 VALID
    Is the DM option enabled, i think yes but the SQL answer TRUE and FALSE.
    So, should i enable DM with the commands u gave me ?
    Eric

  • Needed SAP CRM Data model with Object, Entity and Attribute level details

    Hello all,
                 We are working on a huge IS-U / CRM implementation and we are still in the data gathering phase. The client has a whole load of legacy systems that will be replaced with IS-U and CRM. Right now we are in the process of developing data models using Excel first and then presenting them to the client to go forward from there. For this we need to have all the business objects, entities and their attributes.
    I know about the SD11 transaction, but we don't have a CRM system yet. My colleagues have access to a German ERP system and they were able to get models for HR, FI and Asset management. I tried for the Business partner / customer in there, but the models were not proper.
    So, once again, I need the specific data models out of SD 11 for  CRM business partner. If anybody has the information, please do pass it on to me as I need them urgently. It would be a great help if somebody can do so.
    Regards
    Rajesh

    I suggest the following:
    Please, check whether the system works if you activate the implementation BUPA_F4_AUGRP.
    In addition check the notes 559662, 674869 and 782927. Maybe the notes are already implemented but you can try then the implementation of the BADI (SE19). It should resolve your issue.
    I have implemented this Badi solution before, and after activation; the search help ; nor search result list did NOT show any Business partners anymore that had an authorization group I was not allowed to see.
    kind regards
    Davy Pelssers
    SAP CRM/Security consultant

  • Power Pivot Data Model with Linked Table

    Can anyone provide me with some suggestions as to how to accomplish the following in Power Pivot?
    I have the following Pivot Table fields. I'm trying to create a data model to allow me to filter all of the projects by the selected Fiscal Year. The Fiscal Year table is a dimension I created to group the data by.
    I'm considering separating Projects into multiple tables such that 1 table is for Year1 information, another table is for Year2 information (includes Year2FiscalYear, Year2BudgetCAP, etc.).
    I think what I need to do is create a measure to allow me to filter the records by fiscal year. Anyone have any ideas?
    Thanks,
    Roland

    Hi Greg,
    The data is coming from Project Online (OData feed) and SharePoint lists (all within Project Online). I'm creating an Excel Report.
    The reason I can't use Power Query is because refreshing a report that is built using Power Query is not supported via browser. Power BI is needed to do this. On the other hand if I build an excel report using Power Pivot only, the browser refresh functionality
    works.
    The Year1FiscalYear, Year2FiscalYear, etc. are all enterprise custom fields in Project Online. Therefore I have some control in being able to change the format of the data. I'm looking into what are some options on my side to configure Project Online or
    SharePoint lists to make building the model simpler...
    Thanks,
    Roland

  • Can I pass parameters from a dashboard via a dashboard prompt and presentation variable to publisher report based on a data model with select statements in OBIEE 11g ?

    I have a publisher 11g (v 11.1.1.7)  report with a single parameter. The report is based on a data model not a subject area.  I created a dashboard put a dashboard prompt and link to the report in separate section on the same page.  The dashboard prompt sets a presentation variable named the same as the parameter in the report. 
    The problem was when I created the dashboard prompt, it forced me to select a subject area which I did (though did not want to) and then I created both a column and variable prompts. But clicking on the
    report link completely ignored the value that I thought would be passed in the presentation variable to the report.
    Side note :  My report uses a pdf template for its layout where I have mapped the columns names from my data model to the form fields on the pdf form.  I noticed that if I create a publisher report based on a subject area, then I do not have the choice to choose a PDF as a template type for my layout.  (I only see BI Publisher Template as a choice). 
    I see some documentation online that suggest it could be done in 10g.
    Thanks
    M. Jamal

    Ok,
    I just tried that and it still doesn't pass anything to the prompt.
    I changed the prompt to an edit field and I made the following weblink but when i click the link from an account it doesn't put anything in the prompt and all data for all accounts is shown.
    This is the URL maybe I messed something up...
    https://secure-ausomx###.crmondemand.com/OnDemand/user/Dashboard?OMTHD=ShowDashboard&OMTGT=ReportIFrame&SelDashboardFrm.Dashboard Type=%2fshared%2fCompany_########_Shared_Folder%2f_portal%2f360+Report&Option=rfd&Action=Navigate&P0=1&P1=eq&P2=Account."Account Name"&P3=%%%Name%%%
    thanks

  • Filtering multiple-XML data model with parameters

    I have a data model that consists of a concatenation of 9 separate RSS feeds (weather information from 9 different cities coming from http://www.weather.gov/data/current_obs/????.xml, where ???? is the National Weather Service station ID). All of the feeds have exactly the same format. When I view the raw XML data, I see 9 different values of station_id and of every other tag. So the XML data looks fine. Now I'd like to be able to select one city at a time in an LOV dropdown.
    I've created a static LOV called Cities with the list of the 9 station ID's. I've created a parameter called city that is tied to that LOV.
    What I can't figure out is how to tie the selected city to the station_id field in the concatenated XML dataset.
    I've tied adding a parameter to each rss data set, entering each city's 4-character station ID into its Parameter Name field, and of course choosing city as the parameter. For example, the Parameters section for the Amarillo rss feed would show a Name of KAMA and a Value (Parameter) of city. While this seems logical, selecting the parameter on the View screen doesn't change the display.
    Is there a way to accomplish this?

    Ahhh, post as in "e-mail". DOH!
    E-mailed to you.

  • Publish data model with designer

    Hi,
    so far I used ERwin for data modelling. ERwin can generate HTML output consisting of the graphical data model plus hyperlinks on the tables. If you click on a table a report pops up with all details, e.g. table and column comments.
    I find this very useful to publish the data model.
    Is there something similar available with Oracle Designer?
    I found this announcement, but no product: http://otn.oracle.com/products/designer/pdf/ROB_Announce.pdf
    Best Regards,
    Jens

    If you have any recent release of Designer installed, then you have the ROB automatically installed. Select your Start menu in Windows and then navigate through your menus to the Designer sub menu and you'll see a link for setting up the ROB.
    The ROB was made available as part of Designer from March 2003. The lastest release of Designer, viz Designer 10g (9.0.4.4) and the equivalent 9i and 6i releases, all now avialable on OTN, have additional support for the ROB. This offers the ability to save and ERD or Server Model Diagram directly to the ROB.
    You do need to add the "hotpost" functionality manually. The ROB help gives a step by step apporach on adding these hotspots. There are a number of demos on the Designer demo page on using the ROB and configuring the App Server to use it. http://otn.oracle.com/products/designer/demos.htm
    Regards
    Sue

  • Data modeling with calculated filelds

    Hi,
    I have a requirement where I have to model the (tables?) for my huge warehouse data base to reflect some recomputed features for my clients business
    It would be easy for me to explain by giving some table structure along with some data.
    My base table looks like following...
    ARTICLE_NUMBER     YEAR_AND_WEEK     SALES_QUANTITY     SALES_PRICE
       10000001          201140          110          24.3
       10000002          201140          120          13.5
       10000003          201140          100          5.7
       20000001          201140          80          57.1
       20000002          201140          70          28.9
       20000003          201140          60          56.3Following are the things I have to model
    1) Need to have 'Previous year_and_week' values along with current. Tried this to bring in reporting rather then at DB level but taking long time to compute and decide to store them physically instead of calculation during the run-time. Like following way....
    ARTICLE_NUMBER     YEAR_AND_WEEK     SALES_QUANTITY     SALES_PRICE     PREV_YEAR_AND_WEEK     PREV_SALES_QUANTITY     PREV_SALES_PRICE
       10000001     201240          110          24.3             201140                    110               24.3
       10000002     201240          120          13.5             201140                    120               13.5
       10000003     201240          100           5.7             201140                    100               5.7
       10000004     201240          100           5.7             201140                    NULL          NULL
       20000001     201240          NULL           NULL            201140                    80               57.1
       20000002     201240          70          28.9             201140                    70               28.9
       20000003     201240          60          56.3             201140                    60               56.3Things to note here is few articles may not be there in the future year and may few new articles come as well. This will effect next aggregate level for article where we have to show the sum of article values at Product level which is the next level of hierarchy. For assumption take 1000000* range as one Product and 2000000* as another product then aggregation will be summed values of these.
    2) Need to show additional columns for currency columns to show conversion values to Euro, like for SALES_PRICE column we need additional column SALES_PRICE_EURO ( converted from local currency to Euro). Additional challenge here is business wants a static EURO conversion each year, means all EURO column values needs an updated values at every year.
    3) Third one is truly complected one to understand, but let me try. As this data granularity is week level, business don not want to do comparison some results for two weeks i.e. first&Last weeks of the year. I have a solution in my mind for this to use one degenerated dimension column to show at every fact record whether that week is first or last and use 11g new feature virtual columns to compute COMP columns.
    so the end of additional columns for just one SALES_PRICE will be like this
    SALES_PRICE     SALES_PRICE_EURO   PREV_SALES_PRICE     PREV_SALES_PRICE_EURO  SALES_PRICE_COMPLooks very complex requirement ! isn’t it?
    Appreciate your inputs.
    Thanks
    Hesh

    I don't think I understand it at all, but if you are looking for an example of how to use virtual columns to create a function-based index on a limited subset of the data, see http://www.oracle.com/technetwork/issue-archive/2012/12-jul/o42asktom-1653097.html
    Trying to optimize or denormalize too early is always a danger, but sometimes DW's and aggregations make for odd bedfellows.

Maybe you are looking for

  • Strange Error message

    Hiya, anyone know what this means? Error reading/writing file "com.apple.logic.pro.cs": Logical end-of-file reached during read operation. I filled up my Mac HD drive (boot drive) so I moved my Logic song files to another partition on the same drive

  • Unicode characters with accents won't display in Java Swing applications

    I'm using FreeMind (a Java Swing application) and I need to enter classical Greek characters with accent marks. When I type an accented Greek character, FreeMind displays the unaccented character. However, I can type the accented character in MS Word

  • Apple's free iPod mini offer?

    I'm going to purchase a new 20" iMac G5 and noticed that Apple has an offer to get a free iPod mini after mail-in rebate with the purchase of a Mac. Since the mini is discontinued, does this offer now apply to the same priced iPod nano?

  • OBIEE 11G - Usage Tracking - Table S_NQ_DB_ACCT

    Hi I successfully set up usage tracking in Obiee 11 and the table S_NQ_ACCT gets a lot of new records. Basically it's working. In the nqserver.log I get some errors concerning a new table S_NQ_DB_ACCT: [nQSError: 17001] Oracle Error code: 942, messag

  • Fall back to DNS if node in HOSTS file doesn't respond

    I have a server farm in which the servers talk to each other on a private backbone (via hosts files), but the clients talk to the servers on a second NIC via AD/DNS. Is there a way to have the servers fail over to DNS if entries in the hosts files do