Which internal table type allows unique and non-unique keys?
Given the following ABAP SQL statement excerpt from an ABAP program:
SELECT SINGLE *
FROM spfli
WHERE carrid = 'LH' AND connid = '0400'
INTO @DATA(wa).
You are given the following information:
The data source spfli on line #2 is an SAP HANA database table.
spfli will be a large table with over one million rows.
This program is the only one in the system that accesses the table.
This program will run rarely.
Based on this information, which of the following general settings should you set for the spfli database table?
Note: There are 2 correct answers to this question.
What is a class defined as part of an ABAP program called?
You select a field flight_date with type DATS in the field list of a CDS view.
Which of the following expressions returns the 2-digit month from the field?
(Select 2 correct answers)
What are some principles of encapsulation?
(Select 2 correct answers)
What describes multi-column internal tables?
Which statement creates a reference variable for class CL_VEHICLE?
Given this code,
DATA(structure_variable) =
REDUCE structure_type(
INIT h_structure_variable TYPE structure_type
FOR row IN source_itab
NEXT
h_structure_variable-f1 += row-f1
h_structure_variable-f2 += row-f2 ).
Which of the following statements are correct? (Select 2 correct answers)
In a subclass sub1, you want to redefine a component of a superclass super1.
How do you achieve this?
Note: There are 2 correct answers to this question.
In a class you use the statement DATA var TYPE …
What may stand in place of the type?
(Select 2 correct answers)