Weekend Sale - Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70dumps

C_ABAPD_2309 Questions and Answers

Question # 6

Exhibit:

What are valid statements? Note: There are 3 correct answers to this question.

A.

go_if 1 may call method ml with go_ift->ml().

B.

Instead of go call = NEW #(...) you could use go ifl = NEW cll(. ... ).

C.

go_cll may call method ml with go_dl->ifl-ml().

D.

Instead of go_call = NEW #() you could use go_iff - NEW #(...).

E.

go_ifl may call method m2 with go if->m2(...).

Full Access
Question # 7

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

A.

Sorted

B.

Hashed

C.

Standard

Full Access
Question # 8

In ABAP SQL, which of the following retneves the association field _Airline-Name of a CDS view?

A.

\ Airnline-Name

B.

@_Airline-Name

C.

/_Anine-Name

D.

*_Airline-Name

Full Access
Question # 9

In this nested join below in which way is the join evaluated?

A.

From the left to the right in the order of the tables:

1.

a is joined with b

2.

b is joined with c

B.

From the right to the left in the order of the tables:

1.

b is joined with c.

2.

b is joined with a.

C.

From the top to the bottom in the order of the on conditions

1.

b is joined with c

2.

a is joined with b

D.

From the bottom to the top in the order of the on conditions:

1.

a is joined with b

2.

b is joined with c

Full Access
Question # 10

In RESTful Application Programming, which EML statement retrieves an object?

A.

Find entity

B.

Select entity

C.

Get entity

D.

Read entity

Full Access
Question # 11

You want to define the following CDS view entity with an input parameter:

Define view entity Z_CONVERT With parameters currency : ???

Which of the following can you use to replace "???? Note: There are 2 correct answers to this

question.

A.

built-in ABAP type

B.

A built-in ABAP Dictionary type

C.

A data element

D.

A component of an ABAP Dictionary structure

Full Access
Question # 12

/DMO/I_Connection is a CDS view.

What variable type is connection full based on the following code? DATA connection full TYPE

/DMD/I_Connection.

A.

Simple variable

B.

Structure

C.

Internal Table

Full Access
Question # 13

Which of the following are features of Core Data Services? Note: There are 3 correct answers to this question.

A.

Inheritance

B.

Associations

C.

Annotations

D.

Delegation

E.

Structured Query Language (SQL)

Full Access
Question # 14

What are some of the reasons that Core Data Services are preferable to the classical approach to data modeling? Note: There are 2 correct answers to this question.

A.

They implement code pushdown.

B.

They avoid data transfer completely.

C.

They transfer computational results to the application server.

D.

They compute results on the application server.

Full Access
Question # 15

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

A.

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

B.

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

C.

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

D.

Activation successful

Full Access
Question # 16

Which of the following are incomplete ABAP types? Note: There are 2 correct answers to this question.

A.

String

B.

T

C.

C

D.

P

Full Access
Question # 17

In the following ABAP SQL code, what are valid case distinctions? Note: There are 2 correct answers to this question.

A)

B)

C)

D)

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Full Access
Question # 18

Why would you use Access Controls with CDS Views? Note: There are 2 correct answers to this question.

A.

Only the data corresponding to the user's authorization is transferred from the database to the application layer.

B.

The system field sy-subrc is set, giving you the result of the authorization check

C.

You do not have to remember to implement AUTHORITY CHECK statements.

D.

All of the data from the data sources is loaded into your application automatically and filtered there according to the user's authorization.

Full Access
Question # 19

As a consultant you are posed the following question from a client who is using SAP S/4HANA Cloud,

public edition and also SAP BTP, ABAP environment.

"We are currently using an SAP Fiori app based on SAP Fiori elements that analyzes open orders. We

have determined that it should be extended via a new button on the UI which will perform an on-

the-fly calculation and display the result in a quick popup for the enduser. We have been informed by

SAP that all underlying stack layers for the SAP Fiori app have been extensibility enabled."

Based on this which of the following extension types would you recommend to the customer to add

the new button?

A.

RAP BO Behavior Extension

B.

SAP HANA database table extension

C.

RAP BO Node Extension

D.

Business Service Extension

Full Access
Question # 20

In the assignment, data (gv_result) = 1/8. what will be the data type of gv_result?

A.

OTYPE I

B.

TYPE DEFLOAT 16

C.

TYPE P DECIMALS 3

D.

TYPE P DECIMALS 2

Full Access
Question # 21

In class ZCL_CLASS_A, you use the statement DATA var TYPE ***

What may stand in place of ***? Note: There are 2 correct answers to this question.

A.

The name of a type defined privately in class ZCL_CLASS_A

B.

The name of a data element from the ABAP Dictionary

C.

The name of a type defined privately in another class

D.

The name of a domain from the ABAP Dictionary

Full Access
Question # 22

In a test method you call method cl_abap_unit_assert=>assert_equals( .. ) in the following way:

CLASS Itcl1 DEFINITION FOR TESTING RISK LEVEL HARMLESS DURATION SHORT.

PRIVATE SECTION.

METHODS m1 FOR TESTING.

ENDCLASS.

CLASS Itcl1 IMPLEMENTATION.

METHOD m1.

DATA: go_test_object TYPE REF TO zcl_to_be_tested.

CONSTANTS: Ico_exp TYPE string VALUE 'test2'.

CREATE OBJECT go_test_object.

cl_abap_unit_assert=>assert_equals(

EXPORTING

act = go_class->mv_attribute

exp = lco_exp

msg = 'assert equals failed ' && go_test_object->mv_attribute && ' ' && lco_exp

ENDMETHOD.

ENDCLASS.

What will happen if method parameters act and exp are not equal?

A.

The tested unit will automatically be appended to a default ABAP Test Cockpit Variant.

B.

The tested unit cannot be transported.

C.

The test will be aborted.

D.

There will be a message in the test log.

Full Access
Question # 23

What are some properties of database tables? Note: There are 2 correct answers to this question.

A.

They store information in two dimensions.

B.

They may have key fields.

C.

They can have any number of key fields.

D.

They can have relationships to other tables.

Full Access
Question # 24

In a subclass subl you want to redefine a component of a superclass superl. How do you achieve this? Note: There are 2 correct answers to this question.

A.

You add the clause REDEFINITION to the component in subl.

B.

You implement the redefined component for a second time in superl.

C.

You implement the redefined component in subl.

D.

You add the clause REDEFINITION to the component in superl.

Full Access