Month End Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: xmas50

SAP C_ABAPD_2507 - SAP Certified Associate - Back-End Developer - ABAP Cloud

Page: 1 / 3
Total 80 questions

Which of the following are personas under the SAP S/4HANA Cloud Extensibility Framework?

(Select 2 correct answers)

A.

Report Writer

B.

Business Expert

C.

Workflow Administrator

D.

Citizen Developer

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 can be translated?

(Select 3 correct answers)

A.

Content of a string variable

B.

Data element texts

C.

Text literal

D.

Message class

E.

Text symbol

Which statement creates a reference variable for class CL_VEHICLE?

A.

TYPES lo_vehicle TYPE cl_vehicle.

B.

DATA lo_vehicle TYPE REF OF cl_vehicle.

C.

DATA lo_vehicle LIKE REF cl_vehicle.

D.

DATA lo_vehicle TYPE REF TO cl_vehicle.

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.

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”

Which of the following are valid ABAP SQL type conversions? (Select 3 correct answers)

A.

CAST( 'field_f1' AS CHAR( 8 ) ) AS f_char8

B.

CAST( field_f2 AS N( 8 ) ) AS f_n8

C.

CAST( 29 AS INT8 ) AS f_int8

D.

CAST( field_f5 AS DEC( 15, 2 ) ) AS f_dec_15_2

E.

CAST( 34 AS I ) AS f_i34

Given the following data definitions:

DATA: text TYPE string VALUE 'Date 1972-04-01 is in ISO format'.

DATA: regex TYPE string VALUE '[0-9]{4}(-[0-9]{2})(2}'.

In which of the following functions can you use regular expressions?

(Select 3 correct answers)

A.

reverse( val = text pcre = regex )

B.

match( val = text pcre = regex )

C.

condense( val = text pcre = regex )

D.

matches( val = text pcre = regex )

E.

find( val = text pcre = regex )

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

A.

Hashed

B.

Sorted

C.

Standard

You want to extract date information of a flight date (f_info) and format it like yyyy-dd-mm using the following code:

SELECT FROM TABLE dbtab1

FIELDS f1,

extract_year( f_info ) && '-' && extract_month( f_info ) && '-' && extract_day( f_info ) ...

For the extract_* functions to work, what can be the data dictionary types of f_info?

Note: There are 3 correct answers to this question.

A.

TIMS

B.

UTCLONG

C.

TIMESTAMP

D.

DATS

E.

TIMN