100 sap hana interview questions

31
pdfcrowd.com open in browser PRO version Are you a developer? Try out the HTML to PDF API Wednesday, 19 December 2012 sap hana certification questions and answers Overview and Architecture of HANA What is HANA ? –High Performance Analytical Appliance - In memory computing engine In memory computing studio as a frontend for modeling and administration. HANA is connected to ERP systems, Frontend modeling studio can be used for load control and replication server management Two types of Relational Data stores in HANA : Row Store, Column Store SAP BOBJ tools can directly report on HANA Data from HANA can also be used in MS Excel - MDX Row Store – Traditional Relational Database. The difference is that all the rows are in memory in HANA where as they are stored in a hard drive in traditional databases. Column Store – The data is stored in columns like in SAP BWA Persistence Layer : In memory is great but it is volatile and data can be lost with power outage or hardware failures. To avoid this HANA has a Persistence Layer component which makes sure that all the data in memory is also store in a hard drive 0 More Next Blog» Create Blog Sign In

Upload: tupa-shakr

Post on 13-Jul-2016

198 views

Category:

Documents


9 download

DESCRIPTION

SAP HANA Interview questions

TRANSCRIPT

Page 1: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Wednesday 19 December 2012

sap hana certification questions and answers

Overview and Architecture of HANAWhat is HANA ndashHigh Performance Analytical Appliance - In memory computingengine

In memory computing studio as a frontend for modeling and administration

HANA is connected to ERP systems Frontend modeling studio can be used for loadcontrol and replication server management

Two types of Relational Data stores in HANA Row Store Column Store

SAP BOBJ tools can directly report on HANA

Data from HANA can also be used in MS Excel - MDX

Row Store ndash Traditional Relational Database The difference is that all the rows are inmemory in HANA where as they are stored in a hard drive in traditional databases

Column Store ndash The data is stored in columns like in SAP BWA

Persistence Layer In memory is great but it is volatile and data can be lost withpower outage or hardware failures To avoid this HANA has a Persistence Layercomponent which makes sure that all the data in memory is also store in a hard drive

0 More Next Blograquo Create Blog Sign In

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

which is not volatile

Session Management This component takes care of logon services

Two processing engines ndash Well data is in memory which is good but How do Iextractreport on the data HANA has two processing engines one is based on SQLwhich accepts SQL queries and the other one is based on MDX

HANA Supports Sybase Replication Server ndash Sybase Replication Server can be usedfor real time synchronization of data between ERP and HANA

Modeling StudioUsing Modeling Studio you can

Specify which tables are stored in HANA first part is to get the meta data and then scheduledata replication jobs

Manage Data Services to load the data from SAP BW and other 3rd party systems

Manage connections to ERP instances current release does not support connecting toseveral ERP instances

Use Data services to for the modeling

Do modeling in HANA itself (This is independent of Data services)

You can also do modeling can also be done in Business Objects Universes which isnothing but joining fact and dimensional tables

ReportingClient tools can access HANA directly Like MS EXCEL SAP BI 40 Reporting toolsDashboard Design Tool (Xcelsius) can also access HANA directly

Third party reporting tools can leverage ODBC JDBC and ODBO (for MDX requests) driversin HANA for reporting

HANA supports BICS interface

srinivas r Follow 1

View my completeprofile

About Me Copy Protected byShakil WahidProtectYours

2012 (12) December

(12)sap hana

certificationquestionsandanswers

SAP BPCWITH HANA

SAP HANA--INMEMORYDATABASEADMIN

SAP HANAADMINISTRATION

SAP BPCCONSOLIDATION

SAP BPC 100TERMINOLOGY

SAP BPCVERSIONS

SAP BPC 100NWOVERVIEW

Blog Archive

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Request Processing and Execution Control SQL Script MDX statements are passed to calculation models

Optimizer which is included in calculation engine optimizes for better performance

Calculation Engine

Modeler can define data sources as inputs and different operations (joinaggregation projection) on top of them for data manipulation

The calculation engine will break up a model into sub processes for optimizedperformance on cost based

System will use maximum resources to achieve max through put

Planning Engine Will be included in next release Will include planning functions likedistribute and copy functions

ROW StoreOne of the relational engines to store data in row format

Pure in-memory store (Future versions will also have an option of disk basedstore)

In memory object store (in future) for live cache functionality

Transactions Version Memory is the heart of row store

Row store architecture

Write operation mainly go into Transactional Version Memory

INSERT also writes to persisted segment

Moves visible version from memory to persisted segment

Clears outdated record versions from Transactional Version memory

Row Store tables have a primary index

Row ID maps to primary key

OVERVIEW

SAP BWREALTIMEINTERVIEWQSTampANSWEAR

SAP BWINTERVIEWQST

SAP BWINTERVIEWQST

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Secondary indexes can be created

Row ID contains the segment and the page for the record

Indexes in row store only exist in memory

Index definition stored with table meta

Column StoreImproves read functionality significantly also improves write functionality

Highly compressed data

No real files virtual files

Optimizer and Executer ndash Handles queries and execution plan

Delta data for fast write

Asynchronous delta merge

Consistent view Manager

Main store compressed and read optimized ndash Data is read from Main Store

Delta Store ndash Write optimized ndash for write operations

Asynchronous merge move the data from delta store to main store

Compression by create dictionary and applying further compression methods

Even during the merge operation the columnar table will still be available for read and writeoperations To fulfill this a second delta and main storage are used internally

Merge operation can also be triggered manually with an SQL command

Persistence LayerPersistence Layer is needed as Main memory is volatile

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Provides Backup and Restore functionality

One Persistency Layer takes care of both row and column stores

Regular Save Points

Logs capturing DB transactions since last save point

Actions during system restart

Last save point must be restored plus undo logs must be read anduncommitted transactions saved with last save point and apply redo logs

Complete content of row store is loaded into memory during start process

Flags can be set for column store to specify which tables are loaded duringsystem restart

ModelingModeling only possible for Column tables

Information Modeler only works for column tables

Replication servers create tables in column store per default

Data Services creates tables in column store per default

SQL to create column table Create COLUMN TABLE

Store can changed with ALTER TABLE

System tables are create where they fit best

Schema SYS -gt administrative table of engine

Tables from statistics server

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

In-Memory Computing StudioBuild with java based eclipse

Navigator to access different HANA systems on left Quick Launch View at the middle andProperties view at the bottom

Information Modeler Features

Database views

Choice to publish and consume at 4 levels of modeling

Attribute view analytic view

Physical tables and Information Models

Importexport models data source schemas mass and selective load

Landscapes

The models are just virtual definitions they dont store actual data

Analytic Views are like cube model where Transaction Data is connected to attribute view

Calculation View ndash With custom functions and calculations

Modeling Process Flow

Import Source System Metadata

Create Information Models

Consume using BICS SQL or MDX

Information Modeler Terminology

Attributes ndash Characteristics

Measure ndash Key Figures

Attribute Views ndash Dimensions

Analytic Views ndash Cubes

Calculation Views ndash Similar to Virtual provider concept in BW

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Hierarchies

Leveled ndash based on multiple attributes

Parent-child hierarchy

Analytic Privilege ndash Security Object

Navigation View

HANA instance -gt Hana server name and instance number -gt user databaseschema -gt views functions and tables

Information Models ndash Attribute Analytic Calculation Views and Analytic Privilege

Attribute View

Attributes add context to data

Attributes are modeled using attributes views

Can be regarded as Master Data Tables

Can be linked to fact tables in Analytical Views

A measure eg weight can be defined as an attributes

Table Joins and properties

Left outer right outer full outer or text table

Cardinality 11 N1 1N

Language Column

Analytic View

Similar to Cube

Analytic Views does not store any data The data is stored in column store tableor view based on Analytical View structure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Attributes and Measures ndash Like key figures

Data Preview ndash Similar to list cube functionality

Calculation View

Define table output Structure

Write SQL statement

Ensure the selected fields corresponds to previously defined outputstructures

SQL Scripts unlike SQL procedure cant change any data they are read only

Other Notes

External tools can connect to HANA using JDBC and ODBC drivers

HANA currently doesnt support complete MDX set it supports EXCEL 2010 standard MDX

BWA Hardware can be upgraded to HANA given that hardware is relatively new

BWA Licenses can be transferred to HANA

ERP and BW can be connected to HANA using Data services or Sybase Replication

No name space concept in HANA at this moment so two ERP instances cant be connectedto HANA However this issue can be avoided using data sources

CRM also can use HANA

Data from BW into HANA can be loaded into using Data Services and Info spokes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Additional Notes 1) No Aggregates where BWA is used Only flexible views

2) Benefits of SAP NetWeaver BW on HANA a Superior Reporting Performanceb Real-Time Data Accessc Simulate More and Plan Fasterd Superior Loading Performancee Simplified Maintenancef Modeling Flexibilityg HANA optimized InfoCube and Data Store Objects (DSO)h Acceleration via In-Memory Column Storagei Reduced admin tasks an lower TCOj Self-service access to all informationk Minimal training or disruptionl No Disruption to W application

3) SAP HANA is the only Persistence layer for SAP Business Suite and SAP NW BW4) Web Based Modeler called as Information Composer for business users to quickly build models5) SAP HANA ndash Backup Recovery = Point-in-time recovery6) Monitoring and Administration in SAP HANA is improved through Solution Manager integration

7) SAP HANA SP3 Highlights

a More End User Flexibilityi) Web Based Modeler (Information Composer)ii) User Interface improvements

b New Landscape Deployment options i) Enhanced back-up recoveryii) Simplified Deployment

c Extended Calculation Capability amp Performance i) Business Function Libraryii) Predictive Algorithm Libraryiii) Improved Loading Performance

d Further Support amp Monitoring Capabilities i) New tracing and debugging (within SAP HANA Model Studio)

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

ii) Monitoring and Administration (Integration to Solution Manager)

e Enhanced Security amp Compliance i) Secure Network Connectivityii) Comprehensive amp complaint user provisioningiii) Auditing Enhancementsiv) License Key

8) In-Memory Computing a Row and Column Storeb Compressionc Partitioningd No Aggregate Tablese Insert Only on Delta

9) SAP HANA In-Memory Computing can execute 64 things (threads) in parallel10) HANA = High Performance Analytical Appliance11) SAP HANA Modeling is based on SBO Information Designer (ldquoUniverserdquo)12) SAP HANA has Open Full ANSI 92 SQL and MDX13) SAP HANA for Marketing Users (CRM) = Leverages TREXBWA technology to conduct analysis on

prospect Master Data14) SAP HANA = Real-time integration of OLTP and ldquoIn-Memoryrdquo store15) POS = Point of Sale Analysis16) IMP = In-Memory Platform17) MPP = Massive Parallel Processing18) In-Memory in Parallel Analytic models from Production EDW can be brought into memory for agile

modeling and reporting19) Third Party Data (POS CDR) can be brought into memory for agile modeling and reporting

20) Todayrsquos System Landscape of SAP HANA a In-Memory in Parallel (Now) agrave SAP HANA 10b Primary Data Store for BW (short term) agrave SAP HANA 15c New Applications (short term) agrave SAP HANA 15d Real Time Data Feed (Medium term) agrave SAP HANA 20e Platform Consolidation (Medium term) agrave SAP HANA 20

21) SAP HANA delivers an In-Memory Calculation Engine with Data Compression that overcomes thechallenge of handling ever increasing data volumes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

22) BI Tools a BO Analysis edition for Microsoft Office = Multidimensional data analysis with

Microsoft Officeuser experience (Microsoft Excel)

b BO Analysis edition for OLAP = Multidimensional data analysis within a web-based environment

c BO Analysis edition for Application Design = Rich and Intuitive designenvironment for buildingpowerful analytical and planning BI applications

d BO Crystal Reports = Design well-formatted layout-focused reportse BO WEBI = Adhoc Interactive Reportingf BO Dashboards = Visualize complex data easily with interactive dashboardsg BO Explorer = Search relevant information and direct exploration of data

23) Crystal Reports WEBI SBOP Dashboards are able to leverage hierarchies in reports but arelacking deep hierarchial capabilities

