SAP C_ABAPD_2309 - SAP Certified Associate - Back-End Developer - ABAP Cloud
What are advantages of using a field symbol for internal table row access? Note: There are answers to this question.
When processing a loop with the statement DO... ENDDO, what system variable contains the implicit loop counter?
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?
Which ABAP SQL clause allows the use of inline declarations?
/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.
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.
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?
Which of the following string functions are predicate functions? Note: There are 2 correct answers to this question.
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.
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?