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

In a booking record, how can you calculate the difference in days between the order date (type D) and the flight date (type D) of a flight?

A.

data(gv_diff_days) = conv d( gs_booking-flight_date - gs_booking-order_date ).

B.

data(gv_diff_days) = gs_booking-flight_date - gs_booking-order_date.

C.

data(gv_diff_days) = gs_booking-order_date - gs_booking-flight_date.

D.

data(gv_diff_days) = conv d( gs_booking-order_date - gs_booking-flight_date ).

What can you do in SAP S/4HANA Cloud, public edition? (2 correct)

A.

Use SAP-released extension points

B.

Use ABAP Development Tools in Eclipse (ADT)

C.

Modify SAP objects

D.

Use Web Dynpros

How can you control data access of a business user?

(Select 3 correct answers)

A.

To control the general access implicitly via an Access Control object (define role).

B.

To control the "Create, Update, and Delete access" via explicit check using AUTHORITY-CHECK.

C.

To control the "Create, Update, and Delete access" implicitly via an Access Control object (define role).

D.

To control the "Read access" implicitly via an Access Control object (define role).

E.

To control the "Read access" via explicit check using AUTHORITY-CHECK.

You have attached a system field to an input parameter of a CDS view entity as follows:

define view entity Z_ENTITY

with parameters

@Environment.systemField: #SYSTEM_LANGUAGE

language : spras

What are the effects of this annotation? (Select 2 correct answers)

A.

The value of sy-langu will be passed to the CDS view automatically both when you use the CDS view in ABAP and in another CDS view entity (view on view).

B.

You can still override the default value with a value of your own.

C.

The value of sy-langu will be passed to the CDS view automatically when you use the CDS view in ABAP but not when you use it in another view entity.

D.

It is no longer possible to pass your own value to the parameter.