Sap Abap Final 01
![]() |
![]() |
![]() |
Título del Test:![]() Sap Abap Final 01 Descripción: examen de academi |




Comentarios |
---|
NO HAY REGISTROS |
In RAP, what is the advantage of using 'Managed Transactional Processing'? Please choose the correct answer. It allows direct access to the database. It automates CRUD operations and ensures data consistency. It provides a mechanism for offline data synchronization. It enables the use of custom SQL queries. In which products must you use the ABAP Cloud Development Model? There are 2 correct answers to this question. SAP S/4HANA Cloud, public edition. SAP S/4HANA Cloud, private edition. SAP S/4HANA on premise. SAP BTP, ABAP environment. Which of the following are valid sort operations for internal tables? There are 3 correct answers to this question. SORT itab BY field1 field2. Sort a standard table using. SORT itab. Sort a sorted table using. SORT itab ASCENDING. Sort a sorted table using. SORT itab DESCENDING. Sort a standard table using. SORT itab BY fieldl ASCENDING field2 DESCENDING. Sort a standard table using. Which extensibility type does SAP recommend you use to enhance the existing UI for an SAP Fiori app? Please choose the correct answer. Key user. Side-by-side. Developer. Classic. Scenario: A company wants to extend their S/4HANA Cloud system without disrupting the core. They need a robust solution for complex business processes. Which approach should they take? Please choose the correct answer. Implement user exits in the S/4HANA system. Use SAP BTP for Side-by-Side extensions. Modify the standard SAP code in the core. Avoid any form of customization or extension. 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 subl. You add the clause REDEFINITION to the component in superl. You implement the redefined component for a second time in superl. You implement the redefined component in subl. Which of the following string functions are predicate functions? There are 2 correct answers to this question. contains_any_of(). Matches(). count_any_of(). find_any_not_of(). In ABAP SQL, which of the following can be assigned an alias? There are 2 correct answers to this question. database table. group criterion (from group by clause). order criterion (from order by clause). field (from field list). In the context of SAP S/4HANA Cloud, what is a Side-by-Side Extension? Please choose the correct answer. An extension built within the S/4HANA core. An extension using only frontend technologies. An extension built on a separate platform, like SAP BTP. A direct modification to the standard SAP code. What RESTful Application Programming feature is used to ensure the uniqueness of a semantic key? Please choose the correct answer. Action. Determination. Validation. What can you add to a business object in the ABAP RESTful application programming model? There are 2 correct answers to this question. Action. Field. Implicit enhancement. Method overwrite. What would be the correct expression to change a given string value 'mr joe doe' into 'JOE' in an ABAP SQL field list? Please choose the correct answer. SELECT FROM TABLE dbtabl FIELDS Of1, substring(lower(upper( 'mr joe doe' ) ), 4, 3) AS f2_sub_lo_up, f3,. SELECT FROM TABLE dbtabl FIELDS Of1, left(lower(substring( 'mr joe doe', 4, 3)), 3) AS f2_left_lo_sub, f3,. SELECT FROM TABLE dbtabl FIELDS Of1, upper(left( 'mr joe doe', 6)) AS f2_up_left, f3,. SELECT FROM TABLE dbtabl FIELDS Of1, substring(upper('mr joe doe'), 4, 3) AS f2_sub_up, f3,... The "demo_cds_assoc_spfi data source referenced in line #4 contains a field "connid" which you would like to expose in the element list. Which of the following statements would do this if inserted on line #8? Please choose the correct answer. demo_ods_assoc_spfli.connid,. demo_ods_assoc_spfli-connid,. spfli-connid,. _spfli.connid,. Which of the following results in faster access to internal tables? There are 3 correct answers to this question. In a sorted internal table, specifying the primary key completely. In a standard internal table, specifying the primary key partially from the left without gaps. In a sorted internal table, specifying the primary key partially from the left without gaps. In a hashed internal table, specifying the primary key partially from the left without gaps. In a hashed internal table, specifying the primary key completely. When does SAP recommend to use a sorted or a hashed table respectively? There are 2 correct answers to this question. A hashed table, when you read a single record and specify the complete key. A sorted table, when you read a single record and specify non key fields. A sorted table, when you read a subset in a loop and specify a part of the key from the left ^ without gaps. A hashed table, when you read a subset in a loop and specify a part of the key from the left without gaps. Class super has subclass sub. Which rules are valid for the sub constructor? There are 2 correct answers to this question. Events of your own instance cannot be raised before the registration of a handler in super. Import parameters can only be evaluated after calling the constructor of super. The constructor of super must be called before using any components of your own instance. The method signature can be changed. In RESTful Application Programming, which EML statement retrieves an object? Please choose the correct answer. Select entity. Get entity. Read entity. Find entity. In class ZCL_CLASS_A, you use the statement DATA var TYPE *** What may stand in place of ***? There are 2 correct answers to this question. The name of a type defined privately in another class. The name of a data element from the ABAP Dictionary. The name of a type defined privately in class ZCL_CLASS_A. The name of a domain from the ABAP Dictionary. Which internal table type allows unique and non-unique keys? Please choose the correct answer. Hashed. Standard. Sorted. How do 'Expression-Based Indexes' enhance performance in ABAP for SAP HANA? Please choose the correct answer. By automatically updating indexes based on data changes. By creating indexes based on calculated expressions. By reducing the size of indexes. By indexing every column in a table. |