24) SAP BO Explorer is available for the iPhonePad25) A ldquoWhat-ifrdquo scenario is the strength of SAP BO Dashboards26) a) SAP ERP agrave SLT (Replication Server) ----(Real Time Replication) agrave SAP HANA agrave SAP BO agrave

Presentationb) SAP BPC or Non-SAP agrave Data ServicesBODS (Near Real-time Replication) agrave SAP HANA agrave BOagrave Presentation

1) SAP HANA System Landscape A) Data Sources

i SAP ERP ii SAP Host Agent 720 iii Sybase Replication Agent (HP UNIX SLEX AIX)

B) LT System i NW 702

ii Add-on DMIS 2010_1_700

C) SAP HANA Appliance (SLES 11 SP1) i SAP HANA Database ndash Clients Studio ii SAP HANA Load Controller iii SAP Host Agent 720 iv Sybase Replication Server 155 + ECDA

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 2: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

which is not volatile

Session Management This component takes care of logon services

Two processing engines ndash Well data is in memory which is good but How do Iextractreport on the data HANA has two processing engines one is based on SQLwhich accepts SQL queries and the other one is based on MDX

HANA Supports Sybase Replication Server ndash Sybase Replication Server can be usedfor real time synchronization of data between ERP and HANA

Modeling StudioUsing Modeling Studio you can

Specify which tables are stored in HANA first part is to get the meta data and then scheduledata replication jobs

Manage Data Services to load the data from SAP BW and other 3rd party systems

Manage connections to ERP instances current release does not support connecting toseveral ERP instances

Use Data services to for the modeling

Do modeling in HANA itself (This is independent of Data services)

You can also do modeling can also be done in Business Objects Universes which isnothing but joining fact and dimensional tables

ReportingClient tools can access HANA directly Like MS EXCEL SAP BI 40 Reporting toolsDashboard Design Tool (Xcelsius) can also access HANA directly

Third party reporting tools can leverage ODBC JDBC and ODBO (for MDX requests) driversin HANA for reporting

HANA supports BICS interface

srinivas r Follow 1

View my completeprofile

About Me Copy Protected byShakil WahidProtectYours

2012 (12) December

(12)sap hana

certificationquestionsandanswers

SAP BPCWITH HANA

SAP HANA--INMEMORYDATABASEADMIN

SAP HANAADMINISTRATION

SAP BPCCONSOLIDATION

SAP BPC 100TERMINOLOGY

SAP BPCVERSIONS

SAP BPC 100NWOVERVIEW

Blog Archive

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Request Processing and Execution Control SQL Script MDX statements are passed to calculation models

Optimizer which is included in calculation engine optimizes for better performance

Calculation Engine

Modeler can define data sources as inputs and different operations (joinaggregation projection) on top of them for data manipulation

The calculation engine will break up a model into sub processes for optimizedperformance on cost based

System will use maximum resources to achieve max through put

Planning Engine Will be included in next release Will include planning functions likedistribute and copy functions

ROW StoreOne of the relational engines to store data in row format

Pure in-memory store (Future versions will also have an option of disk basedstore)

In memory object store (in future) for live cache functionality

Transactions Version Memory is the heart of row store

Row store architecture

Write operation mainly go into Transactional Version Memory

INSERT also writes to persisted segment

Moves visible version from memory to persisted segment

Clears outdated record versions from Transactional Version memory

Row Store tables have a primary index

Row ID maps to primary key

OVERVIEW

SAP BWREALTIMEINTERVIEWQSTampANSWEAR

SAP BWINTERVIEWQST

SAP BWINTERVIEWQST

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Secondary indexes can be created

Row ID contains the segment and the page for the record

Indexes in row store only exist in memory

Index definition stored with table meta

Column StoreImproves read functionality significantly also improves write functionality

Highly compressed data

No real files virtual files

Optimizer and Executer ndash Handles queries and execution plan

Delta data for fast write

Asynchronous delta merge

Consistent view Manager

Main store compressed and read optimized ndash Data is read from Main Store

Delta Store ndash Write optimized ndash for write operations

Asynchronous merge move the data from delta store to main store

Compression by create dictionary and applying further compression methods

Even during the merge operation the columnar table will still be available for read and writeoperations To fulfill this a second delta and main storage are used internally

Merge operation can also be triggered manually with an SQL command

Persistence LayerPersistence Layer is needed as Main memory is volatile

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Provides Backup and Restore functionality

One Persistency Layer takes care of both row and column stores

Regular Save Points

Logs capturing DB transactions since last save point

Actions during system restart

Last save point must be restored plus undo logs must be read anduncommitted transactions saved with last save point and apply redo logs

Complete content of row store is loaded into memory during start process

Flags can be set for column store to specify which tables are loaded duringsystem restart

ModelingModeling only possible for Column tables

Information Modeler only works for column tables

Replication servers create tables in column store per default

Data Services creates tables in column store per default

SQL to create column table Create COLUMN TABLE

Store can changed with ALTER TABLE

System tables are create where they fit best

Schema SYS -gt administrative table of engine

Tables from statistics server

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

In-Memory Computing StudioBuild with java based eclipse

Navigator to access different HANA systems on left Quick Launch View at the middle andProperties view at the bottom

Information Modeler Features

Database views

Choice to publish and consume at 4 levels of modeling

Attribute view analytic view

Physical tables and Information Models

Importexport models data source schemas mass and selective load

Landscapes

The models are just virtual definitions they dont store actual data

Analytic Views are like cube model where Transaction Data is connected to attribute view

Calculation View ndash With custom functions and calculations

Modeling Process Flow

Import Source System Metadata

Create Information Models

Consume using BICS SQL or MDX

Information Modeler Terminology

Attributes ndash Characteristics

Measure ndash Key Figures

Attribute Views ndash Dimensions

Analytic Views ndash Cubes

Calculation Views ndash Similar to Virtual provider concept in BW

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Hierarchies

Leveled ndash based on multiple attributes

Parent-child hierarchy

Analytic Privilege ndash Security Object

Navigation View

HANA instance -gt Hana server name and instance number -gt user databaseschema -gt views functions and tables

Information Models ndash Attribute Analytic Calculation Views and Analytic Privilege

Attribute View

Attributes add context to data

Attributes are modeled using attributes views

Can be regarded as Master Data Tables

Can be linked to fact tables in Analytical Views

A measure eg weight can be defined as an attributes

Table Joins and properties

Left outer right outer full outer or text table

Cardinality 11 N1 1N

Language Column

Analytic View

Similar to Cube

Analytic Views does not store any data The data is stored in column store tableor view based on Analytical View structure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Attributes and Measures ndash Like key figures

Data Preview ndash Similar to list cube functionality

Calculation View

Define table output Structure

Write SQL statement

Ensure the selected fields corresponds to previously defined outputstructures

SQL Scripts unlike SQL procedure cant change any data they are read only

Other Notes

External tools can connect to HANA using JDBC and ODBC drivers

HANA currently doesnt support complete MDX set it supports EXCEL 2010 standard MDX

BWA Hardware can be upgraded to HANA given that hardware is relatively new

BWA Licenses can be transferred to HANA

ERP and BW can be connected to HANA using Data services or Sybase Replication

No name space concept in HANA at this moment so two ERP instances cant be connectedto HANA However this issue can be avoided using data sources

CRM also can use HANA

Data from BW into HANA can be loaded into using Data Services and Info spokes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Additional Notes 1) No Aggregates where BWA is used Only flexible views

2) Benefits of SAP NetWeaver BW on HANA a Superior Reporting Performanceb Real-Time Data Accessc Simulate More and Plan Fasterd Superior Loading Performancee Simplified Maintenancef Modeling Flexibilityg HANA optimized InfoCube and Data Store Objects (DSO)h Acceleration via In-Memory Column Storagei Reduced admin tasks an lower TCOj Self-service access to all informationk Minimal training or disruptionl No Disruption to W application

3) SAP HANA is the only Persistence layer for SAP Business Suite and SAP NW BW4) Web Based Modeler called as Information Composer for business users to quickly build models5) SAP HANA ndash Backup Recovery = Point-in-time recovery6) Monitoring and Administration in SAP HANA is improved through Solution Manager integration

7) SAP HANA SP3 Highlights

a More End User Flexibilityi) Web Based Modeler (Information Composer)ii) User Interface improvements

b New Landscape Deployment options i) Enhanced back-up recoveryii) Simplified Deployment

c Extended Calculation Capability amp Performance i) Business Function Libraryii) Predictive Algorithm Libraryiii) Improved Loading Performance

d Further Support amp Monitoring Capabilities i) New tracing and debugging (within SAP HANA Model Studio)

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

ii) Monitoring and Administration (Integration to Solution Manager)

e Enhanced Security amp Compliance i) Secure Network Connectivityii) Comprehensive amp complaint user provisioningiii) Auditing Enhancementsiv) License Key

8) In-Memory Computing a Row and Column Storeb Compressionc Partitioningd No Aggregate Tablese Insert Only on Delta

9) SAP HANA In-Memory Computing can execute 64 things (threads) in parallel10) HANA = High Performance Analytical Appliance11) SAP HANA Modeling is based on SBO Information Designer (ldquoUniverserdquo)12) SAP HANA has Open Full ANSI 92 SQL and MDX13) SAP HANA for Marketing Users (CRM) = Leverages TREXBWA technology to conduct analysis on

prospect Master Data14) SAP HANA = Real-time integration of OLTP and ldquoIn-Memoryrdquo store15) POS = Point of Sale Analysis16) IMP = In-Memory Platform17) MPP = Massive Parallel Processing18) In-Memory in Parallel Analytic models from Production EDW can be brought into memory for agile

modeling and reporting19) Third Party Data (POS CDR) can be brought into memory for agile modeling and reporting

20) Todayrsquos System Landscape of SAP HANA a In-Memory in Parallel (Now) agrave SAP HANA 10b Primary Data Store for BW (short term) agrave SAP HANA 15c New Applications (short term) agrave SAP HANA 15d Real Time Data Feed (Medium term) agrave SAP HANA 20e Platform Consolidation (Medium term) agrave SAP HANA 20

21) SAP HANA delivers an In-Memory Calculation Engine with Data Compression that overcomes thechallenge of handling ever increasing data volumes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

22) BI Tools a BO Analysis edition for Microsoft Office = Multidimensional data analysis with

Microsoft Officeuser experience (Microsoft Excel)

b BO Analysis edition for OLAP = Multidimensional data analysis within a web-based environment

c BO Analysis edition for Application Design = Rich and Intuitive designenvironment for buildingpowerful analytical and planning BI applications

d BO Crystal Reports = Design well-formatted layout-focused reportse BO WEBI = Adhoc Interactive Reportingf BO Dashboards = Visualize complex data easily with interactive dashboardsg BO Explorer = Search relevant information and direct exploration of data

23) Crystal Reports WEBI SBOP Dashboards are able to leverage hierarchies in reports but arelacking deep hierarchial capabilities

24) SAP BO Explorer is available for the iPhonePad25) A ldquoWhat-ifrdquo scenario is the strength of SAP BO Dashboards26) a) SAP ERP agrave SLT (Replication Server) ----(Real Time Replication) agrave SAP HANA agrave SAP BO agrave

Presentationb) SAP BPC or Non-SAP agrave Data ServicesBODS (Near Real-time Replication) agrave SAP HANA agrave BOagrave Presentation

1) SAP HANA System Landscape A) Data Sources

i SAP ERP ii SAP Host Agent 720 iii Sybase Replication Agent (HP UNIX SLEX AIX)

B) LT System i NW 702

ii Add-on DMIS 2010_1_700

C) SAP HANA Appliance (SLES 11 SP1) i SAP HANA Database ndash Clients Studio ii SAP HANA Load Controller iii SAP Host Agent 720 iv Sybase Replication Server 155 + ECDA

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 3: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Request Processing and Execution Control SQL Script MDX statements are passed to calculation models

Optimizer which is included in calculation engine optimizes for better performance

Calculation Engine

