New Year Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: save70

Free and Premium SAP E_HANAAW_17 Dumps Questions Answers

Page: 1 / 7
Total 174 questions

SAP Certified Development Specialist - ABAP for SAP HANA 2.0 Questions and Answers

Question 1

What are the elements of ABAP Database Integration? There are 3 correct answers to this question.

Options:

A.

Client database handling

B.

Application server

C.

DB client-server

D.

Other DB

E.

DB For ABAP

Buy Now
Question 2

List down the elements involved in User Management and Security in SAP Hana? There are 3 correct answers to this question

Options:

A.

Manage users

B.

Assign Job security

C.

Assign security

D.

Work Management

E.

Create users

Question 3

ANSI SQL owns features and adds languages. These languages divided into three parts. What are they? There are 3 correct answers to this question.

Options:

A.

Data Manipulation Language

B.

The Data Control Language

C.

The Database Language

D.

The Data Definition Language

E.

Data Transferred Language

Question 4

What is the main function of Static Code Analysis? Please choose the correct answer.

Options:

A.

To detect code that would lead to functional or performance issues When migrating to SAP HANA

B.

Integrates with SAP Solution Manager

C.

Integrated into ABAP Development Tools and ABAP Workbench

D.

ABAP source code with performance optimization potential

Question 5

Which data sources can you use for SAP list viewer with integrated data access? There are 3 correct answers to this question.

Options:

A.

CDS View

B.

Database procedure

C.

External view

D.

Database Table

E.

Internal table

Question 6

Which code-to-data capability is responsible for the Optimizations & Translation of "Open SQL SELECT FOR ALL ENTRIES clauses into native SQL?. Please choose the correct answer.

Options:

A.

Database Optimization

B.

Transparent Optimizations

C.

HANA Specific features

D.

Buffer system Optimization

Question 7

How can you check if Core Data Services (CDS) views with scalar input parameters can be used in Open SQL queries in your system?

Options:

A.

Use the static method use_features of class cl_abap_dbfeatures.

B.

Perform a static code check using the FUNCTIONAL_DB variant.

C.

Check the Open SQL statement in the Explain SQL Statement transaction (SDBE).

D.

Check the value of the ABAP system field sy-cdsfeatures.

Question 8

Your ABAP program contains an Open SQL join of two client-dependent tables. You want to replace this with a native SQL

SELECT statement. Which of the following changes to the SELECT statement can you use to retrieve the same data as

before?

There are 2 correct answers to this question

Options:

A.

Include the client field in the field list.

B.

Include the client field in the WHERE condition.

C.

Include the client field in the join condition.

D.

Use the CLIENT SPECIFIED addition.

Question 9

When are referential joins executed in analytical views? Choose the correct answer

Options:

A.

When all the tables are optimized

B.

When fields are selected

C.

When fields are optimized

D.

When fields from both the tables are requested

Question 10

Which of the statements are true for SQLScript? (2 answers)

Options:

A.

SQLScript is an open standard.

B.

SQLScript is used to push down data intensive logic into the database.

C.

SQLScript is a collection of extensions to SQL.

Question 11

Which character is used to escape host variables in the new Open SQL syntax?

Options:

A.

* (asterisk)

B.

@ (at)

C.

: (colon)

D.

~ (tilde)

Question 12

What are the main points of SAP HANA High Availability Per Datacenter that are available even in the event of a disaster? There are 2 correct answers to this question

Options:

A.

Active clusters for all servers

B.

Shared file systems for only one server

C.

Services-Name and index server on all nodes

D.

High availability configuration

Question 13

In ABAP Development Tools for SAP NetWeaver, you execute the ABAP Test Cockpit on an ABAP program to

find performance optimization potential.

Where can you find the result of the static code checks?

Options:

A.

In the Problems view

B.

In the Project Explorer view

C.

In the Performance Analysis view

D.

In the Outline view of the ABAP Performance perspective

Question 14

You want to define an ABAP Core Data Services (CDS) view that totals the NET_AMOUNT column for each sales order (column SOJD). Which SELECT statement would you use in the definition? Please choose the correct answer.

Options:

A.

