SAP C_ABAPD_2309 Übungsprüfungen
Zuletzt aktualisiert am 26.04.2025- Prüfungscode: C_ABAPD_2309
- Prüfungsname: SAP Certified Associate - Back-End Developer - ABAP Cloud
- Zertifizierungsanbieter: SAP
- Zuletzt aktualisiert am: 26.04.2025
Which of the following are ABAP Cloud Development Model rules?
Note: There are 2 correct answers to this question.
- A . Use public SAP APIs and SAP extension points.
- B . Build ABAP RESTful application programming model-based services.
- C . Reverse modifications when a suitable public SAP API becomes available.
- D . Build ABAP reports with either ABAP List Viewer (ALV) or SAP Fiori.
After you created a database table in the RESTful Application Programming model, what do you create next?
- A . A metadata extension
- B . A projection view
- C . A data model view
- D . A service definition
After you created a database table in the RESTful Application Programming model, what do you create next?
- A . A metadata extension
- B . A projection view
- C . A data model view
- D . A service definition
Refer to exhibit.
Which of the following ON conditions must you insert in place of "???"?
- A . ON Z_Sourcel.camer_id = 7_Source2 carrier_id
- B . ON Sprojection Camer=Source2 carrier_id
- C . ON Sprojection. Carrier Source2.carrier
- D . ON Sprojection.carrier_id=Z_Source2.carrier_id
Which RESTful Application Programming object can be used to organize the display of fields in an app?
- A . Data model view
- B . Metadata extension
- C . Service definition
- D . Projection view
Which of the following are features of Core Data Services? Note: There are 3 correct answers to this question.
- A . Inheritance
- B . Associations
- C . Annotations
- D . Delegation
- E . Structured Query Language (SQL)
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?
- A . The tested unit will automatically be appended to a default ABAP Test Cockpit Variant.
- B . The tested unit cannot be transported.
- C . The test will be aborted.
- D . There will be a message in the test log.