Modeler can define data sources as inputs and different operations (joinaggregation projection) on top of them for data manipulation

The calculation engine will break up a model into sub processes for optimizedperformance on cost based

System will use maximum resources to achieve max through put

Planning Engine Will be included in next release Will include planning functions likedistribute and copy functions

ROW StoreOne of the relational engines to store data in row format

Pure in-memory store (Future versions will also have an option of disk basedstore)

In memory object store (in future) for live cache functionality

Transactions Version Memory is the heart of row store

Row store architecture

Write operation mainly go into Transactional Version Memory

INSERT also writes to persisted segment

Moves visible version from memory to persisted segment

Clears outdated record versions from Transactional Version memory

Row Store tables have a primary index

Row ID maps to primary key

OVERVIEW

SAP BWREALTIMEINTERVIEWQSTampANSWEAR

SAP BWINTERVIEWQST

SAP BWINTERVIEWQST

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Secondary indexes can be created

Row ID contains the segment and the page for the record

Indexes in row store only exist in memory

Index definition stored with table meta

Column StoreImproves read functionality significantly also improves write functionality

Highly compressed data

No real files virtual files

Optimizer and Executer ndash Handles queries and execution plan

Delta data for fast write

Asynchronous delta merge

Consistent view Manager

Main store compressed and read optimized ndash Data is read from Main Store

Delta Store ndash Write optimized ndash for write operations

Asynchronous merge move the data from delta store to main store

Compression by create dictionary and applying further compression methods

Even during the merge operation the columnar table will still be available for read and writeoperations To fulfill this a second delta and main storage are used internally

Merge operation can also be triggered manually with an SQL command

Persistence LayerPersistence Layer is needed as Main memory is volatile

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Provides Backup and Restore functionality

One Persistency Layer takes care of both row and column stores

Regular Save Points

Logs capturing DB transactions since last save point

Actions during system restart

Last save point must be restored plus undo logs must be read anduncommitted transactions saved with last save point and apply redo logs

Complete content of row store is loaded into memory during start process

Flags can be set for column store to specify which tables are loaded duringsystem restart

ModelingModeling only possible for Column tables

Information Modeler only works for column tables

Replication servers create tables in column store per default

Data Services creates tables in column store per default

SQL to create column table Create COLUMN TABLE

Store can changed with ALTER TABLE

System tables are create where they fit best

Schema SYS -gt administrative table of engine

Tables from statistics server

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

In-Memory Computing StudioBuild with java based eclipse

Navigator to access different HANA systems on left Quick Launch View at the middle andProperties view at the bottom

Information Modeler Features

Database views

Choice to publish and consume at 4 levels of modeling

Attribute view analytic view

Physical tables and Information Models

Importexport models data source schemas mass and selective load

Landscapes

The models are just virtual definitions they dont store actual data

Analytic Views are like cube model where Transaction Data is connected to attribute view

Calculation View ndash With custom functions and calculations

Modeling Process Flow

Import Source System Metadata

Create Information Models

Consume using BICS SQL or MDX

Information Modeler Terminology

Attributes ndash Characteristics

Measure ndash Key Figures

Attribute Views ndash Dimensions

Analytic Views ndash Cubes

Calculation Views ndash Similar to Virtual provider concept in BW

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Hierarchies

Leveled ndash based on multiple attributes

Parent-child hierarchy

Analytic Privilege ndash Security Object

Navigation View

HANA instance -gt Hana server name and instance number -gt user databaseschema -gt views functions and tables

Information Models ndash Attribute Analytic Calculation Views and Analytic Privilege

Attribute View

Attributes add context to data

Attributes are modeled using attributes views

Can be regarded as Master Data Tables

Can be linked to fact tables in Analytical Views

A measure eg weight can be defined as an attributes

Table Joins and properties

Left outer right outer full outer or text table

Cardinality 11 N1 1N

Language Column

Analytic View

Similar to Cube

Analytic Views does not store any data The data is stored in column store tableor view based on Analytical View structure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Attributes and Measures ndash Like key figures

Data Preview ndash Similar to list cube functionality

Calculation View

Define table output Structure

Write SQL statement

Ensure the selected fields corresponds to previously defined outputstructures

SQL Scripts unlike SQL procedure cant change any data they are read only

Other Notes

External tools can connect to HANA using JDBC and ODBC drivers

HANA currently doesnt support complete MDX set it supports EXCEL 2010 standard MDX

BWA Hardware can be upgraded to HANA given that hardware is relatively new

BWA Licenses can be transferred to HANA

ERP and BW can be connected to HANA using Data services or Sybase Replication

No name space concept in HANA at this moment so two ERP instances cant be connectedto HANA However this issue can be avoided using data sources

CRM also can use HANA

Data from BW into HANA can be loaded into using Data Services and Info spokes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Additional Notes 1) No Aggregates where BWA is used Only flexible views

2) Benefits of SAP NetWeaver BW on HANA a Superior Reporting Performanceb Real-Time Data Accessc Simulate More and Plan Fasterd Superior Loading Performancee Simplified Maintenancef Modeling Flexibilityg HANA optimized InfoCube and Data Store Objects (DSO)h Acceleration via In-Memory Column Storagei Reduced admin tasks an lower TCOj Self-service access to all informationk Minimal training or disruptionl No Disruption to W application

3) SAP HANA is the only Persistence layer for SAP Business Suite and SAP NW BW4) Web Based Modeler called as Information Composer for business users to quickly build models5) SAP HANA ndash Backup Recovery = Point-in-time recovery6) Monitoring and Administration in SAP HANA is improved through Solution Manager integration

7) SAP HANA SP3 Highlights

a More End User Flexibilityi) Web Based Modeler (Information Composer)ii) User Interface improvements

b New Landscape Deployment options i) Enhanced back-up recoveryii) Simplified Deployment

c Extended Calculation Capability amp Performance i) Business Function Libraryii) Predictive Algorithm Libraryiii) Improved Loading Performance

d Further Support amp Monitoring Capabilities i) New tracing and debugging (within SAP HANA Model Studio)

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

ii) Monitoring and Administration (Integration to Solution Manager)

e Enhanced Security amp Compliance i) Secure Network Connectivityii) Comprehensive amp complaint user provisioningiii) Auditing Enhancementsiv) License Key

8) In-Memory Computing a Row and Column Storeb Compressionc Partitioningd No Aggregate Tablese Insert Only on Delta

9) SAP HANA In-Memory Computing can execute 64 things (threads) in parallel10) HANA = High Performance Analytical Appliance11) SAP HANA Modeling is based on SBO Information Designer (ldquoUniverserdquo)12) SAP HANA has Open Full ANSI 92 SQL and MDX13) SAP HANA for Marketing Users (CRM) = Leverages TREXBWA technology to conduct analysis on

prospect Master Data14) SAP HANA = Real-time integration of OLTP and ldquoIn-Memoryrdquo store15) POS = Point of Sale Analysis16) IMP = In-Memory Platform17) MPP = Massive Parallel Processing18) In-Memory in Parallel Analytic models from Production EDW can be brought into memory for agile

modeling and reporting19) Third Party Data (POS CDR) can be brought into memory for agile modeling and reporting

20) Todayrsquos System Landscape of SAP HANA a In-Memory in Parallel (Now) agrave SAP HANA 10b Primary Data Store for BW (short term) agrave SAP HANA 15c New Applications (short term) agrave SAP HANA 15d Real Time Data Feed (Medium term) agrave SAP HANA 20e Platform Consolidation (Medium term) agrave SAP HANA 20

21) SAP HANA delivers an In-Memory Calculation Engine with Data Compression that overcomes thechallenge of handling ever increasing data volumes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

22) BI Tools a BO Analysis edition for Microsoft Office = Multidimensional data analysis with

Microsoft Officeuser experience (Microsoft Excel)

b BO Analysis edition for OLAP = Multidimensional data analysis within a web-based environment

c BO Analysis edition for Application Design = Rich and Intuitive designenvironment for buildingpowerful analytical and planning BI applications

d BO Crystal Reports = Design well-formatted layout-focused reportse BO WEBI = Adhoc Interactive Reportingf BO Dashboards = Visualize complex data easily with interactive dashboardsg BO Explorer = Search relevant information and direct exploration of data

23) Crystal Reports WEBI SBOP Dashboards are able to leverage hierarchies in reports but arelacking deep hierarchial capabilities

24) SAP BO Explorer is available for the iPhonePad25) A ldquoWhat-ifrdquo scenario is the strength of SAP BO Dashboards26) a) SAP ERP agrave SLT (Replication Server) ----(Real Time Replication) agrave SAP HANA agrave SAP BO agrave

Presentationb) SAP BPC or Non-SAP agrave Data ServicesBODS (Near Real-time Replication) agrave SAP HANA agrave BOagrave Presentation

1) SAP HANA System Landscape A) Data Sources

i SAP ERP ii SAP Host Agent 720 iii Sybase Replication Agent (HP UNIX SLEX AIX)

B) LT System i NW 702

ii Add-on DMIS 2010_1_700

C) SAP HANA Appliance (SLES 11 SP1) i SAP HANA Database ndash Clients Studio ii SAP HANA Load Controller iii SAP Host Agent 720 iv Sybase Replication Server 155 + ECDA

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 4: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Secondary indexes can be created

Row ID contains the segment and the page for the record

Indexes in row store only exist in memory

Index definition stored with table meta

Column StoreImproves read functionality significantly also improves write functionality

Highly compressed data

No real files virtual files

Optimizer and Executer ndash Handles queries and execution plan

Delta data for fast write

Asynchronous delta merge

Consistent view Manager

Main store compressed and read optimized ndash Data is read from Main Store

Delta Store ndash Write optimized ndash for write operations

Asynchronous merge move the data from delta store to main store

Compression by create dictionary and applying further compression methods

Even during the merge operation the columnar table will still be available for read and writeoperations To fulfill this a second delta and main storage are used internally

Merge operation can also be triggered manually with an SQL command

Persistence LayerPersistence Layer is needed as Main memory is volatile

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Provides Backup and Restore functionality

One Persistency Layer takes care of both row and column stores

Regular Save Points

Logs capturing DB transactions since last save point

Actions during system restart

Last save point must be restored plus undo logs must be read anduncommitted transactions saved with last save point and apply redo logs

Complete content of row store is loaded into memory during start process

Flags can be set for column store to specify which tables are loaded duringsystem restart

ModelingModeling only possible for Column tables

Information Modeler only works for column tables

Replication servers create tables in column store per default

Data Services creates tables in column store per default

SQL to create column table Create COLUMN TABLE

Store can changed with ALTER TABLE

System tables are create where they fit best

Schema SYS -gt administrative table of engine

Tables from statistics server

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

In-Memory Computing StudioBuild with java based eclipse

Navigator to access different HANA systems on left Quick Launch View at the middle andProperties view at the bottom

Information Modeler Features

Database views

Choice to publish and consume at 4 levels of modeling

Attribute view analytic view

Physical tables and Information Models

Importexport models data source schemas mass and selective load

Landscapes

The models are just virtual definitions they dont store actual data

Analytic Views are like cube model where Transaction Data is connected to attribute view

Calculation View ndash With custom functions and calculations

Modeling Process Flow

Import Source System Metadata

Create Information Models

Consume using BICS SQL or MDX

Information Modeler Terminology

Attributes ndash Characteristics

Measure ndash Key Figures

Attribute Views ndash Dimensions

Analytic Views ndash Cubes

Calculation Views ndash Similar to Virtual provider concept in BW

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Hierarchies

Leveled ndash based on multiple attributes

Parent-child hierarchy

Analytic Privilege ndash Security Object

Navigation View

HANA instance -gt Hana server name and instance number -gt user databaseschema -gt views functions and tables

Information Models ndash Attribute Analytic Calculation Views and Analytic Privilege

Attribute View

Attributes add context to data

Attributes are modeled using attributes views

Can be regarded as Master Data Tables

Can be linked to fact tables in Analytical Views

A measure eg weight can be defined as an attributes

Table Joins and properties

Left outer right outer full outer or text table

Cardinality 11 N1 1N