select from snwd_so {so_id( sum(net_amount) as sum_amount} order by sojd

B.

select from snwd_so {so_id( sum(net_amount) as sum_amount} group by sojd

C.

select from snwd_so {sojd, sum(net_amount) as sum_amount}

D.

select from snwd_so {so_id( sum(net_amount) as sum_amount} group by net_amount

Question 15

Explain the Authorization Concept and the types of privileges associated with it? There are 3 correct answers to this question

Options:

A.

Analytic privileges

B.

Package privileges

C.

Application privileges

D.

Object privileges

E.

System privileges

Question 16

What can you include in the projection list of a Core Data Services (CDS) view? 3 ans

Options:

A.

ABAP system fields such as sy-langu or sy-mandt \/ CI String constants and literal values

B.

Aggregation functions over fields of ABAP Dictionary tables used in the FROM clause

C.

A field from the structural output of an ABAP Managed Database Procedure used in the FROM clause

D.

A field from the projection list of another CDS view used in the FROM clause

Question 17

What is the purpose of an ABAP project in ABAP Development tools for eclipse? (2 right answers)

Options:

A.

It provides access to all ABAP repository objects in an ABAP system.

B.

It represents the connection to an ABAP system

C.

It represents the connection to the SAP HANA server

D.

It is used to transport ABAP repository objects

Question 18

What allows you to resolve errors quickly or warnings reported about the code? Please choose the correct answer.

Options:

A.

Code execution

B.

Quick Fix

C.

Debug perspective

D.

ABAP debugger

Question 19

Your development team needs to include SAP HANA objects into an ABAP workbench request. You want to use SAP HANA Transport for ABAP (HTA) and NOT the SAP HANA Transport Container (HTC).

Why would you choose HTA?

Note: There are 2 correct answers to this question.

Options:

A.

Because you can manually re-deploy objects after a failed import

B.

Because you always transport entire SAP HANA content packages

C.

Because you use the technique that is recommended by SAP

D.

Because you automatically add changed objects to the transport request

Question 20

What all are the steps to perform -To enable type-ahead for an input field on a screen? There are 3 correct answers to this question.

Options:

A.

Process on all the input fields

B.

Automatic updates of all the input fields

C.

Check Pre-Requisites

D.

Identify Elementary Search Help

E.

Switch on proposal search for input fields

Question 21

Which of the following ABAP language elements are mandatory for the implementation of a method as an ABAP Managed Database Procedure? 3 ans

Options:

A.

FOR db (db = HDB...)

B.

LANGUAGE dbjang (dbjang = SQLSCRIPT...)

C.

BY DATABASE PROCEDURE

D.

CLIENT SPECIFIED

E.

AUTHORIZATION db_auth (db_auth = SYSTEM ...)

Question 22

You want to develop an ABAP application for SAP HANA using the front-end image of your Amazon Web Service (AWS) trial system. Which plug-ins do you need to add to the existing Eclipse installation?

Options:

A.

All plug-ins provided by SAP Development Tools for Eclipse

B.

SAP HANA Tools

C.

ABAP Development Tools for SAP NetWeaver

D.

None; everything is preconfigured

Question 23

While creating a Graphical Calculation view, what are the options available in Tools palette? (4 right answers)

Options:

A.

Union

B.

Cast

C.

Aggregation

D.

Projection

E.

Join

F.

Distinct

Question 24

You execute a Native SQL query statement to retrieve a list of information using the corresponding ABAP

Database Connectivity (ADBC) API method.

Which additional steps are necessary to retrieve the result set into an internal table? 2 ans

Options:

A.

Close the CL_SQL_STATEMENT object to release the resources.

B.

Use an Open SQL query that uses the JOIN between the result set and the internal table as a data source.

C.

Bind a reference to the internal table as an output parameter to the CL_SQL_RESULT_SET instance.

D.

Fetch the result using the next_package method of class CL_SQL_RESULT_SET.

E.

Fetch the result using the fetch method of class CL_SQL_EXECUTE.

Question 25

What are the key points that should be kept in mind while performing the Nonautomatic update in SAP HANA Transport Container? (2 right answers)

Options:

A.

Changes to Delta Container

B.

You need to refresh the content of the container manually

C.

Automatic release of units

D.

Take snapshot manually before releasing of the container

Question 26

You changed an SAP HANA object that you transported using an SAP HANA Transport container. You want to release the transport request with your changes. In which sequence do you perform activities in the ABAP development system immediately before the release? Please choose the correct answer.

Options:

A.

Open the SAP HANA transport containerSelect take snapshot and Save

Activate the SAP HANA Transport Container

B.

Open the SAP HANA delivery unit Select take snapshot and Save Activate the SAP HANA Delivery unit

Activate the SAP HANA transport container

C.

Open the ABAP transport request Select take snapshot and Save

Activate the SAP HANA transport container

D.

Open the package Select take snapshot and Save Activate the SAP HANA Delivery unit

Activate the SAP HANA transport container

Page: 1 / 7
Total 174 questions