SAP ABAP Back-End Developer
|
|
Title of test:![]() SAP ABAP Back-End Developer Description: C_ABAPD_2507: SAP ABAP Cloud - Back-End Developer |



| New Comment |
|---|
NO RECORDS |
|
What elements can you add to enhance a business object in the ABAP RESTful application programming model? There are 2 correct answers to this question. State management routines. Action. Field. Private methods. Given the following Core Data Service View Entity Data Definition: @AccessControl.authorizationCheck: #NOT_REQUIRED DEFINE VIEW ENTITY demo_flight_info_join AS SELECT FROM scarr AS a LEFT OUTER JOIN scounter AS c LEFT OUTER JOIN sairport AS p ON p.id = c.airport ON a.carrid = c.carrid { a.carrid AS carrier_id, p.id AS airport_id, c.countnum AS counter_number } In what order will the join statements be executed? Please choose the correct answer. scarr will be joined with sairport first and the result will be joined with scounter. scounter will be joined to sairport first and the result will be joined with scarr. scarr will be joined with scounter first and the result will be joined with sairport. sairport will be joined to scounter first and the result will be joined with scarr. In a test method you call method cl_abap_unit_assert=>assert_equals( ..) in the following way: CLASS ltcl1 DEFINITION FOR TESTING RISK LEVEL HARMLESS DURATION SHORT. PRIVATE SECTION. METHODS m1 FOR TESTING. ENDCLASS. CLASS ltcl1 IMPLEMENTATION. METHOD m1. DATA: go_test_object TYPE REF TO zcl_to_be_tested. CONSTANTS: lco_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? Please choose the correct answer. The tested unit will automatically be appended to a default ABAP Test Cockpit Variant. The tested unit cannot be transported. The test will be aborted. There will be a message in the test log. Which of the following are ABAP Cloud Development Model rules? There are 2 correct answers to this question. Build ABAP RESTful application programming model-based services. Use public SAP APIs and SAP extension points. Build ABAP reports with either ABAP List Viewer (ALV) or SAP Fiori. Reverse modifications when a suitable public SAP API becomes available. In the RESTful Application Programming model where do you implement non-standard operations for customized business-logic behavior? Please choose the correct answer. In an action. In a validation. In a response. In a determination. In a subclass subl you want to redefine a component of a superclass superl. How do you achieve this? There are 2 correct answers to this question. You add the clause REDEFINITION to the component in superl. You implement the redefined component in subl. You implement the redefined component for a second time in superl. You add the clause REDEFINITION to the component in subl. Which statement reads a single row from a database table? Please choose the correct answer. READ TABLE <tablename> WITH TABLE KEY ... READ TABLE <tablename> ... SELECT <tablename> ... SELECT SINGLE <tablename> ... You want to enhance a business object to retrieve a default company code that is selected from the database. Which extension type must you use? Please choose the correct answer. Action. Validation. Association. Determination. What considerations are important when implementing interfaces in ABAP? There are 3 correct answers to this question. Static methods can be implemented in an interface. Implementing classes may declare the interface in any visibility section. Implementing classes must declare the interface in their public section. Static methods, instance methods, static events, and instance events are possible interface components. Instance methods are not implemented in an interface. With the following class definition, what is the correct syntax for calling method b? (Note: lo_a is a reference variable for class ZCL_A.) CLASS zcl_a DEFINITION PUBLIC. PUBLIC SECTION. CLASS-METHODS b. ENDCLASS. Please choose the correct answer. zcl_a->b( ). zcl_a=>b( ). lo_a->b( ). lo_a=>b( ). |