Language Column

Analytic View

Similar to Cube

Analytic Views does not store any data The data is stored in column store tableor view based on Analytical View structure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Attributes and Measures ndash Like key figures

Data Preview ndash Similar to list cube functionality

Calculation View

Define table output Structure

Write SQL statement

Ensure the selected fields corresponds to previously defined outputstructures

SQL Scripts unlike SQL procedure cant change any data they are read only

Other Notes

External tools can connect to HANA using JDBC and ODBC drivers

HANA currently doesnt support complete MDX set it supports EXCEL 2010 standard MDX

BWA Hardware can be upgraded to HANA given that hardware is relatively new

BWA Licenses can be transferred to HANA

ERP and BW can be connected to HANA using Data services or Sybase Replication

No name space concept in HANA at this moment so two ERP instances cant be connectedto HANA However this issue can be avoided using data sources

CRM also can use HANA

Data from BW into HANA can be loaded into using Data Services and Info spokes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Additional Notes 1) No Aggregates where BWA is used Only flexible views

2) Benefits of SAP NetWeaver BW on HANA a Superior Reporting Performanceb Real-Time Data Accessc Simulate More and Plan Fasterd Superior Loading Performancee Simplified Maintenancef Modeling Flexibilityg HANA optimized InfoCube and Data Store Objects (DSO)h Acceleration via In-Memory Column Storagei Reduced admin tasks an lower TCOj Self-service access to all informationk Minimal training or disruptionl No Disruption to W application

3) SAP HANA is the only Persistence layer for SAP Business Suite and SAP NW BW4) Web Based Modeler called as Information Composer for business users to quickly build models5) SAP HANA ndash Backup Recovery = Point-in-time recovery6) Monitoring and Administration in SAP HANA is improved through Solution Manager integration

7) SAP HANA SP3 Highlights

a More End User Flexibilityi) Web Based Modeler (Information Composer)ii) User Interface improvements

b New Landscape Deployment options i) Enhanced back-up recoveryii) Simplified Deployment

c Extended Calculation Capability amp Performance i) Business Function Libraryii) Predictive Algorithm Libraryiii) Improved Loading Performance

d Further Support amp Monitoring Capabilities i) New tracing and debugging (within SAP HANA Model Studio)

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

ii) Monitoring and Administration (Integration to Solution Manager)

e Enhanced Security amp Compliance i) Secure Network Connectivityii) Comprehensive amp complaint user provisioningiii) Auditing Enhancementsiv) License Key

8) In-Memory Computing a Row and Column Storeb Compressionc Partitioningd No Aggregate Tablese Insert Only on Delta

9) SAP HANA In-Memory Computing can execute 64 things (threads) in parallel10) HANA = High Performance Analytical Appliance11) SAP HANA Modeling is based on SBO Information Designer (ldquoUniverserdquo)12) SAP HANA has Open Full ANSI 92 SQL and MDX13) SAP HANA for Marketing Users (CRM) = Leverages TREXBWA technology to conduct analysis on

prospect Master Data14) SAP HANA = Real-time integration of OLTP and ldquoIn-Memoryrdquo store15) POS = Point of Sale Analysis16) IMP = In-Memory Platform17) MPP = Massive Parallel Processing18) In-Memory in Parallel Analytic models from Production EDW can be brought into memory for agile

modeling and reporting19) Third Party Data (POS CDR) can be brought into memory for agile modeling and reporting

20) Todayrsquos System Landscape of SAP HANA a In-Memory in Parallel (Now) agrave SAP HANA 10b Primary Data Store for BW (short term) agrave SAP HANA 15c New Applications (short term) agrave SAP HANA 15d Real Time Data Feed (Medium term) agrave SAP HANA 20e Platform Consolidation (Medium term) agrave SAP HANA 20

21) SAP HANA delivers an In-Memory Calculation Engine with Data Compression that overcomes thechallenge of handling ever increasing data volumes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

22) BI Tools a BO Analysis edition for Microsoft Office = Multidimensional data analysis with

Microsoft Officeuser experience (Microsoft Excel)

b BO Analysis edition for OLAP = Multidimensional data analysis within a web-based environment

c BO Analysis edition for Application Design = Rich and Intuitive designenvironment for buildingpowerful analytical and planning BI applications

d BO Crystal Reports = Design well-formatted layout-focused reportse BO WEBI = Adhoc Interactive Reportingf BO Dashboards = Visualize complex data easily with interactive dashboardsg BO Explorer = Search relevant information and direct exploration of data

23) Crystal Reports WEBI SBOP Dashboards are able to leverage hierarchies in reports but arelacking deep hierarchial capabilities

24) SAP BO Explorer is available for the iPhonePad25) A ldquoWhat-ifrdquo scenario is the strength of SAP BO Dashboards26) a) SAP ERP agrave SLT (Replication Server) ----(Real Time Replication) agrave SAP HANA agrave SAP BO agrave

Presentationb) SAP BPC or Non-SAP agrave Data ServicesBODS (Near Real-time Replication) agrave SAP HANA agrave BOagrave Presentation

1) SAP HANA System Landscape A) Data Sources

i SAP ERP ii SAP Host Agent 720 iii Sybase Replication Agent (HP UNIX SLEX AIX)

B) LT System i NW 702

ii Add-on DMIS 2010_1_700

C) SAP HANA Appliance (SLES 11 SP1) i SAP HANA Database ndash Clients Studio ii SAP HANA Load Controller iii SAP Host Agent 720 iv Sybase Replication Server 155 + ECDA

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 5: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Provides Backup and Restore functionality

One Persistency Layer takes care of both row and column stores

Regular Save Points

Logs capturing DB transactions since last save point

Actions during system restart

Last save point must be restored plus undo logs must be read anduncommitted transactions saved with last save point and apply redo logs

Complete content of row store is loaded into memory during start process

Flags can be set for column store to specify which tables are loaded duringsystem restart

ModelingModeling only possible for Column tables

Information Modeler only works for column tables

Replication servers create tables in column store per default

Data Services creates tables in column store per default

SQL to create column table Create COLUMN TABLE

Store can changed with ALTER TABLE

System tables are create where they fit best

Schema SYS -gt administrative table of engine

Tables from statistics server

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

In-Memory Computing StudioBuild with java based eclipse

Navigator to access different HANA systems on left Quick Launch View at the middle andProperties view at the bottom

Information Modeler Features

Database views

Choice to publish and consume at 4 levels of modeling

Attribute view analytic view

Physical tables and Information Models

Importexport models data source schemas mass and selective load

Landscapes

The models are just virtual definitions they dont store actual data

Analytic Views are like cube model where Transaction Data is connected to attribute view

Calculation View ndash With custom functions and calculations

Modeling Process Flow

Import Source System Metadata

Create Information Models

Consume using BICS SQL or MDX

Information Modeler Terminology

Attributes ndash Characteristics

Measure ndash Key Figures

Attribute Views ndash Dimensions

Analytic Views ndash Cubes

Calculation Views ndash Similar to Virtual provider concept in BW

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Hierarchies

Leveled ndash based on multiple attributes

Parent-child hierarchy

Analytic Privilege ndash Security Object

Navigation View

HANA instance -gt Hana server name and instance number -gt user databaseschema -gt views functions and tables

Information Models ndash Attribute Analytic Calculation Views and Analytic Privilege

Attribute View

Attributes add context to data

Attributes are modeled using attributes views

Can be regarded as Master Data Tables

Can be linked to fact tables in Analytical Views

A measure eg weight can be defined as an attributes

Table Joins and properties

Left outer right outer full outer or text table

Cardinality 11 N1 1N

Language Column

Analytic View

Similar to Cube

Analytic Views does not store any data The data is stored in column store tableor view based on Analytical View structure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Attributes and Measures ndash Like key figures

Data Preview ndash Similar to list cube functionality

Calculation View

Define table output Structure

Write SQL statement

Ensure the selected fields corresponds to previously defined outputstructures

SQL Scripts unlike SQL procedure cant change any data they are read only

Other Notes

External tools can connect to HANA using JDBC and ODBC drivers

HANA currently doesnt support complete MDX set it supports EXCEL 2010 standard MDX

BWA Hardware can be upgraded to HANA given that hardware is relatively new

BWA Licenses can be transferred to HANA

ERP and BW can be connected to HANA using Data services or Sybase Replication

No name space concept in HANA at this moment so two ERP instances cant be connectedto HANA However this issue can be avoided using data sources

CRM also can use HANA

Data from BW into HANA can be loaded into using Data Services and Info spokes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Additional Notes 1) No Aggregates where BWA is used Only flexible views

2) Benefits of SAP NetWeaver BW on HANA a Superior Reporting Performanceb Real-Time Data Accessc Simulate More and Plan Fasterd Superior Loading Performancee Simplified Maintenancef Modeling Flexibilityg HANA optimized InfoCube and Data Store Objects (DSO)h Acceleration via In-Memory Column Storagei Reduced admin tasks an lower TCOj Self-service access to all informationk Minimal training or disruptionl No Disruption to W application

3) SAP HANA is the only Persistence layer for SAP Business Suite and SAP NW BW4) Web Based Modeler called as Information Composer for business users to quickly build models5) SAP HANA ndash Backup Recovery = Point-in-time recovery6) Monitoring and Administration in SAP HANA is improved through Solution Manager integration

7) SAP HANA SP3 Highlights

a More End User Flexibilityi) Web Based Modeler (Information Composer)ii) User Interface improvements

b New Landscape Deployment options i) Enhanced back-up recoveryii) Simplified Deployment

c Extended Calculation Capability amp Performance i) Business Function Libraryii) Predictive Algorithm Libraryiii) Improved Loading Performance

d Further Support amp Monitoring Capabilities i) New tracing and debugging (within SAP HANA Model Studio)

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

ii) Monitoring and Administration (Integration to Solution Manager)

e Enhanced Security amp Compliance i) Secure Network Connectivityii) Comprehensive amp complaint user provisioningiii) Auditing Enhancementsiv) License Key

8) In-Memory Computing a Row and Column Storeb Compressionc Partitioningd No Aggregate Tablese Insert Only on Delta

9) SAP HANA In-Memory Computing can execute 64 things (threads) in parallel10) HANA = High Performance Analytical Appliance11) SAP HANA Modeling is based on SBO Information Designer (ldquoUniverserdquo)12) SAP HANA has Open Full ANSI 92 SQL and MDX13) SAP HANA for Marketing Users (CRM) = Leverages TREXBWA technology to conduct analysis on

prospect Master Data14) SAP HANA = Real-time integration of OLTP and ldquoIn-Memoryrdquo store15) POS = Point of Sale Analysis16) IMP = In-Memory Platform17) MPP = Massive Parallel Processing18) In-Memory in Parallel Analytic models from Production EDW can be brought into memory for agile

modeling and reporting19) Third Party Data (POS CDR) can be brought into memory for agile modeling and reporting

20) Todayrsquos System Landscape of SAP HANA a In-Memory in Parallel (Now) agrave SAP HANA 10b Primary Data Store for BW (short term) agrave SAP HANA 15c New Applications (short term) agrave SAP HANA 15d Real Time Data Feed (Medium term) agrave SAP HANA 20e Platform Consolidation (Medium term) agrave SAP HANA 20

21) SAP HANA delivers an In-Memory Calculation Engine with Data Compression that overcomes thechallenge of handling ever increasing data volumes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

22) BI Tools a BO Analysis edition for Microsoft Office = Multidimensional data analysis with

Microsoft Officeuser experience (Microsoft Excel)

b BO Analysis edition for OLAP = Multidimensional data analysis within a web-based environment

c BO Analysis edition for Application Design = Rich and Intuitive designenvironment for buildingpowerful analytical and planning BI applications

d BO Crystal Reports = Design well-formatted layout-focused reportse BO WEBI = Adhoc Interactive Reportingf BO Dashboards = Visualize complex data easily with interactive dashboardsg BO Explorer = Search relevant information and direct exploration of data

23) Crystal Reports WEBI SBOP Dashboards are able to leverage hierarchies in reports but arelacking deep hierarchial capabilities

