When accessing the subclass instance through go_super, what can you do? Note: There are 2 correct answers to this question.
<some coding>
IF <condition>.
RAISE EXCEPTION TYPE zcx1
EXPORTING
param1 = value1
param2 = value2
previous = value3.
ENDIF.
What are valid statements? Note: There are 2 correct answers to this question.
You have the following CDS definition:
Which of the following ON conditions must you insert in place of "???"?
Which of the following results in faster access to internal tables? Note: There are 3 correct answers to this question.
After you created a database table in the RESTful Application Programming model, what do you create next?
Which restrictions exist for ABAP SQL arithmetic expressions? Note: There are 2 correct answers to this question.
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.
In ABAP SQL, which of the following can be assigned an alias? Note: There are 2 correct answers to this question.
Which of the following are parts of the definition of a new database table?Note: There are 2 correct answers to this question.
You have two internal tables itab1 and itab2.What is true for using the expression itab1 = corresponding #( itab2 )? Note: There are 2 correct answers to this question.
When does SAP recommend to use a sorted or a hashed table respectively? Note: There are 2 correct answers to this question.
Which extensibility type does SAP recommend you use to enhance the existing UI for an SAP Fiori app?
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
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?
Which of the following string functions are predicate functions? Note: There are 2 correct answers to this question.
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?