Sap abap final nuevo_02
![]() |
![]() |
![]() |
Título del Test:![]() Sap abap final nuevo_02 Descripción: examen de academi |




Comentarios |
---|
NO HAY REGISTROS |
In RESTful Application Programming, a business object contains which parts? Note: There are 2 correct answers to this question. CDS view. Behaviour definition. Process definition. Authentication rules. Which of the following are rules that extensions in SAP S/4HANA Cloud, public edition must adhere to? Note: There are 3 correct answers to this question. Use tier 2 wrappers to enable access to non-released SAP APIs. Modify SAP objects in exceptional cases only. Use cloud-enabled and released technologies. Extend SAP objects through predefined extension points. Use released remote or local SAP APIs. Which of the following Core Data Services built-in functions returns a result of type INT1? Note: There are 2 correct answers to this question. dats_days_between. dats_add_days. ats_add_months. dats_is_valid. You have two database tables - ZDEPARTMENTS and ZEMPLOYEES. They are linked by a foreign key relationship: ZEMPLOYEES is the foreign key table and ZDEPARTMENTS is the check table. A department may have any number of employees (including none at all). What is the correct cardinality of the foreign key relationship?. [0..*,1]. [0..1,1]. [1,1]. [1,1]. In what order are objects created to generate a RESTful Application Programming application? D.Service definition C.Data model view A.Projection view B.Database table E.Service binding. E, A, D, B, C. A, C, E, D, B. B, C, A, D, E. A, B, C, D,E. Which of the following are valid ABAP SQL type conversions? Note: There are 3 correct answers to this question. CAST (field_f2 as N (8)) AS f_n8. CAST (field_f5 as DEC (15,2)) AS f_dec_15_2. CAST (34 as I) AS f_i34. CAST (29 as INT8) AS f_int8. CAST ('field_f1' as CHAR (8))) AS f_chars. How can you execute test classes? Note: There are 3 correct answers to this question. Interactively by calling function "Run as a unit test" from within the tested object. As a mass test when releasing a transport request with the ABAP Transport Organizer. Interactively by calling function "Run as a unit test" from within the test class. Interactively during the release of transport request. As a mass test when executing an ABAP Test Cockpit (ATC) check variant. What is a class defined as part of an ABAP program called?. Local class. Global class. Local variable. Global variable. Which function call produces the string 'LORE IPSUM FACTUM'?. to_upper( condense( 'Lore IpsumFactum' ) ). from_mixed( val = 'LoreIpsumFactum' sep=. to mixed(val = 'Lore IpsumFactum' sep=. condense to_upper('LoreIpsumFactum' ) ). Given this code, DATA(structure_variable) REDUCE structure_type ( INIT h_structure_variable TYPE structur e_type FOR row IN source_itab NEXT Answer: A h_structure_variable-f1 += row-f1 h_structure_variable-f2+= row-f2 which of the following statements are correct? Note: There are 2 correct answers to this question. Components of h_structuree_variable will be copied to same-named components of structure_variable. row is a predefined name and cannot be changed. The REDUCE expression creates a loop over source_itab. This REDUCE expression may produce a result of multiple rows. Which statement creates a reference variable for class CL_VEHICLE?. TYPES lo_vehicle TYPE cl_veehicle. DATA lo_vehicle TYPE REF TO cl vehicle. DATA lo_vehicle LIKE REF cll_vehicle. DATA lo_vehicle TYPE REF OF cl_vehicle. Given the following code, DATA gv_text1 TYPE string. "#EC_NEEDED DATA gv_text2 TYPE string ##NEEDED. What are valid statements? Note: There are 2 correct answers to this question. #EC_NEEDED is not checke d by the syntax checker. ##NEEDED is checked by the syntax checker. The pseudo-comment is checked by the syntax checker. The pragma is not checked by the syntax checker. What are some principles of encapsulation? Note: There are 2 correct answers to this question. Attributes can be changed by the client program directly. Attributes cannot be changed. Attributes can be changed through public class methods. Attributes can only be changed by the class. Which statement can you use to change the contents of a row of data in an internal table?. INSERT. MODIFY. APPEND. UPDATE. In a booking record, how can you calculate the difference in days between the order date (type D) and the flight date (type D) of a flight?. data(gv_diff_days) = conv d( gs_booking-order_dategs_booking-flight_date). data(gv_diff_days) = gs_booking-flight_dategs_booking-order_date. data(gv_diff_days) conv d( gs_booking-flight_dategs_booking-order_date). data(gv_diff_days) = gs_booking-order_date - gs_booking-flight_date. While debugging an ABAP program, you want the program to stop whenever the value of a variable change. Which of the following do you use?. Exception. breakpoint Watchpoint. Conditional breakpoint. While debugging an ABAP program, you want the program to stop whenever the value of a variable changes. Which of the following do you use?. Exception breakpoint. Watchpoint. Conditional breakpoint. How can you control data access of a business user? Note: There are 3 correct answers to this question. To control the general access implicitly via an Access Control object (define role). To control the "Read access" implicitly via an Access Control object (define role). To control the "Create, Update, and Delete access" implicitly via an Access Control object (define role). To control the "Create, Update, and Delete access" via explicit check using AUTHORITY-CHECK. To control the "Read access" via explicit check using AUTHORITY-CHECK. Which function call returns 0?. find( val = 'FIND Found found' sub = 'F' occ = -2 case = abap_true ). find( val = 'find FOUND Found' sub = 'F' occ = -2 case = abap_false ). find( val = 'FIND FOUND Found' sub = 'F' ). find( val = 'find Found FOUND' sub = 'F' occ = -2 ). What are valid statements? Note: There are 3 correct answers to this question. Instead of go_cl1 = NEW #( ... ) you could use go_if1 = NEW cl1( ... ). go_if1 may call method m1 with go_if1->m1( ... ). go_cl1 may call method m1 with go_cl1->if1~m1( ... ). go_cl1 may call method m1 directly without interface notation. go_if1 may call method m2 with go_if1->m2( ... ). |