24) SAP BO Explorer is available for the iPhonePad25) A ldquoWhat-ifrdquo scenario is the strength of SAP BO Dashboards26) a) SAP ERP agrave SLT (Replication Server) ----(Real Time Replication) agrave SAP HANA agrave SAP BO agrave

Presentationb) SAP BPC or Non-SAP agrave Data ServicesBODS (Near Real-time Replication) agrave SAP HANA agrave BOagrave Presentation

1) SAP HANA System Landscape A) Data Sources

i SAP ERP ii SAP Host Agent 720 iii Sybase Replication Agent (HP UNIX SLEX AIX)

B) LT System i NW 702

ii Add-on DMIS 2010_1_700

C) SAP HANA Appliance (SLES 11 SP1) i SAP HANA Database ndash Clients Studio ii SAP HANA Load Controller iii SAP Host Agent 720 iv Sybase Replication Server 155 + ECDA

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 6: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

In-Memory Computing StudioBuild with java based eclipse

Navigator to access different HANA systems on left Quick Launch View at the middle andProperties view at the bottom

Information Modeler Features

Database views

Choice to publish and consume at 4 levels of modeling

Attribute view analytic view

Physical tables and Information Models

Importexport models data source schemas mass and selective load

Landscapes

The models are just virtual definitions they dont store actual data

Analytic Views are like cube model where Transaction Data is connected to attribute view

Calculation View ndash With custom functions and calculations

Modeling Process Flow

Import Source System Metadata

Create Information Models

Consume using BICS SQL or MDX

Information Modeler Terminology

Attributes ndash Characteristics

Measure ndash Key Figures

Attribute Views ndash Dimensions

Analytic Views ndash Cubes

Calculation Views ndash Similar to Virtual provider concept in BW

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Hierarchies

Leveled ndash based on multiple attributes

Parent-child hierarchy

Analytic Privilege ndash Security Object

Navigation View

HANA instance -gt Hana server name and instance number -gt user databaseschema -gt views functions and tables

Information Models ndash Attribute Analytic Calculation Views and Analytic Privilege

Attribute View

Attributes add context to data

Attributes are modeled using attributes views

Can be regarded as Master Data Tables

Can be linked to fact tables in Analytical Views

A measure eg weight can be defined as an attributes

Table Joins and properties

Left outer right outer full outer or text table

Cardinality 11 N1 1N

Language Column

Analytic View

Similar to Cube

Analytic Views does not store any data The data is stored in column store tableor view based on Analytical View structure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Attributes and Measures ndash Like key figures

Data Preview ndash Similar to list cube functionality

Calculation View

Define table output Structure

Write SQL statement

Ensure the selected fields corresponds to previously defined outputstructures

SQL Scripts unlike SQL procedure cant change any data they are read only

Other Notes

External tools can connect to HANA using JDBC and ODBC drivers

HANA currently doesnt support complete MDX set it supports EXCEL 2010 standard MDX

BWA Hardware can be upgraded to HANA given that hardware is relatively new

BWA Licenses can be transferred to HANA

ERP and BW can be connected to HANA using Data services or Sybase Replication

No name space concept in HANA at this moment so two ERP instances cant be connectedto HANA However this issue can be avoided using data sources

CRM also can use HANA

Data from BW into HANA can be loaded into using Data Services and Info spokes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Additional Notes 1) No Aggregates where BWA is used Only flexible views

2) Benefits of SAP NetWeaver BW on HANA a Superior Reporting Performanceb Real-Time Data Accessc Simulate More and Plan Fasterd Superior Loading Performancee Simplified Maintenancef Modeling Flexibilityg HANA optimized InfoCube and Data Store Objects (DSO)h Acceleration via In-Memory Column Storagei Reduced admin tasks an lower TCOj Self-service access to all informationk Minimal training or disruptionl No Disruption to W application

3) SAP HANA is the only Persistence layer for SAP Business Suite and SAP NW BW4) Web Based Modeler called as Information Composer for business users to quickly build models5) SAP HANA ndash Backup Recovery = Point-in-time recovery6) Monitoring and Administration in SAP HANA is improved through Solution Manager integration

7) SAP HANA SP3 Highlights

a More End User Flexibilityi) Web Based Modeler (Information Composer)ii) User Interface improvements

b New Landscape Deployment options i) Enhanced back-up recoveryii) Simplified Deployment

c Extended Calculation Capability amp Performance i) Business Function Libraryii) Predictive Algorithm Libraryiii) Improved Loading Performance

d Further Support amp Monitoring Capabilities i) New tracing and debugging (within SAP HANA Model Studio)

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

ii) Monitoring and Administration (Integration to Solution Manager)

e Enhanced Security amp Compliance i) Secure Network Connectivityii) Comprehensive amp complaint user provisioningiii) Auditing Enhancementsiv) License Key

8) In-Memory Computing a Row and Column Storeb Compressionc Partitioningd No Aggregate Tablese Insert Only on Delta

9) SAP HANA In-Memory Computing can execute 64 things (threads) in parallel10) HANA = High Performance Analytical Appliance11) SAP HANA Modeling is based on SBO Information Designer (ldquoUniverserdquo)12) SAP HANA has Open Full ANSI 92 SQL and MDX13) SAP HANA for Marketing Users (CRM) = Leverages TREXBWA technology to conduct analysis on

prospect Master Data14) SAP HANA = Real-time integration of OLTP and ldquoIn-Memoryrdquo store15) POS = Point of Sale Analysis16) IMP = In-Memory Platform17) MPP = Massive Parallel Processing18) In-Memory in Parallel Analytic models from Production EDW can be brought into memory for agile

modeling and reporting19) Third Party Data (POS CDR) can be brought into memory for agile modeling and reporting

20) Todayrsquos System Landscape of SAP HANA a In-Memory in Parallel (Now) agrave SAP HANA 10b Primary Data Store for BW (short term) agrave SAP HANA 15c New Applications (short term) agrave SAP HANA 15d Real Time Data Feed (Medium term) agrave SAP HANA 20e Platform Consolidation (Medium term) agrave SAP HANA 20

21) SAP HANA delivers an In-Memory Calculation Engine with Data Compression that overcomes thechallenge of handling ever increasing data volumes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

22) BI Tools a BO Analysis edition for Microsoft Office = Multidimensional data analysis with

Microsoft Officeuser experience (Microsoft Excel)

b BO Analysis edition for OLAP = Multidimensional data analysis within a web-based environment

c BO Analysis edition for Application Design = Rich and Intuitive designenvironment for buildingpowerful analytical and planning BI applications

d BO Crystal Reports = Design well-formatted layout-focused reportse BO WEBI = Adhoc Interactive Reportingf BO Dashboards = Visualize complex data easily with interactive dashboardsg BO Explorer = Search relevant information and direct exploration of data

23) Crystal Reports WEBI SBOP Dashboards are able to leverage hierarchies in reports but arelacking deep hierarchial capabilities

24) SAP BO Explorer is available for the iPhonePad25) A ldquoWhat-ifrdquo scenario is the strength of SAP BO Dashboards26) a) SAP ERP agrave SLT (Replication Server) ----(Real Time Replication) agrave SAP HANA agrave SAP BO agrave

Presentationb) SAP BPC or Non-SAP agrave Data ServicesBODS (Near Real-time Replication) agrave SAP HANA agrave BOagrave Presentation

1) SAP HANA System Landscape A) Data Sources

i SAP ERP ii SAP Host Agent 720 iii Sybase Replication Agent (HP UNIX SLEX AIX)

B) LT System i NW 702

ii Add-on DMIS 2010_1_700

C) SAP HANA Appliance (SLES 11 SP1) i SAP HANA Database ndash Clients Studio ii SAP HANA Load Controller iii SAP Host Agent 720 iv Sybase Replication Server 155 + ECDA

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 7: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Hierarchies

Leveled ndash based on multiple attributes

Parent-child hierarchy

Analytic Privilege ndash Security Object

Navigation View

HANA instance -gt Hana server name and instance number -gt user databaseschema -gt views functions and tables

Information Models ndash Attribute Analytic Calculation Views and Analytic Privilege

Attribute View

Attributes add context to data

Attributes are modeled using attributes views

Can be regarded as Master Data Tables

Can be linked to fact tables in Analytical Views

A measure eg weight can be defined as an attributes

Table Joins and properties

Left outer right outer full outer or text table

Cardinality 11 N1 1N

Language Column

Analytic View

Similar to Cube

Analytic Views does not store any data The data is stored in column store tableor view based on Analytical View structure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Attributes and Measures ndash Like key figures

Data Preview ndash Similar to list cube functionality

Calculation View

Define table output Structure

Write SQL statement

Ensure the selected fields corresponds to previously defined outputstructures

SQL Scripts unlike SQL procedure cant change any data they are read only

Other Notes

External tools can connect to HANA using JDBC and ODBC drivers

HANA currently doesnt support complete MDX set it supports EXCEL 2010 standard MDX

BWA Hardware can be upgraded to HANA given that hardware is relatively new

BWA Licenses can be transferred to HANA

ERP and BW can be connected to HANA using Data services or Sybase Replication

No name space concept in HANA at this moment so two ERP instances cant be connectedto HANA However this issue can be avoided using data sources

CRM also can use HANA

Data from BW into HANA can be loaded into using Data Services and Info spokes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Additional Notes 1) No Aggregates where BWA is used Only flexible views

2) Benefits of SAP NetWeaver BW on HANA a Superior Reporting Performanceb Real-Time Data Accessc Simulate More and Plan Fasterd Superior Loading Performancee Simplified Maintenancef Modeling Flexibilityg HANA optimized InfoCube and Data Store Objects (DSO)h Acceleration via In-Memory Column Storagei Reduced admin tasks an lower TCOj Self-service access to all informationk Minimal training or disruptionl No Disruption to W application

3) SAP HANA is the only Persistence layer for SAP Business Suite and SAP NW BW4) Web Based Modeler called as Information Composer for business users to quickly build models5) SAP HANA ndash Backup Recovery = Point-in-time recovery6) Monitoring and Administration in SAP HANA is improved through Solution Manager integration

7) SAP HANA SP3 Highlights

a More End User Flexibilityi) Web Based Modeler (Information Composer)ii) User Interface improvements

b New Landscape Deployment options i) Enhanced back-up recoveryii) Simplified Deployment

c Extended Calculation Capability amp Performance i) Business Function Libraryii) Predictive Algorithm Libraryiii) Improved Loading Performance

d Further Support amp Monitoring Capabilities i) New tracing and debugging (within SAP HANA Model Studio)

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

ii) Monitoring and Administration (Integration to Solution Manager)

e Enhanced Security amp Compliance i) Secure Network Connectivityii) Comprehensive amp complaint user provisioningiii) Auditing Enhancementsiv) License Key

8) In-Memory Computing a Row and Column Storeb Compressionc Partitioningd No Aggregate Tablese Insert Only on Delta

9) SAP HANA In-Memory Computing can execute 64 things (threads) in parallel10) HANA = High Performance Analytical Appliance11) SAP HANA Modeling is based on SBO Information Designer (ldquoUniverserdquo)12) SAP HANA has Open Full ANSI 92 SQL and MDX13) SAP HANA for Marketing Users (CRM) = Leverages TREXBWA technology to conduct analysis on

prospect Master Data14) SAP HANA = Real-time integration of OLTP and ldquoIn-Memoryrdquo store15) POS = Point of Sale Analysis16) IMP = In-Memory Platform17) MPP = Massive Parallel Processing18) In-Memory in Parallel Analytic models from Production EDW can be brought into memory for agile

modeling and reporting19) Third Party Data (POS CDR) can be brought into memory for agile modeling and reporting

20) Todayrsquos System Landscape of SAP HANA a In-Memory in Parallel (Now) agrave SAP HANA 10b Primary Data Store for BW (short term) agrave SAP HANA 15c New Applications (short term) agrave SAP HANA 15d Real Time Data Feed (Medium term) agrave SAP HANA 20e Platform Consolidation (Medium term) agrave SAP HANA 20

