Diff b/w Data warehouse and Business Warehouse

Hi all,
what is the Diff b/w Data warehouse and Business Warehouse?

hi..
The diferrence between Datawarehousing and Business Warehouse are as follows.
DataWarehousing is the concept and BIW is a tool that uses this concept in Business applicaitons.
DataWarehousing allows you to analyze tons of data (millions and millions of records of data) in a convinent and optimum way, it is called BIW when applied to Business applications like analyzing the sales of a company.
Advantages- Consedering the volume of business data, BIW allows you to make decisions faster, I mean you can analyze data faster. Support for multiple languges easy to use and so on.
Refer this
Re: WHAT IS THE DIFFERENCE BETWEEN BIW & DATAWAREHOUSING
hope it helps...

Similar Messages

  • Basic difference in installing R/3 and Business Warehouse server

    What is the basic difference in installing R/3 and Business Warehouse server. What are the files that we use in each case.

    Hi,
    Pls check service.sap.com/instguides
    Eddy
    PS.
    Put yourself on the SDN world map (http://sdn.idizaai.be/sdn_world/sdn_world.html) and earn 25 points.
    Spread the wor(l)d!

  • About Business Intelligence and Business Warehouse.

    Greetings Gentilemen,,
    I'm currently working as an ABAP Consultant, but i want to get information about Business Intelligence and Business Warehouse because I want to pursue my career as a functional consultant.
    What do i need to study and do i have to get access to BW system to do some self studying ?!
    TIA

    Hi
    You're on the right track. The Oracle 11g database does indeed come with OWB. Out of the box, OWB can and will work with OLAP. However, are you licensed for OLAP? That is an add-on to the standard Oracle database license and, if I'm not mistaken, a separate install option too. I'm not 100% certain but I don't think the base Oracle database installer gives you the OLAP objects, I think you have to choose the custom install. Please make sure you buy the right license though.
    As for ad-hoc querying and reporting, Discoverer will do you just fine. It is very reasonably priced and, as you say, it is part of the Oracle BI Standard Edition.
    BI Enterprise Edition is the top of the range Oracle model for BI. It can do the same as Discoverer plus some - at a price! Personally, if you only want to work with some ad-hoc queries I would start out with Discoverer as it is the easiest to install and learn. Its also the cheapest entry point into the BI world. Later, if you decide that Discoverer is not for you then you can pay the BI EE license fee and upgrade. Oracle will even have tools that will allow you to upgrade your metadata and existing reports. Therefore, don't think that by starting out with Discoverer that you will be locking yourself into that tool because you will not.
    Best wishes
    Michael

  • Diff in functionality betwen centralised and decentralised Warehouse magmt

    Hi Gurus,
      Could anybody clarify the difference in functionality between centralized and decentralized warehouse management linked with inventory management in SAP System.
      mail me related doc or pdf to mai ID: [email protected]
    fFull points for answer
    regards,
    Venkatesh

    Hello Venkatesh,
    Functionality are same in centralized warehouse management and decentralized management, but is all about the volume of transactions, system performance and independency.
    The following document will give you very good idea about the decentralized warehouse management.
    http://www.catalystinternational.com/Content/Knowledge_Center/Downloads/whitepapers/dWM_Whitepaper.pdf
    Hope this helps.
    Regards
    Arif Mansuri

  • Transfer order of multiple materials between WM and MM warehouses

    Hi
    i have a requirement to manage with a custom program or with standard transaction the transfer of multiple materials (KITS) between WM warehouse and MM warehouse and inside the same warehouse . How can i achieve this functionality
    Can you advice ?
    thanks in advance

    can you describe in a more technical way what you mean by "movement between WM warehouse and MM warehouse"
    Maybe you can give an example how you do that for a single movement

  • Data types and data objects

    diff b/w data types and data objects

    hi prasanth,
    Data Types and Data Objects
    Programs work with local program data – that is, with byte sequences in the working memory. Byte sequences that belong together are called fields and are characterized by a length, an identity (name), and – as a further attribute – by a data type. All programming languages have a concept that describes how the contents of a field are interpreted according to the data type.
    In the ABAP type concept, fields are called data objects. Each data object is thus an instance of an abstract data type. There are separate name spaces for data objects and data types. This means that a name can be the name of a data object as well as the name of a data type simultaneously.
    Data Types
    Data types are templates for creating data objects. Data types can be defined independently in the ABAP program or in the ABAP Dictionary. As attributes of a data object, data types can also exist in a non-independent state. Data types do not use any memory space for work data, but may require memory for administration information.
    As well as occurring as attributes of a data object, data types can also be defined independently. You can then use them later on in conjunction with a data object. The definition of a user-defined data type is based on a set of predefined elementary data types. You can define data types either locally in the declaration part of a program using the TYPESstatement) or globally in the ABAP Dictionary. You can use your own data types to declare data objects or to check the types of parameters in generic operations.
    All programming languages distinguish between various types of data with various uses, such as ….. type data for storing or displaying values and numerical data for calculations. The attributes in question are described using data types. You can define, for example, how data is stored in the repository, and how the ABAP statements work with the data.
    Data types can be divided into elementary, reference, and complex types.
    a. Elementary Types
    These are data types of fixed or variable length that are not made up of other types.
    The difference between variable length data types and fixed length data types is that the length and the memory space required by data objects of variable length data types can change dynamically during runtime, and that these data types cannot be defined irreversibly while the data object is being declared.
    Predefined and User-Defined Elementary Data Types
    You can also define your own elementary data types in ABAP using the TYPES statement. You base these on the predefined data types. This determines all of the technical attributes of the new data type. For example, you could define a data type P_2 with two decimal places, based on the predefined data type P. You could then use this new type in your data declarations.
    b. Reference Types
    Reference types are deep data types that describe reference variables, that is, data objects that contain references. A reference variable can be defined as a component of a complex data object such as a structure or internal table as well as a single field.
    c. Complex Data Types
    Complex data types are made up of other data types. A distinction is made here between structured types and table types.
    Data Objects
    A data object is an instance of a data type and occupies as much memory space as its type specifies. An ABAP program only works with data that is available as content of data objects. Data objects are either created implicitly as named data objects, or exanonymous data objects using CREATEDATA.
    Data objects are the physical units with which ABAP statements work at runtime. The contents of a data object occupy memory space in the program. ABAP statements access these contents by addressing the name of the data object and interpret them according to the data type.. For example, statements can write the contents of data objects in lists or in the database, they can pass them to and receive them from routines, they can change them by assigning new values, and they can compare them in logical expressions.
    Each ABAP data object has a set of technical attributes, which are fully defined at all times when an ABAP program is running (field length, number of decimal places, and data type). You declare data objects either statically in the declaration part of an ABAP program (the most important statement for this is DATA), or dynamically at runtime (for example, when you call procedures). As well as fields in the memory area of the program, the program also treats literals like data objects.
    A data object is a part of the repository whose content can be addressed and interpreted by the program. All data objects must be declared in the ABAP program and are not persistent, meaning that they only exist while the program is being executed. Before you can process persistent data (such as data from a database table or from a sequential file), you must read it into data objects first. Conversely, if you want to retain the contents of a data object beyond the end of the program, you must save it in a persistent form.
    Declaring Data Objects
    Apart from the interface parameters of procedures, you declare all of the data objects in an ABAP program or procedure in its declaration part. These declarative statements establish the data type of the object, along with any missing technical attributes. This takes place before the program is actually executed. The technical attributes can then be queried while the program is running.
    The interface parameters of procedures are generated as local data objects, but only when the procedure is actually called. You can define the technical attributes of the interface parameters in the procedure itself. If you do not, they adopt the attributes of the parameters from which they receive their values.
    ABAP contains the following kinds of data objects:
    a. Literals
    Literals are not created by declarative statements. Instead, they exist in the program source code. Like all data objects, they have fixed technical attributes (field length, number of decimal places, data type), but no name. They are therefore referred to as unnamed data objects.
    b. Named Data Objects
    Data objects that have a name that you can use to address the ABAP program are known as named objects. These can be objects of various types, including text symbols, variables and constants.
    Text symbols are pointers to texts in the text pool of the ABAP program. When the program starts, the corresponding data objects are generated from the texts stored in the text pool. They can be addressed using the name of the text symbol.
    Variables are data objects whose contents can be changed using ABAP statements. You declare variables using the DATA, CLASS-DATA, STATICS, PARAMETERS, SELECT-OPTIONS, and RANGESstatements.
    Constants are data objects whose contents cannot be changed. You declare constants using the CONSTANTSstatement.
    c. Anonymous Data Objects
    Data objects that cannot be addressed using a name are known as anonymous data objects. They are created using the CREATE DATAstatement and can be addressed using reference variables.
    d. System-Defined Data Objects
    System-defined data objects do not have to be declared explicitly - they are always available at runtime.
    e. Interface Work Areas
    Interface work areas are special variables that serve as interfaces between programs, screens, and logical databases. You declare interface work areas using the TABLES and NODESstatements.
    regards,
    sravanthi

  • People and Business Widget not working

    I cannot get these to work; I get the following messages:
    People: "Data Unavailable" and
    Business: "No Results Found"
    Please advise...
    Imac,
    Intel Core 2 Duo
    2006 Intel 10.6.8

    These are Apple widgets that came bundled with dashboard. I used mine often now it's not working.
    If Apple just disabled it  with out so much as a heads up, that's not OK and not a way to treat loyal customers.

  • Portal Activity Reporting and SAP Business Warehouse

    Hi,
    Does anyone out there know if SAP has or plans in the near future to deliver Portal Activity Reporting content via SAP Business Warehouse?
    I would have thought BW would have been the ideal solution to enable some "out of the box" Portal Content in terms of extracting the data from the tables used for the Portal Activity reports, and then extracting them to BW for slicing/dicing & Presentation.
    The current standard Portal Activity reporting does not supply what we need. We don't want to spend time and money developing this ourselves if SAP has plans to deliver it in the near future.
    Any news please?
    Cheers, Phil G.

    Hi,
    Check this blog which tells about the future of Activity Reporting..
    The Final Word (Hopefully) on the Portal Activity Report
    John

  • Please help to get onhand stock report with last purchase and billed date warehouse and item wise

    please help to get onhand stock report with last purchase and billed date warehouse and item wise

    Hi Rajeesh Ambadi...
    Try This
    SELECT distinct T0.ITEMCODE , t1.ItemName, T0.ONHAND as 'Total Qty',  
      T1.LASTPURDAT ,t1.LastPurPrc
    FROM OITW T0 INNER JOIN OITM T1 ON T0.ITEMCODE = T1.ITEMCODE
    INNER JOIN OITB T2 ON T1.ITMSGRPCOD=T2.ITMSGRPCOD left join ibt1 t3 on t3.itemcode = t0.itemcode and t3.whscode = t0.whscode
    WHERE
    T0.ONHAND>0
    AND T0.WhsCode ='[%0]'
    Hope Helpful
    Regards
    Kennedy

  • Data Warehouse and ETL tools for data verification ?

    Data Warehouse and ETL tools for data verification ?
    How need to to data verification using ETL tool ? Also how to relate this thing to datawaehouse ?
    Thanks in Advance

    Hi  Shyamal Kumar,
    1)  BW it self  facilitates to do the ETL (Extraction Transformation Loading)  steps:
         example:
                     Extraction  - from SAP or other data bases
                     Transformation - using transfer rules, Updates rules
                     Loading  -  Loading into ODS, Cube, master data
    2) Typically used ETL tools in the industry are:
         a)   datastage from Ascential (owned by IBM)
         b)   Informatica
         c)   Mercator
    Regards, BB

  • Differences between operational systems data modeling and data warehouse da

    Hello Everyone,
    Can anybody help me understand the differences between operational systems data modeling and data warehouse data modeling>
    Thanks

    Hello A S!
    What you mean is the difference between modelling after normal form like in operational systems (OLTP) e. g. 3NF and modelling a InfoCube in a data warehouse (OLAP)?
    While in a OLTP you want to have data tables free of redundance and ready for transactions meaning writing and reading few records often, in an OLAP-system you need to read a lot of data for every query you do on a database. Often in an OLAP-system you aggregate these amounts of data.
    Therefore you use another principle for these database scheme. This is called star schema. This means that you have one central table (called fact table) which holds the key figures and have keys to another tables with characteristics. These other tables are called dimension tables. They hold combinations of the characteristics. Normally you design it that your dimensions are small, so the access  on the data is more efficent.
    the star scheme in SAP BI is a little more complex than explained here but it follows the same concept.
    Best regards,
    Peter

  • Benefits of SAP Business Warehouse Reporting compared with the Query-tools?

    Hello experts,
    I've been creating reports with SAP Query tools, but been faced with few problems. First of all, there are restricted possibilities in terms of joining tables, and thus I cannot include all the data required for the report.
    One solution for this would have been to create separate queries and join the data together in Excel. The problem with this is that there exists no common field that would make sense as for a selection criterion. If the selection criterion is different in different queries, there is the danger of combining false data together, which would eventually result with distorted data. 
    So I was wondering, could anyone briefly tell me if SAP Business Warehouse reporting would solve these problems? And what other benefits would it provide compared with the SAP Query? I'd urgently need to know if it would be a beneficial investment for the company, since I haven't found solutions for the problems occurred in the creation of reports.
    Thank you in advance for you help!
    Maria

    The answers are yes - and thousands of companies have gone down this route
    Puttingin BW is a strategic aim of the comapny and not to be thought about and discussed in a BI forum such as this
    The costs of implementation and hardware will no doubt make your eyes water.
    To be quite honest SAP BI is a "no brainer" as most of the new e-SOA and new R3 modules reply on BW for their reporting needs

  • Need for helps in Business Warehouse

    Hihi,
    I would like to request for experts out there to help me up on this problem:
    Step 1 : From Business Warehouse, i tried to pull the records (infopackage) from ECC with the tariff code "abc123" -> failed
    Step 2: I tried again by set the conditions to pull  the records with tariff "abc123" and date : before april -> it is work!!
    As per above description, it proved that the failure in data pulling is not because of the tariff code, does you all have any solution for me on this? I need this urgently.
    [I confirmed the data for APRIL, MAY have no problem and in ECC (RSO2) - the function module do pick up those records (which didnt show up in BW site)].
    Hope can hear from you all soon.
    Edited by: MOPZ Narayanan on May 18, 2010 10:06 AM

    Hello,
    Are you getting any ST22 dumps while loading data? Please check ST22.
    You may try to load data by reducing the data packet size. Go to(Infopackage) Scheduler -> Data Source. Default Data Transfer and reduce the packet size there. Also try loading it till PSA only and then load above.
    It would be difficult to analyze why there is error for only 1 record but most probably it would be the packet size, so try reducing it.
    Also go through the below forum discussions to further drill-down into the issue details:
    [Caller 70 is missing]
    [Caller 70 is missing]
    [Re: Error Caller 70" is missing when loading delta to DSO]
    Hope it helps..  All the best.
    Regards,
    Pratap Sone

  • Regarding Business Warehouse

    hi every body
    i am in Business Warehouse.
    i was told to concentrate on Currency, Data Validation, Aggregates, Process Chains etc .
    will any one help in sending the materials of the above and also please say what else topics are important and materials of that.
    my mail id is [email protected]
    regards and wishes
    sridhar

    Hi Sridhar,
    Check out this document it ll help you,
    http://help.sap.com/bp_biv170/documentation/SAP_BW_3.5_Functoin_Detail.pdf
    Also do check these links too,
    For Process chains,
    http://help.sap.com/saphelp_nw04/helpdata/en/8f/c08b3baaa59649e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/6e/192756029db54192427cf6853c77a7/content.htm
    For Aggregates,
    http://help.sap.com/saphelp_nw04/helpdata/en/7d/eb683cc5e8ca68e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/b8/23813b310c4a0ee10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ab/5ab43b4c4beb56e10000000a114084/content.htm
    http://help.sap.com/saphelp_erp2004/helpdata/en/80/1a6791e07211d2acb80000e829fbfe/content.htm
    Currency Translation,
    http://help.sap.com/saphelp_nw04/helpdata/en/ec/076f3b6c980c3be10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a6806e07211d2acb80000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a6507e07211d2acb80000e829fbfe/content.htm
    Data Validation,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/3c/50b512e4174becbaf2b1c856eb1290/content.htm
    Reward points if found useful,
    Regards,
    Mani.

  • Error message when processing in the Business Warehouse

    hi everybody!!
    this was the error i got.plz let me know the correction process.plz explain stepwise.
    thank u,
    jack.
    Error message when processing in the Business Warehouse
    Diagnosis
    An error occurred in the SAP BW when processing the data. The error is documented in an error message.
    System response
    A caller 01, 02 or equal to or greater than 20 contains an error meesage.
    Further analysis:
    The error message(s) was (were) sent by:
    Update

    Hi,
    This issue is in BI when you are trying to load data from one object to other Object
    example: ods to cube
    We need the Log information which you can find that in the monitor screen Status tab "Push button"
    Regards
    Hari

Maybe you are looking for

  • Define pattern from selection PSE7

    I have both PSE6 and PSE7. Is there a reason that the area for "define pattern from selection" is grayed out in PSE7 but not in PSE7. Is there something I have to change in the settings to get it to work in PSE7?

  • Multiple pop emails not displaying in Mac mail

    I have multiple pop mail accounts set up, but I can only view one of the accounts? I can select the other pop mail inboxes, but it only displays the one inbox?

  • My scripted pattern don't show up in Edit fill

    I have photoshop CC and have seen the videos and can not access frames or trees... and they never show up in Pattern fills as the third option.

  • OAM Basic LDAP Authentication

    I have configuered a policy domain with the defautl Basic Over LDAP authentication scheme. I Also create a "Role :Any one" on Authz expression and rule. I keep getting the Basic LDAP prompt even I enter right credentials. Did I miss anything? I haven

  • Split field values into range

    Hi, I have a 'Company Code' field in an input file that can contain 1 or multiple company codes, separated by comma (,). e.g it could be anything from '1105' to '1105,3000,2000,2200' etc up to about a max of 20 company codes. I don't think it's effic