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

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

Page: 1 / 3
Total 83 questions

What are advantages of using a field symbol for internal table row access? Note: There are answers to this question.

A.

The field symbol can be reused for other programs.

B.

A MODIFY statement to write changed contents back to the table is not required.

C.

The row content is copied to the field symbol instead to a work area

D.

Using a field symbol is faster than using a work area.

When processing a loop with the statement DO... ENDDO, what system variable contains the implicit loop counter?

A.

sy-linno

B.

sy-labix

C.

sy-subrc

D.

sy-index

You are designing the following select statement in ABAP Open SQL:

To adhere to the most recent ABAP SQL syntax conventions from SAP, on which line must you insert the "INTO TABLE @gt flights" clause to complete the SQL statement?

A.

#15

B.

#6

C.

#8

D.

#4

Which ABAP SQL clause allows the use of inline declarations?

A.

FROM

B.

INTO CORRESPONDING FIELDS OF

C.

INTO

D.

FIELDS

/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

For the assignment, gv_target = gv_source.

which of the following data declarations will always work without truncation or rounding? Note: There

are 2 correct answers to this question.

A.

DATA gv_source TYPE string, to DATA gv_target TYPE c.

B.

DATA gv_source TYPE c. to DATA gv_target TYPE string.

C.

DATA gv_source TYPE d. to DATA gv_target TYPE string.

D.

DATA gv_source TYPE p LENGTH 8 DECIMALS 3. to DATA gv_target TYPE p LENGTH 16 DECIMALS 2.

Exhibit:

DEFINE TABLE demo_table {

KEY field1 : REFERENCE TO abap.cint(3);

KEY field2 : abap.char(133);

@Semantics.quantity.unitOfMeasure : 'demo_table.field4'

field3 : abap.quan(2);

field4 : abap.unit(2);

}

Which field is defined incorrectly?

A.

field2

B.

field4

C.

field1

D.

field3

Which of the following string functions are predicate functions? Note: There are 2 correct answers to this question.

A.

find_any_not_of()

B.

contains_any_of()

C.

count_any_of()

D.

matchesQ

Which type of legacy code does SAP recommend you eliminate when you review modifications as part of an SAP S/4HANA system conversion? Note: There are 2 correct answers to this question.

A.

Code that supports a critical business process

B.

Code that now is identical to a standard SAP object

C.

Code that has less than 10% usage according to usage statistics

D.

Code that can be redesigned as a key user extension

Given the following Core Data Service View Entity Data Definition:

1 @AccessControl.authorizationCheck: #NOT_REQUIRED

2 DEFINE VIEW ENTITY demo_flight_info_join

3 AS SELECT

4 FROM scarr AS a

5 LEFT OUTER JOIN scounter AS c

6 LEFT OUTER JOIN sairport AS p

7 ON p.id = c.airport

8 ON a.carrid = c.carrid

9 {

10 a.carridAS carrier_id,

11 p.idAS airport_id,

12 c.countnumAS counter_number

13 }

In what order will the join statements be executed?

A.

scarr will be joined with scounter first and the result will be joined with sairport.

B.

sairport will be joined to scounter first and the result will be joined with scarr.

C.

scarr will be joined with sairport first and the result will be joined with scounter.

D.

scounter will be joined to sairport first and the result will be joined with scarr.