21) SAP HANA delivers an In-Memory Calculation Engine with Data Compression that overcomes thechallenge of handling ever increasing data volumes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

22) BI Tools a BO Analysis edition for Microsoft Office = Multidimensional data analysis with

Microsoft Officeuser experience (Microsoft Excel)

b BO Analysis edition for OLAP = Multidimensional data analysis within a web-based environment

c BO Analysis edition for Application Design = Rich and Intuitive designenvironment for buildingpowerful analytical and planning BI applications

d BO Crystal Reports = Design well-formatted layout-focused reportse BO WEBI = Adhoc Interactive Reportingf BO Dashboards = Visualize complex data easily with interactive dashboardsg BO Explorer = Search relevant information and direct exploration of data

23) Crystal Reports WEBI SBOP Dashboards are able to leverage hierarchies in reports but arelacking deep hierarchial capabilities

24) SAP BO Explorer is available for the iPhonePad25) A ldquoWhat-ifrdquo scenario is the strength of SAP BO Dashboards26) a) SAP ERP agrave SLT (Replication Server) ----(Real Time Replication) agrave SAP HANA agrave SAP BO agrave

Presentationb) SAP BPC or Non-SAP agrave Data ServicesBODS (Near Real-time Replication) agrave SAP HANA agrave BOagrave Presentation

1) SAP HANA System Landscape A) Data Sources

i SAP ERP ii SAP Host Agent 720 iii Sybase Replication Agent (HP UNIX SLEX AIX)

B) LT System i NW 702

ii Add-on DMIS 2010_1_700

C) SAP HANA Appliance (SLES 11 SP1) i SAP HANA Database ndash Clients Studio ii SAP HANA Load Controller iii SAP Host Agent 720 iv Sybase Replication Server 155 + ECDA

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 8: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Attributes and Measures ndash Like key figures

Data Preview ndash Similar to list cube functionality

Calculation View

Define table output Structure

Write SQL statement

Ensure the selected fields corresponds to previously defined outputstructures

SQL Scripts unlike SQL procedure cant change any data they are read only

Other Notes

External tools can connect to HANA using JDBC and ODBC drivers

HANA currently doesnt support complete MDX set it supports EXCEL 2010 standard MDX

BWA Hardware can be upgraded to HANA given that hardware is relatively new

BWA Licenses can be transferred to HANA

ERP and BW can be connected to HANA using Data services or Sybase Replication

No name space concept in HANA at this moment so two ERP instances cant be connectedto HANA However this issue can be avoided using data sources

CRM also can use HANA

Data from BW into HANA can be loaded into using Data Services and Info spokes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Additional Notes 1) No Aggregates where BWA is used Only flexible views

2) Benefits of SAP NetWeaver BW on HANA a Superior Reporting Performanceb Real-Time Data Accessc Simulate More and Plan Fasterd Superior Loading Performancee Simplified Maintenancef Modeling Flexibilityg HANA optimized InfoCube and Data Store Objects (DSO)h Acceleration via In-Memory Column Storagei Reduced admin tasks an lower TCOj Self-service access to all informationk Minimal training or disruptionl No Disruption to W application

3) SAP HANA is the only Persistence layer for SAP Business Suite and SAP NW BW4) Web Based Modeler called as Information Composer for business users to quickly build models5) SAP HANA ndash Backup Recovery = Point-in-time recovery6) Monitoring and Administration in SAP HANA is improved through Solution Manager integration

7) SAP HANA SP3 Highlights

a More End User Flexibilityi) Web Based Modeler (Information Composer)ii) User Interface improvements

b New Landscape Deployment options i) Enhanced back-up recoveryii) Simplified Deployment

c Extended Calculation Capability amp Performance i) Business Function Libraryii) Predictive Algorithm Libraryiii) Improved Loading Performance

d Further Support amp Monitoring Capabilities i) New tracing and debugging (within SAP HANA Model Studio)

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

ii) Monitoring and Administration (Integration to Solution Manager)

e Enhanced Security amp Compliance i) Secure Network Connectivityii) Comprehensive amp complaint user provisioningiii) Auditing Enhancementsiv) License Key

8) In-Memory Computing a Row and Column Storeb Compressionc Partitioningd No Aggregate Tablese Insert Only on Delta

9) SAP HANA In-Memory Computing can execute 64 things (threads) in parallel10) HANA = High Performance Analytical Appliance11) SAP HANA Modeling is based on SBO Information Designer (ldquoUniverserdquo)12) SAP HANA has Open Full ANSI 92 SQL and MDX13) SAP HANA for Marketing Users (CRM) = Leverages TREXBWA technology to conduct analysis on

prospect Master Data14) SAP HANA = Real-time integration of OLTP and ldquoIn-Memoryrdquo store15) POS = Point of Sale Analysis16) IMP = In-Memory Platform17) MPP = Massive Parallel Processing18) In-Memory in Parallel Analytic models from Production EDW can be brought into memory for agile

modeling and reporting19) Third Party Data (POS CDR) can be brought into memory for agile modeling and reporting

20) Todayrsquos System Landscape of SAP HANA a In-Memory in Parallel (Now) agrave SAP HANA 10b Primary Data Store for BW (short term) agrave SAP HANA 15c New Applications (short term) agrave SAP HANA 15d Real Time Data Feed (Medium term) agrave SAP HANA 20e Platform Consolidation (Medium term) agrave SAP HANA 20

21) SAP HANA delivers an In-Memory Calculation Engine with Data Compression that overcomes thechallenge of handling ever increasing data volumes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

22) BI Tools a BO Analysis edition for Microsoft Office = Multidimensional data analysis with

Microsoft Officeuser experience (Microsoft Excel)

b BO Analysis edition for OLAP = Multidimensional data analysis within a web-based environment

c BO Analysis edition for Application Design = Rich and Intuitive designenvironment for buildingpowerful analytical and planning BI applications

d BO Crystal Reports = Design well-formatted layout-focused reportse BO WEBI = Adhoc Interactive Reportingf BO Dashboards = Visualize complex data easily with interactive dashboardsg BO Explorer = Search relevant information and direct exploration of data

23) Crystal Reports WEBI SBOP Dashboards are able to leverage hierarchies in reports but arelacking deep hierarchial capabilities

24) SAP BO Explorer is available for the iPhonePad25) A ldquoWhat-ifrdquo scenario is the strength of SAP BO Dashboards26) a) SAP ERP agrave SLT (Replication Server) ----(Real Time Replication) agrave SAP HANA agrave SAP BO agrave

Presentationb) SAP BPC or Non-SAP agrave Data ServicesBODS (Near Real-time Replication) agrave SAP HANA agrave BOagrave Presentation

1) SAP HANA System Landscape A) Data Sources

i SAP ERP ii SAP Host Agent 720 iii Sybase Replication Agent (HP UNIX SLEX AIX)

B) LT System i NW 702

ii Add-on DMIS 2010_1_700

C) SAP HANA Appliance (SLES 11 SP1) i SAP HANA Database ndash Clients Studio ii SAP HANA Load Controller iii SAP Host Agent 720 iv Sybase Replication Server 155 + ECDA

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 9: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Additional Notes 1) No Aggregates where BWA is used Only flexible views

2) Benefits of SAP NetWeaver BW on HANA a Superior Reporting Performanceb Real-Time Data Accessc Simulate More and Plan Fasterd Superior Loading Performancee Simplified Maintenancef Modeling Flexibilityg HANA optimized InfoCube and Data Store Objects (DSO)h Acceleration via In-Memory Column Storagei Reduced admin tasks an lower TCOj Self-service access to all informationk Minimal training or disruptionl No Disruption to W application

3) SAP HANA is the only Persistence layer for SAP Business Suite and SAP NW BW4) Web Based Modeler called as Information Composer for business users to quickly build models5) SAP HANA ndash Backup Recovery = Point-in-time recovery6) Monitoring and Administration in SAP HANA is improved through Solution Manager integration

7) SAP HANA SP3 Highlights

a More End User Flexibilityi) Web Based Modeler (Information Composer)ii) User Interface improvements

b New Landscape Deployment options i) Enhanced back-up recoveryii) Simplified Deployment

c Extended Calculation Capability amp Performance i) Business Function Libraryii) Predictive Algorithm Libraryiii) Improved Loading Performance

d Further Support amp Monitoring Capabilities i) New tracing and debugging (within SAP HANA Model Studio)

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

ii) Monitoring and Administration (Integration to Solution Manager)

e Enhanced Security amp Compliance i) Secure Network Connectivityii) Comprehensive amp complaint user provisioningiii) Auditing Enhancementsiv) License Key

8) In-Memory Computing a Row and Column Storeb Compressionc Partitioningd No Aggregate Tablese Insert Only on Delta

9) SAP HANA In-Memory Computing can execute 64 things (threads) in parallel10) HANA = High Performance Analytical Appliance11) SAP HANA Modeling is based on SBO Information Designer (ldquoUniverserdquo)12) SAP HANA has Open Full ANSI 92 SQL and MDX13) SAP HANA for Marketing Users (CRM) = Leverages TREXBWA technology to conduct analysis on

prospect Master Data14) SAP HANA = Real-time integration of OLTP and ldquoIn-Memoryrdquo store15) POS = Point of Sale Analysis16) IMP = In-Memory Platform17) MPP = Massive Parallel Processing18) In-Memory in Parallel Analytic models from Production EDW can be brought into memory for agile

modeling and reporting19) Third Party Data (POS CDR) can be brought into memory for agile modeling and reporting

20) Todayrsquos System Landscape of SAP HANA a In-Memory in Parallel (Now) agrave SAP HANA 10b Primary Data Store for BW (short term) agrave SAP HANA 15c New Applications (short term) agrave SAP HANA 15d Real Time Data Feed (Medium term) agrave SAP HANA 20e Platform Consolidation (Medium term) agrave SAP HANA 20

21) SAP HANA delivers an In-Memory Calculation Engine with Data Compression that overcomes thechallenge of handling ever increasing data volumes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

22) BI Tools a BO Analysis edition for Microsoft Office = Multidimensional data analysis with

Microsoft Officeuser experience (Microsoft Excel)

b BO Analysis edition for OLAP = Multidimensional data analysis within a web-based environment

c BO Analysis edition for Application Design = Rich and Intuitive designenvironment for buildingpowerful analytical and planning BI applications

d BO Crystal Reports = Design well-formatted layout-focused reportse BO WEBI = Adhoc Interactive Reportingf BO Dashboards = Visualize complex data easily with interactive dashboardsg BO Explorer = Search relevant information and direct exploration of data

23) Crystal Reports WEBI SBOP Dashboards are able to leverage hierarchies in reports but arelacking deep hierarchial capabilities

24) SAP BO Explorer is available for the iPhonePad25) A ldquoWhat-ifrdquo scenario is the strength of SAP BO Dashboards26) a) SAP ERP agrave SLT (Replication Server) ----(Real Time Replication) agrave SAP HANA agrave SAP BO agrave

Presentationb) SAP BPC or Non-SAP agrave Data ServicesBODS (Near Real-time Replication) agrave SAP HANA agrave BOagrave Presentation

1) SAP HANA System Landscape A) Data Sources

i SAP ERP ii SAP Host Agent 720 iii Sybase Replication Agent (HP UNIX SLEX AIX)

B) LT System i NW 702

ii Add-on DMIS 2010_1_700

C) SAP HANA Appliance (SLES 11 SP1) i SAP HANA Database ndash Clients Studio ii SAP HANA Load Controller iii SAP Host Agent 720 iv Sybase Replication Server 155 + ECDA

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 10: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

ii) Monitoring and Administration (Integration to Solution Manager)

e Enhanced Security amp Compliance i) Secure Network Connectivityii) Comprehensive amp complaint user provisioningiii) Auditing Enhancementsiv) License Key

8) In-Memory Computing a Row and Column Storeb Compressionc Partitioningd No Aggregate Tablese Insert Only on Delta

