What is the purpose of a foreign key relationship between two tables in the ABAP Dictionary?
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.
When processing a loop with the statement DO... ENDDO, what system variable contains the implicit loop counter?
Which patterns raise an exception? Note: There are 3 correct answers to this question.
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?
In the assignment, data (gv_result) = 1/8. what will be the data type of gv_result?
Which of the following actions cause an indirect change to a database table requiring a table conversion? Note: There are 2 correct answers to this question.
Image:
In the following ABAP SQL code, what are valid case distinctions? Note: There are 2 correct answers to this question.
A)
B)
C)
D)
Setting a field to read-only in which object would make the field read-only in all applications of the RESTful Application Programming model?
In RESTful Application Programming, a business object contains which parts? Note: There are 2 correct answers to this question.
Which of the following ABAP SQL statements are valid? Note: There are 2 correct answers to this question.
Why would you use Access Controls with CDS Views? Note: There are 2 correct answers to this question.
Exhibit
Which of the following ABAP SQL snippets are syntactically correct ways to provide a value for the parameter on line #4? Note: There are 2 correct answers to this question
When accessing the subclass instance through go_super, what can you do? Note: There are 2 correct answers to this question.
When processing an internal table with the statement LOOP AT itab... ENDLOOP, what system variable contains the current row number?