`
jgtang82
  • 浏览: 401925 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

SAP BW Certification questions(zt)

阅读更多

From :
https://www.sdn.sap.com/irj/sdn/thread?threadID=18126
http://qmhiro.itpub.net/post/35676/408441

SAP BW Certification questions
Hello Everone, Here are some general questions that I have gathered. These are NOT Copyrighted Material. If there is a problem with these please let me know, and also note that these have been compiled from various sources so the grammer is not all that great. IF YOU FIND any of the answers to be wrong please do let me know. I have many more if needed.

1. What are the extractor types?
• Application Specific
o BW Content FI, HR, CO, SAP CRM, LO Cockpit
o Customer-Generated Extractors
LIS, FI-SL, CO-PA
• Cross Application (Generic Extractors)
o DB View, InfoSet, Function Module

2. What are the steps involved in LO Extraction?
• The steps are:
o RSA5 Select the DataSources
o LBWE Maintain DataSources and Activate Extract Structures
o LBWG Delete Setup Tables
o 0LI*BW Setup tables
o RSA3 Check extraction and the data in Setup tables
o LBWQ Check the extraction queue
o LBWF Log for LO Extract Structures
o RSA7 BW Delta Queue Monitor

3. How to create a connection with LIS InfoStructures?
• LBW0 Connecting LIS InfoStructures to BW

4. What is the difference between ODS and InfoCube and MultiProvider?
• ODS: Provides granular data, allows overwrite and data is in transparent tables, ideal for drilldown and RRI.
• CUBE: Follows the star schema, we can only append data, ideal for primary reporting.
• MultiProvider: Does not have physical data. It allows to access data from different InfoProviders (Cube, ODS, InfoObject). It is also preferred for reporting.

5. What are Start routines, Transfer routines and Update routines?
• Start Routines: The start routine is run for each DataPackage after the data has been written to the PSA and before the transfer rules have been executed. It allows complex computations for a key figure or a characteristic. It has no return value. Its purpose is to execute preliminary calculations and to store them in global DataStructures. This structure or table can be accessed in the other routines. The entire DataPackage in the transfer structure format is used as a parameter for the routine.
• Transfer / Update Routines: They are defined at the InfoObject level. It is like the Start Routine. It is independent of the DataSource. We can use this to define Global Data and Global Checks.

6. What is the difference between start routine and update routine, when, how and why are they called?
• Start routine can be used to access InfoPackage while update routines are used while updating the Data Targets.

7. What is the table that is used in start routines?
• Always the table structure will be the structure of an ODS or InfoCube. For example if it is an ODS then active table structure will be the table.

8. Explain how you used Start routines in your project?
• Start routines are used for mass processing of records. In start routine all the records of DataPackage is available for processing. So we can process all these records together in start routine. In one of scenario, we wanted to apply size % to the forecast data. For example if material M1 is forecasted to say 100 in May. Then after applying size %(Small 20%, Medium 40%, Large 20%, Extra Large 20%), we wanted to have 4 records against one single record that is coming in the info package. This is achieved in start routine.

9. What are Return Tables?
• When we want to return multiple records, instead of single value, we use the return table in the Update Routine. Example: If we have total telephone expense for a Cost Center, using a return table we can get expense per employee.

10. How do start routine and return table synchronize with each other?
• Return table is used to return the Value following the execution of start routine

11. What is the difference between V1, V2 and V3 updates?
• V1 Update: It is a Synchronous update. Here the Statistics update is carried out at the same time as the document update (in the application tables).
• V2 Update: It is an Asynchronous update. Statistics update and the Document update take place as different tasks.
o V1 & V2 don’t need scheduling.
• Serialized V3 Update: The V3 collective update must be scheduled as a job (via LBWE). Here, document data is collected in the order it was created and transferred into the BW as a batch job. The transfer sequence may not be the same as the order in which the data was created in all scenarios. V3 update only processes the update data that is successfully processed with the V2 update.

12. What is compression?
• It is a process used to delete the Request IDs and this saves space.

13. What is Rollup?
• This is used to load new DataPackages (requests) into the InfoCube aggregates. If we have not performed a rollup then the new InfoCube data will not be available while reporting on the aggregate.

14. What is table partitioning and what are the benefits of partitioning in an InfoCube?
• It is the method of dividing a table which would enable a quick reference. SAP uses fact file partitioning to improve performance. We can partition only at 0CALMONTH or 0FISCPER. Table partitioning helps to run the report faster as data is stored in the relevant partitions. Also table maintenance becomes easier. Oracle, Informix, IBM DB2/390 supports table partitioning while SAP DB, Microsoft SQL Server, IBM DB2/400 do not support table portioning.

15. How many extra partitions are created and why?
• Two partitions are created for date before the begin date and after the end date.

16. What are the options available in transfer rule?
• InfoObject
• Constant
• Routine
• Formula

17. How would you optimize the dimensions?
• We should define as many dimensions as possible and we have to take care that no single dimension crosses more than 20% of the fact table size.

18. What are Conversion Routines for units and currencies in the update rule?
• Using this option we can write ABAP code for Units / Currencies conversion. If we enable this flag then unit of Key Figure appears in the ABAP code as an additional parameter. For example, we can convert units in Pounds to Kilos.

19. Can an InfoObject be an InfoProvider, how and why?
• Yes, when we want to report on Characteristics or Master Data. We have to right click on the InfoArea and select “Insert characteristic as data target”. For example, we can make 0CUSTOMER as an InfoProvider and report on it.

20. What is Open Hub Service?
• The Open Hub Service enables us to distribute data from an SAP BW system into external Data Marts, analytical applications, and other applications. We can ensure controlled distribution using several systems. The central object for exporting data is the InfoSpoke. We can define the source and the target object for the data. BW becomes a hub of an enterprise data warehouse. The distribution of data becomes clear through central monitoring from the distribution status in the BW system.

21. How do you transform Open Hub Data?
• Using BADI we can transform Open Hub Data according to the destination requirement.

22. What is ODS?
• Operational DataSource is used for detailed storage of data. We can overwrite data in the ODS. The data is stored in transparent tables.

23. What are BW Statistics and what is its use?
• They are group of Business Content InfoCubes which are used to measure performance for Query and Load Monitoring. It also shows the usage of aggregates, OLAP and Warehouse management.

24. What are the steps to extract data from R/3?
• Replicate DataSources
• Assign InfoSources
• Maintain Communication Structure and Transfer rules
• Create and InfoPackage
• Load Data

25. What are the delta options available when you load from flat file?
• The 3 options for Delta Management with Flat Files:
o Full Upload
o New Status for Changed records (ODS Object only)
o Additive Delta (ODS Object & InfoCube)

分享到:
评论

相关推荐

    SAP MM Certification Questions

    SAP MM Certification Questions, Answers, and Explanations

    Wiley - Sap Bw Certification_A BIW Student GuideBW认证考试指南

    SAP BW Certification--- A Business Information Warehouse Study Guide

    SAP BW4HANA标准建模指南.pdf

    标题所指的"SAP BW4HANA标准建模指南.pdf"中蕴含的知识点如下: 首先,SAP BW/4HANA是一种面向数据仓库的商务智能解决方案,是SAP Business Warehouse (SAP BW) 的新一代产品。BW4HANA针对与SAP HANA数据库的协同...

    (Wiley)SAP BW Certification - A Business Information Warehouse Study Guide, 2002

    总之,《(Wiley)SAP BW Certification - A Business Information Warehouse Study Guide, 2002》是一本全面介绍SAP BW技术和应用的重要参考书籍,对于想要深入了解或掌握SAP BW的专业人士来说是非常宝贵的资源。

    SAP Basis Certification Questions

    从提供的文件内容来看,本书名为《SAP Basis Certification Questions》,作者通过其经历分享了在SAP项目中筛选不同资源的经验,特别是在招聘SAP Basis专业人员时所用到的面试技巧和问题。在面试中,作者会询问应聘...

    SAP BW four HANA 系统课程学习 1

    SAP BW/4 HANA是SAP公司推出的企业数据仓库解决方案,是SAP Business Warehouse(BW)的第四代产品,专为与SAP HANA数据库集成而设计。SAP HANA是一款高性能的内存计算平台,允许数据在内存中进行存储和处理,从而...

    SAP BW 数据源介绍及增强

    在SAP Business Warehouse (BW)系统中,数据源是数据集成和分析的核心组成部分。本文将深入探讨SAP BW数据源的介绍以及增强方法。 首先,SAP R3数据源是BW系统获取数据的主要来源之一。R3是SAP的ERP(企业资源规划...

    SAP BW AND ETL GUIDE.pdf

    ### SAP BW 和 ETL 指南 #### SAP BW 企业数据仓库概述 SAP BW (Business Warehouse) 是一个强大的企业级数据仓库解决方案,旨在帮助组织整合来自不同来源的数据,并提供一致、可靠的信息以支持决策制定。SAP BW ...

    sap bw sap bw sap bw

    sap bw sap bw sap bw

    SAP BW4HANA正版英文.pdf

    SAP BW自发布以来经历了多个版本的迭代,从最初的SAP BW Release 1.0到后来的SAP BW 7.0至7.3,直至最新的SAP BW7.4和7.5,已经开始利用SAP HANA进行高性能的数据处理。SAP BW/4HANA正是在此基础上的进一步优化,...

    SAP BW Analysis插件包64位下载AOFFICE28SP11_0-70004973.rar

    标题中的"SAP BW Analysis插件包64位下载AOFFICE28SP11_0-70004973.rar"指的是SAP Business Warehouse (BW) 的Analysis插件,适用于64位操作系统的Microsoft Office环境,特别是Excel。这个插件的主要功能是将SAP BW...

    SAP BW/4HANA Technical Overview

    【SAP BW/4HANA 技术概览】 SAP BW/4HANA是SAP推出的新一代数据仓库应用,旨在帮助企业实现即时数字化运营。它不仅支持传统的本地部署方式,还通过Amazon Web Services(AWS)和SAP HANA Enterprise Cloud(SAP ...

    SAP BW配置及操作手册(BW中文图文教程)

    SAP_BW配置及操作手册:了解BW的基本概念和实现原理,举例说明bw的详细配置过程

    SAP BW 经典教程

    SAP BW,全称为SAP Business Warehouse,是SAP公司提供的一个全面的数据仓库解决方案,用于企业级的数据管理和分析。这个经典教程将深入介绍SAP BW的各个方面,包括建模、查询、实施方法以及其核心功能和特点。 ...

    SAP BW处理链

    SAP BW(Business Warehouse)是SAP公司提供的企业级数据仓库解决方案,用于集中管理企业的业务数据,并提供分析和报告功能。SAP BW处理链是其中的一项重要功能,它旨在自动化处理数据仓库中的数据抽取、转换和加载...

    SAP BW310 翻译版

    《SAP BW310 翻译版》是一份由个人翻译的SAP BW310标准教材的中文版,旨在帮助中国用户更好地理解和应用SAP Business Warehouse(BW)系统。SAP BW是一个用于企业数据仓库构建和分析的强大工具,它提供了数据整合、...

    sap-basis-certification-questions-sap-basis-interview-questions-answers-and-explanations

    SAP Basis Interview Questions 在进行 SAP Basis 的面试准备时,面试官通常会关注应聘者对 SAP Basis 的基础知识和实践经验的理解。例如: - **问题示例**:“请简要介绍 SAP Basis 并解释它的主要功能。” - **...

    SAP BW4HANA Content

    SAP BW4HANA Content SAP BW4HANA 是 SAP 公司推出的业务智能解决方案,旨在帮助企业快速部署业务智能应用程序,提高业务决策的速度和准确性。BW4HANA Content 是 SAP BW4HANA 的一个重要组件,负责提供业务智能...

Global site tag (gtag.js) - Google Analytics