9) SAP HANA In-Memory Computing can execute 64 things (threads) in parallel10) HANA = High Performance Analytical Appliance11) SAP HANA Modeling is based on SBO Information Designer (ldquoUniverserdquo)12) SAP HANA has Open Full ANSI 92 SQL and MDX13) SAP HANA for Marketing Users (CRM) = Leverages TREXBWA technology to conduct analysis on

prospect Master Data14) SAP HANA = Real-time integration of OLTP and ldquoIn-Memoryrdquo store15) POS = Point of Sale Analysis16) IMP = In-Memory Platform17) MPP = Massive Parallel Processing18) In-Memory in Parallel Analytic models from Production EDW can be brought into memory for agile

modeling and reporting19) Third Party Data (POS CDR) can be brought into memory for agile modeling and reporting

20) Todayrsquos System Landscape of SAP HANA a In-Memory in Parallel (Now) agrave SAP HANA 10b Primary Data Store for BW (short term) agrave SAP HANA 15c New Applications (short term) agrave SAP HANA 15d Real Time Data Feed (Medium term) agrave SAP HANA 20e Platform Consolidation (Medium term) agrave SAP HANA 20

21) SAP HANA delivers an In-Memory Calculation Engine with Data Compression that overcomes thechallenge of handling ever increasing data volumes

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

22) BI Tools a BO Analysis edition for Microsoft Office = Multidimensional data analysis with

Microsoft Officeuser experience (Microsoft Excel)

b BO Analysis edition for OLAP = Multidimensional data analysis within a web-based environment

c BO Analysis edition for Application Design = Rich and Intuitive designenvironment for buildingpowerful analytical and planning BI applications

d BO Crystal Reports = Design well-formatted layout-focused reportse BO WEBI = Adhoc Interactive Reportingf BO Dashboards = Visualize complex data easily with interactive dashboardsg BO Explorer = Search relevant information and direct exploration of data

23) Crystal Reports WEBI SBOP Dashboards are able to leverage hierarchies in reports but arelacking deep hierarchial capabilities

24) SAP BO Explorer is available for the iPhonePad25) A ldquoWhat-ifrdquo scenario is the strength of SAP BO Dashboards26) a) SAP ERP agrave SLT (Replication Server) ----(Real Time Replication) agrave SAP HANA agrave SAP BO agrave

Presentationb) SAP BPC or Non-SAP agrave Data ServicesBODS (Near Real-time Replication) agrave SAP HANA agrave BOagrave Presentation

1) SAP HANA System Landscape A) Data Sources

i SAP ERP ii SAP Host Agent 720 iii Sybase Replication Agent (HP UNIX SLEX AIX)

B) LT System i NW 702

ii Add-on DMIS 2010_1_700

C) SAP HANA Appliance (SLES 11 SP1) i SAP HANA Database ndash Clients Studio ii SAP HANA Load Controller iii SAP Host Agent 720 iv Sybase Replication Server 155 + ECDA

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 11: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

22) BI Tools a BO Analysis edition for Microsoft Office = Multidimensional data analysis with

Microsoft Officeuser experience (Microsoft Excel)

b BO Analysis edition for OLAP = Multidimensional data analysis within a web-based environment

c BO Analysis edition for Application Design = Rich and Intuitive designenvironment for buildingpowerful analytical and planning BI applications

d BO Crystal Reports = Design well-formatted layout-focused reportse BO WEBI = Adhoc Interactive Reportingf BO Dashboards = Visualize complex data easily with interactive dashboardsg BO Explorer = Search relevant information and direct exploration of data

23) Crystal Reports WEBI SBOP Dashboards are able to leverage hierarchies in reports but arelacking deep hierarchial capabilities

24) SAP BO Explorer is available for the iPhonePad25) A ldquoWhat-ifrdquo scenario is the strength of SAP BO Dashboards26) a) SAP ERP agrave SLT (Replication Server) ----(Real Time Replication) agrave SAP HANA agrave SAP BO agrave

Presentationb) SAP BPC or Non-SAP agrave Data ServicesBODS (Near Real-time Replication) agrave SAP HANA agrave BOagrave Presentation

1) SAP HANA System Landscape A) Data Sources

i SAP ERP ii SAP Host Agent 720 iii Sybase Replication Agent (HP UNIX SLEX AIX)

B) LT System i NW 702

ii Add-on DMIS 2010_1_700

C) SAP HANA Appliance (SLES 11 SP1) i SAP HANA Database ndash Clients Studio ii SAP HANA Load Controller iii SAP Host Agent 720 iv Sybase Replication Server 155 + ECDA

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 12: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

D) Admin Workstations i SAP HANA Studio ii SAP HANA database clients iii Data Services Designer iv Information Designer v MS Excel 2010 vi Web Access to BI Admin Tools

E) End Users Workstations i MS Excel 2010ii SAP HANA Database Clients 10 iii Web Access to BI Clients (1577128)

F) Data Services i Data Services 40 ii Data Services Job Server iii Repository (shared with BOC)

G) BI-40 i BI Platform ii BO Explorer iii BO Web Application Server iv BO Repository

2) SAP HANA Appliance Software a) SAP HANA Studio = SAP HANA Load Controllerb) Sybase Replication Server = SAP Host Agent c) SAP HANA Database Clients = LM Structure Files d) SAP HANA Database = SAPCAR

3) SAP HANA Enterprise extended edition (For Log based replication)i) Sybase Replication Agent ii) Sybase Replication Server iii) SAP HANA Load Controller (R3 Load in Source + R3 Load in SAP HANA)

4) Replication Methods Overview a) Trigger-Based Replicationb) ETL-Based Replication

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 13: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

c) Log-Based Replication (Database agrave Log File)

5) Replication Methods Overview a) Source System-SAP ERP (Application Layer) agrave Trigger Based Replication agrave SAP In-Memory Database b) Source System-SAP ERP (Application Layer) agrave ETL Based Replication agrave SAP In-Memory Database c) Source System-Database (Log File) agrave Log Based Replication agrave SAP In-Memory Database

CHANDRA

1 In a BO WEBI report if you want retrieve data for a particular year from HANA DB foroptimization where is the best place to filter WEBI query 2HANA Model 3Universe 4CMC

Ans HANA MODEL

2 Which BO Tool is good for visualizationAns DASHBOARDS

3 Which BO tool is good for Formatted reportsAns CRYSTAL REPORTS

1 What is the standard user for HANA admin activitiesAns ltSYSgtADM -- Database level administration SYSTEM -- Modeler administration

2 If you want to retrieve more than 5000 records in the BO report where do you do this settingAns Increase the Array Fet size to 5000 --gt not sure about it

3 What are the benefits of BOBJ on HANAAns quick response time SAP and NON SAP interfaces Near real time data

4 On SQL SCRIPT there are 3 questions one of the question is like thisWhat is SQL SCRIPTSet of abap commands run on ABAP application serverSet of sql commands run NETWEAVER serverSet of sql commands pushed intensive data logic to HANA DB

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 14: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Set of sql commands pushed intensive data logic to client tools Ans Set of sql commands pushed intensive data logic to HANA DB

5 On calculation view 3 questions for example In what situation the calculation view is requiredAns When we require complex logic that cant be delivered by Attribute and AnalyticalViews

6 Data Services 3 questionsAnalytic Privileges 2 questions

10 What replication method is good for complex transformationAns ETL base Replication ( Data Services )

11 Types of privileges - All of the ABOVEAns a SYSTEM Privileges b) SQL Privileges amp c) Analytic Privileges

a System SQL Privileges (Schema Privileges + Data Objects Privileges)b ANALYTIC Privilegesc PACKAGE Privileges

12 Type of privilege for Dropping TableAns SQL Privileges (Schema Privileges + Data Object Privileges )

13 Question about Descriptive MappingI think you are referring to Text Mapping If it is text mapping following are valid --gt 11mapping Language Column is mandatory and should be SPRAS Join type is Text Join

14 Business Layer steps Semantic LayerAns --gt create Package --gt Create Relational Connection --gt Create Data Foundation --gtPublish Data Foundation to Repository --gt Create Business Layer ( universe) --gt PublishBusiness Layer to Repository

15 Input for analytic view 2 questions

16 question on where used listAns we use this to find objects affected by that model

17 When import a model view to target system How to activate the dependent objectsAns Cascade Activate

18 When you right Click the object you have the Option to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 15: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Cascade function 2 Where used 3 Hierarchy function 4 History functionAns Cascade Function Where Used Hierarchy

19 Benefits of using different accelerators on HANAAns Real time data and faster data access

20 Type of cardinality between attribute view and text tablesAns 11 for text joins

21 SLT stepsAns --gtDB Trigger --gt Logging Tables --gt Read Module --gt Controller Module --gt WriteModule --gt HANA data base

22 BODS and Hana connection stepsAns

a Create a connection to an SAP Target System in BODSb Import SAP Metadata into BODSc Import SAP Metadata from BODS into SAP HANAd Import SAP Metadata ndash Target structure from SAP ERP Source Table to the SAP HANA

Target Tablee Create a BODS job and dataflow with 11 to load data into SAP HANAf Execute the job in BODS to load data into SAP HANAg Preview uploaded data in SAP HANA

23 What is DB triggerAns Only relevant tables considered for DB recordingAll relevant changes are recorded in logging tableReplicated changes are deleted from logging tablesRecording and replication possible for all table classes

24 What is Load ControllerAns Ensure mapping between HANA DB Structures and DB Structures of source systemProvides ability to conversionmigration values Provide scheduling options to determinethe frequency of data replication

25 BW on HANA what are the steps example Database migration etcAns Copy and Migrate the DB convert the info cube to IN memory

26 In the following which one is for real time replication with zero downtime SLT BODS Sybaseand some other thing

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 16: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Ans SLT

27 Given the HANA Architecture view diagram and the question is what are the importantcomponents of HANA database

Ans In-memory computing engine ( Row store column store persistent layercalculationExecution engine interfaces) In-memory computing studio

28 With ODP data replication API what extractors are available 1 Released extractors 2Business content extractors etchellip

Ans Customers customized extractors approved by SAP so only Released Extractors

29 Question on profitability analysis ANS CO-PA accelerator

37 How can you evaluate the actual speed of a calculation within HANA DB Ans (3 answersneeded)

a) Write and execute SQL statementb) Use data previewc) Execute WEBI d) Execute information space view e0 trace using python admin tool within TREX

38 What tool to handle duplicate names of HANA a MDM b Data Service c UNION SQL

39 How do you verify the quality of HANAa Use SQL Editors b Compare data with HANA_STATISTICS c Use data service quality processd Use WEBI report e Use SLT to very quality f Compare ERP with HANA data

40 What is the Authentication method for Single-Sign on 1 LDAP 2Keberos

Keberos

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 17: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

PARAM

1 What are the benefits of implementing SAP HANA with SAP ERPa Performance Optimization for operational reportingb Processing of large volumes of datac Provision of real-time analytics

2 What are the reasons for building a calculation view with SQL script rather than thegraphical interface

a) To reuse standard SQL functions not provided within the modelerb) To create custom reusable calculation functions

3 Which tool can you use to preview calculation view dataa) Data Previewb) SQL Editor

4 You have created a balances report with data from SAP HANA and want to check that thevalues on the report are correct With which of the following would you compare thebalances on the report

a) With the aggregate values stored in SAP HANA

5 Which technology supports true real-time replication of SAP ERP Pool and Cluster tables inan SAP HANA database SAP Landscape Transformation (SLT)

6 Which of the following settings are mandatory for configuring the import server in the SAPHANA studio

Server Address Repository name

7 Which component of the Execution Control module breaks the query into executableparts Please choose the correct answer

SQL Parser

8 What are the components of SAP IMCE Clients 10a IMCE ODBO 10b IMCE ODBC 10c IMCE JDBC 10d IMCE SQLDBC 10

9 SAP HANA Software is available is the following editions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 18: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

a Platform Editionb Enterprise Edition

10 Semantic Layer (UNX) is available for reporting by which of the following reporting toolsa Crystal Reports Enterprise Dashboards amp WEBI

11 Calculation View can contain the followinga Database Tablesb Attribute Viewsc Analytic Viewsd Calculation Views

