New Year Sale Special - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

What RESTful Application Programming feature is used to ensure the uniqueness of a semantic key?

A.

Action

B.

Validation

C.

Determination

D.

None of the above

Given the following Core Data Services (CDS) View Entity data definition:

DEFINE VIEW ENTITY demo_cds_view_entity

AS SELECT FROM spfli

{

cityfrom,

cityto,

carrid,

connid

}

When you attempt to activate the definition, what will be the response?

A.

Activation error due to no key defined

B.

Activation error due to missing annotation “@AbapCatalog.sqlViewName”

C.

Activation will be successful

D.

Activation error due to missing annotation “@AccessControl.authorizationCheck”

Given the following code:

DATA gv_text1 TYPE string. "#EC_NEEDED

DATA gv_text2 TYPE string ##NEEDED.

What are valid statements? (Select 2 correct answers)

A.

The pseudo-comment is checked by the syntax checker.

B.

The pragma is not checked by the syntax checker.

C.

##NEEDED is checked by the syntax checker.

D.

#EC_NEEDED is not checked by the syntax checker.

You select a field flight_date with type DATS in the field list of a CDS view.

Which of the following expressions returns the 2-digit month from the field?

(Select 2 correct answers)

A.

substring( flight_date, 5, 2 )

B.

right( left( flight_date, 6 ), 2 )

C.

left( right( flight_date, 6 ), 2 )

D.

substring( flight_date, 4, 2 )

Setting a field to read-only in which object would make the field read-only in all applications of the RAP model?

A.

Projection view

B.

Behavior definition

C.

Metadata extension

D.

Service definition

Which language is used to add or change data of a business object in RAP?

A.

Data manipulation language

B.

Entity manipulation language

C.

Data modification language

D.

RAP editing language

Given the following Core Data Service View Entity Data Definition:

@AccessControl.authorizationCheck: #NOT_REQUIRED

DEFINE VIEW ENTITY demo_flight_info_union AS

SELECT FROM scustom {

KEY id,

KEY 'Customer' AS partner,

name,

city,

country

}

UNION

SELECT FROM stravelag {

KEY agencynum AS id,

'Agency' AS partner,

name,

city,

country

}

When you attempt to activate the definition, what will be the response?

A.

Activation error because the field types of the union do not match

B.

Activation error because the key fields of the union do not match

C.

Activation successful

D.

Activation error because the field names of the union do not match

Which of the following results in faster access to internal tables? (Select 3 correct answers)

A.

In a sorted internal table, specifying the primary key completely.

B.

In a standard internal table, specifying the primary key partially from the left without gaps.

C.

In a sorted internal table, specifying the primary key partially from the left without gaps.

D.

In a hashed internal table, specifying the primary key partially from the left without gaps.

E.

In a hashed internal table, specifying the primary key completely.

Which of the following ABAP SQL aggregate functions accept an ABAP SQL expression (e.g., f1 + f2) as input?

(Select 2 correct answers)

A.

avg()

B.

max()

C.

count(*)

D.

sum()

In RESTful Application Programming, a business object contains which parts?

Note: There are 2 correct answers to this question.

A.

Process definition

B.

Behavior definition

C.

CDS view

D.

Authentication rules