Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exc65

What RAP object contains only the fields required for a particular app?

A.

Projection view

B.

Metadata extension

C.

Database view

D.

Data model view

What describes multi-column internal tables?

A.

They use one incomplete data type.

B.

They are based on a structured row type.

C.

They must contain nested components.

D.

They use one complete data type.

Which RAP object can be used to organize the display of fields in an app?

A.

Metadata extension

B.

Data model view

C.

Projection view

D.

Service definition

Constructors have which of the following properties?

(Select 2 correct answers)

A.

The constructor is automatically called during instantiation.

B.

The constructor can have importing parameters.

C.

The constructor must be the first method called by the client.

D.

The constructor can have returning parameters.

When defining a METHOD, which parameter type can only have 1 value?

A.

IMPORTING

B.

EXPORTING

C.

CHANGING

D.

RETURNING

After you created a database table in the RESTful Application Programming model, what do you create next?

A.

A data view

B.

A service definition

C.

A metadata extension

D.

A projection view

When you create an exception class, what does SAP recommend you do?

(Select 3 correct answers)

A.

Define corresponding public attributes, if you want to pass context-specific values to placeholders of a message.

B.

Inherit from cx_static_check, if you want a warning at design time that the exception can never be raised.

C.

Inherit from cx_static_check, if you want a warning at design time that the exception will not be caught.

D.

Inherit from cx_no_check, if you want to reuse messages from a system exception class.

E.

Implement interface if_t100_message, if you want to reuse messages from a message class.

Which internal table type allows unique and non-unique keys?

A.

Hashed

B.

Sorted

C.

Standard

While debugging an ABAP program, you want the program to stop whenever the value of a variable changes. Which of the following do you use?

A.

Exception breakpoint

B.

Watchpoint

C.

Conditional breakpoint

Given the following code which defines an SAP HANA database table in SAP S/4HANA Cloud, public edition:

@EndUserText.label : 'Draft table for entity /DMO/R_AGENCY'

@AbapCatalog.tableCategory : #TRANSPARENT

@AbapCatalog.deliveryClass : #A

@AbapCatalog.dataMaintenance : #RESTRICTED

define table /dmo/agency_d {

key mandt : mandt not null;

key agencyid : /dmo/agency_id not null;

key draftuuid : sdraft_uuid not null;

name : /dmo/agency_name;

street : /dmo/street;

postalcode : /dmo/postal_code;

city : /dmo/city;

}

You are a consultant and the client wants you to extend this SAP database table with a new field called zz_countrycode on line #14.

Which of the following is the correct response?

A.

The database table can be extended whether extensibility enabled or not if it is assigned to a software component of type “Standard ABAP”.

B.

The database table cannot be extended since it has not been extensibility enabled by SAP.

C.

The database table can be extended once it has extensibility been enabled by the customer.

D.

The database table can be extended whether extensibility enabled or not if it is assigned to a software component of type “ABAP Cloud”.