12 Which is the default perspective of IMCE Studio Administrator Console13 How many types of ExportsImports can be performed from HANA studio a 2 (Client amp

Server)14 Which is the default schema for activated views

a _SYS_BIC

15 List out the ETL based replication SBO Data Services (ETL Based)

16 What constitute SAP BO Analysis (BICS)a MS Excel 2010b MS Powerpoint 2010

17 Which universe is used for Semantic Business Layer Relational Universe (BO)Information Designer Tool

18 Data preview is available with the following optionsa Raw Datab Distinct Valuesc Analysis

19 Identify the DB trigger Replication services LT Replication

20 Analytic privilege can be assigned to Attribute View True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 19: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

21 What is the Operating System of IMDB SUSE Linux Enterprise Server 11 SP3

22 HANA Enterprise Server can be configured via Scale up or Scale out configurations True

23 Distributed system handling cannot be maintained in HANA since itrsquos just one Enterpriseserver False

24 What is the role SAP TDMS in SAP HANA Used with LT Replication

25 During power outage HANA DB performs the following Recovering log between last datasavepoint and time of failure

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 20: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 Select the correct Authorization privileges for controlling activation of views PackagePrivilege

27 Network authentication protocol is not required for HANA server access False

28 Reporting client users cannot be integrated with IMCE users False

29 Roles assigned to a user are also grantable to other users True

30 Single sign on users cannot be created in HANA since it is an independent system forInformation models False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 21: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

31 Which privilege controls User Admin amp Create Schema roles System Privilege

32 Without Analytic Privilege no data can be viewed froma Attribute Viewsb Analytic Viewsc Calculation Views

33 Analytic Privileges belong to _SYS_REPO

34 Private attributes from the Attribute views are used to join to the Key attributes False

35 Following types of joins are possible in Attribute viewmiddot Referential Joinmiddot Inner Joinmiddot Outer Join

36 Persistence layer in the HANA DB has the following components Page Management amp Logger

37 Which section controls the data processing in the HANA DB Transaction Manager

38 Which tool is used to create Universe for reporting in dashboard Information Design Tool(IDT)

39 OPD for data replication API is used in which replication Data Services 40

40 RFC connection is required for connection from Replication server to HANA Database False

41 Life cycle management perspective is used for Upgrade Updates for HANA Studio

42 Information modeler also provide list of UsersRoles created in the system False

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 22: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

43 Views available in the Quick launch of Information modeler aremiddot Navigatormiddot Where-Used Listmiddot Job Logmiddot Properties

44 MDX stand for Multi Dimensional Expressions

45 Content folder can be accessed from the Navigator of the Administrator console False

46 Which table provides the mapping amp assignment of rules in the SLT replication IUUC_ASS_RULE_MAP

47 Transformation in SLT replication can be handled in the following waysmiddot Event Basedmiddot Parameter Based

48 Which Business Objects tool is used for replicating data to HANA Data Services Designer

49 Measures are Data that can be quantified and calculated

50 Data provisioning can be both initial load and replication True

51 What is the default maximum number of rows in Data preview 5000

52 Validation rules of Analytic View can be selected amp de-selected from the lsquoManagePreferencesrsquo True

53 A Package within a package can be created True

54 SAP delivered content Information models can be activated from Mass Copy

55 Auto-documentation generates technical design document in the _______format pdf format

56 What is full form of HANA SAP High Performance Analytical Appliance 10

57 Which non-SAP system can SAP HANA connect to

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 23: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot Oracle Enterprisemiddot IBM Informix

58 SAP BO Dataservices can connect to any OLTP system including DBMS ampRDBMS True

59 Hierarchies with hierarchy levels are supported in Attribute view True

60 In SAP HANA SP03 it will be possible to suspend a table from the replication process and toresume it a later point in time True

61 What are the business benefits of ODP for non SAP BW customersmiddot Get access to the Business Suite Extractors without having to go through SAP NetWeaver BWmiddot There is no need for an ABAP Dataflow and therefore no ABAP Program is required for staging data

62 Calculation engine performs the followingmiddot Create Joins at run-timemiddot Create Calculated Measures and Calculated Attributesmiddot Compute and Execute Calculation Views

63 For SAP BW to be powered by HANA what are the primary steps requiredmiddot Upgrade to SAP NetWeaver BW 73middot Migrate Database (RDBMS) to HANA DB

64 The HANA optimized Infocubeshas the following featuresmiddot No Dimension Tablesmiddot No Secondary Fact-Tablemiddot They represent ldquoFlat Structuresrdquo

65 LT replication ldquoSchemardquo can be configured to support extraction jobs as followsmiddot Real Timemiddot Schedule by Intervalmiddot Schedule by Time

66 For Time Attribute views which calendar types can be createdmiddot Gregorian Calendarmiddot Fiscal Calendar

67 Filter values can assigned at the lsquoData foundationrsquo in the Analytic view True

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 24: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

68 Procedures can be created with Invokerrsquos rights only False

69 SAP Solution Manager is used to provide remote access to HANA Studio True

70 Security amp Authorization of SAP HANA is required to maintain the followingmiddot Control Access to ObjectsViewsmiddot Field-Level Securitymiddot Restrict users from viewing Information Models

71 Pre-requisite to execute Crystal reports enterprisemiddot JDBC ODBC Interfacesmiddot Relational Universe

72Which of the following cardinalities are supported in Attribute viewmiddot 1Nmiddot N1middot 11

73 Is it possible to add tables later after the Analytic view is created True

74 Packages can be exported without assigning Delivery units for Server type exports False

75 lsquoMigratersquo from Quick launch is used for which of the following Multi Lingual Support

76 Calculation views can also be used as business reporting view True

77 Attribute view provides the master data information amp can be used in any analytic view True

78 SAP HANA supports lsquoBIGrsquo data analytics True

79 SAP HANA IMDB supports multiple hosts within the system landspace True

80 Information Composer is a browser like application for End-users to create reports True

PAT MATAZ

Questions are like these and these are the easier ones which I remember

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 25: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

1 Best practices when using sqlscript in HANA (HANA 10 sqlscript guide) 2 Ans required froma) cursor b) dynamic script c) Using where clause for updates and deletes d) use union all notunion

2 Which tool connectivity option do you use for hierarchy reportingAns MDX other options ODBC JDBC ODBO

3 Another question will be similar to the aboveAns Excel

4 Which transaction will be used to check the table relationship Ans SD11

5 How many result tables are generated from one calculation view per sessionAns 1 other options 234

6 In a calculation view which node is usedAns Projection Union there were other options

7 Functions of the controller module in SLTAns 2 answers were required including writing to HANA which I am not sure but thought it was notcorrect as the write module is there

8 Functions of DB trigger (not logging table) Ans 2 answers were needed and I normally know the functions for both DB and logging tables sowas tricky

9 You want to use a small look-up table in your model for data transformationAns Columnar table Transparent table cluster table and row table I wasnt sure of this one

10 How can you evaluate the actual speed of a calculation within a DB Ans (3 answers needed) a) write and execute SQL statement b) Use data preview c) executeWebi d) Execute information space view e0 trace using python admin tool within TREX (dont askme what I picked)

11 Developers should not have access to production dataAns use client data only in production system use simulated data in development system (thesewere the correct answers) but there were more

12 There was question which needed ROOSOURCE as ans

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 26: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

13 What tool to handle duplicate names of HANA

14 Which extractor TA support through ODP APIAns ROOATTR

15 Verify the quality of HANA Ans a) Use sql editors b) compare data with HANA_STATISTICS c) use data service qualityprocess d) use webi report e) use SLT

Additional Notes 1 No standard business content available in HANA

2 To which components are Hierarchies available in SAP HANA Hierarchies only available Excel and ODBO

3 Can you import Roles and Security from ECC System to SAP HANA We CANNOT import roles and security from ECC system to HANA

4 What is SQL Script SQL script is used for calculation view and is a proprietary language

5 TCode to find the Tables in SAP HANA TCode SD11

6 Web intelligence is used for operational reporting

7 What is the BO Tool used for Dashboard Reports XCelsius (For Interactive Dashboards)

8 Why are Crystal Reports used Crystal Report is for developing formatted reports like P amp L Balance sheet etc

9 What is CO-PA Accelerator COPA accelerator is for Profitability analysis

10 To which Table are the Release Extractor Names added

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 27: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Release extractor names are added to the ROOSATTR Table

11 Column views(Attribute Views) are located in Schema_SYS_BICMetadata is located in Schema_SYS_BI

12 What is Metadata Manager Located in Schema _SYS_BI

13 What is Replication Agent SLT

14 What is SQL parser For Syntax check

15 Why universes are used additional security or filed names uniform etc

16 What ETL Server is used for ECC system Use SAP SLT server

17 What is SAVE POINT Save points are self-contained consistent states of the database that may be loaded withoutreading the log volumes

18 For complex logic and large volumes of data use ABAP code

19 For less volume use RFC or BAPI or RFC_READ_TABLE used

20 What is Data Foundation and Logical View

21 What is a Text join Ans 11 cardinality

22 To get the Description eg SPRAS

23 What is the purpose of Hierarchy Active = False and Hierarchy Active = True

24 What is SAVE the view and Activate the View

25 What is Restricted Measure exampleRestricted measures are used to filter the value based on the user-defined rules for theattribute values

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 28: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

26 What is Calculated Measure exampleCalculated measures are defined based on a combination of data from OLAP cubes arithmeticoperators constants and functions Ex the total sales of a productData Types (decimals numbers etc) Field Length Scale Aggregation defined in properties (summin max and count)

27 What is Private Attribute Private Attributes Private attributes are used to model analytic views and cannot be used outsidetheview Private attributes are required to link to the subject area or attribute views Private attributesadd more information to the model Private Attribute selected from a Database table

28 What Is new in SAP HANA SPS3 ndash Overview ISAP HANA Database for SAPBusiness Warehouse

middot SAP HANA as database for SAP BW 730middot Single In Memory Persistence and Storage - All BW tables are In-Memory objectsmiddot New In-memory optimized Data Store Objects (with SAP BW 73 SP5)middot New In-Memory DSO activation processmiddot New - Number Range handlingmiddot New In-memory optimized InfoCubes(with SAP BW 73 SP5)middot Simplified design and indexingmiddot Faster data loads and simplified modelingmiddot In-Memory Planning enginemiddot Based on existing Integrated Planning (BW-IP)middot Push down of OLAP engine into SAP HANA from SAP BWlsquos ABAP layermiddot Tools to seamlessly migrate BW underlying database to SAP HANA Planning

Enginemiddot In Memory operations like Disaggregation copy write-backmiddot Supporting BW ndash IP and Business ByDesignapplication use cases

29 Benefits Fast data loads (no DIMIDs)middot Upto 80 time reductionmiddot Dimensions not physically presentmiddot Simpler modeling and faster structural changesmiddot All processes all Queries and Multi Providers can remain unchanged

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 29: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

middot All processes all Queries and Multi Providers can remain unchangedFrom Raanas HANA exam-------------------use of the universe where do you use it

requirement for the analytic view table attribute view

sys_repo -gt

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Questions by Uma

1 SAP BW implemented on HANA SP13 what are the stes need to be donea Migrate the BW data into HANAb Create In-memory Indexesc Convert Info cubes into HANA object typesd

2 Backup and recovery by SAP standard a point-in-time recovery b backing up of archived log files c information model recovery d

3History =gt keeps track of object changes using the versions4 hich user hasor the analytic view table attribute view

sys_repo -gt

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 30: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Older PostsHome

Subscribe to Posts (Atom)

Posted by srinivas r at 0727 6 comments

tzhana =gt security authentication authorizationback up and recovery =gt Params Arani consulting documentnon-sap erp data extration to HANA is done by BODSextraction of data from

BICS = Business Intelligence Consumer Servies

To create analytic view what is the minimum requirement for the attributes

Recommend this on Google

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger

Page 31: 100 Sap hana interview questions

pdfcrowdcomopen in browser PRO version Are you a developer Try out the HTML to PDF API

Simple template Powered by Blogger