TEST BORRADO, QUIZÁS LE INTERESE: abap 2309 3
COMENTARIOS | ESTADÍSTICAS | RÉCORDS |
---|
REALIZAR TEST
Título del Test:
abap 2309 3 Descripción: abap 2309 3 Autor:
Fecha de Creación: 28/10/2024 Categoría: Otros Número Preguntas: 48 |
COMPARTE EL TEST
Comentar
No hay ningún comentario sobre este test.
Temario:
Which of the following string functions are predicate functions? (2 correct) matches() contains_any_of() find_any_not_of() count_any_of(). Which of the following are factors to consider when choosing between system conversions and new implementations? Note: There are 3 correct answers to this question. Inheritance Costs Sponsorship Transactional Data Interfaces. During the Preparation phase of a system conversion, which of the following tasks are done? Note: There are 3 correct answers to this question. Perform custom code adaptation Utilize maintenance planning Perform custom code analysis Determine system requirements Perform manual testing. Which of the following are ABAP RESTful application programming model layers? Note: There are 3 correct answers to this question. Domain Model and Implementation Data Access Business Service Exposure Data element CDS Annotations. Which of the following annotations can be mandatory in the definition of a CDS view entity? AbapCatalog.buffering.numberOfKeyFields EndUserText.label @AccessControl.authorizationCheck @Semantics.quantity.unitofMeasure. An ABAP class defines an attribute with the following statement: DATA the_attribute TYPE /DMO/AGENCY. Dictionary object/DMO/AGENCY is a database table definition. What kind of data object is the_attribute? Structure Internal table Elementary field. You define a database table in the ABAP Dictionary. What is needed to make the database table client dependent? A key field of type CLNT Annotation @ABAPCatalog.clientDependent: true A corresponding setting in the Technical Table Properties. You have a superclass super that has three subclasses sub1, sub2, and sub3. In a TRY...CATCH block, you want to catch sub1 explicitly and sub2 and sub3 via their superclass. You also want to catch any other exceptions using cx_root. What is the correct sequence of CATCH statements? CATCH sub1. CATCH super. CATCH cx_root. CATCH cx_root. CATCH super. CATCH sub1. CATCH super. CATCH sub1. CATCH cx_root. CATCH cx_root. CATCH sub1. CATCH super. Which restrictions exist for ABAP SQL arithmetic expressions? (2 correct) The operator* is allowed only in floating point expressions. Floating point types and integer types can NOT be used in the same expression. The operator / is allowed only in floating point expressions. Decimal types and integer types can NOT be used in the same expression. Which type of legrey code does SAP recommend you eliminate when you review modifications as part of an SAP SAMANA systemconversion? (2 correct) Code that now is identical to a standard SAP object Code that has less than 10% usage according to usage statistics Code that supports a critical business process Code that can be redesigned as a key user extension. Which of the following are reasons why a consumer-grade UX is important? Note: There are 3 correct answers to this question. Training cost savings Strengthening of customer and partner relationships Productivity gains Reduction in user errors Increase system performance. Given this code, DATA: go_super TYPE REF to lcl_super, go_sub1 TYPE REF TO 1cl_subl. go_sub1 = CAST #(go_super). go_subl->subl_neth1(...). with which predicate condition can you ensure that the CAST will work? IS SUPPLIED IS INSTANCE OF IS NOT INITIAL IS BOUND. Which of the following are key parts of the clean core concept? Note: There are 3 correct answers to this question. Copying (that is, cloning) of standard code in lieu of modifications Elimination of modifications Strict separation between extensions and the underlying application Usage of released APIs Deletion old versions. You change the definition of a database table. In which of the following scenarios do you have to manually adjust the database table? The database table contains data and you added a table field. The database table is empty and you added a table field The database table contains data and you deleted a table field. The database table is empty and you deleted a table field. You define a CDS view entity with an association. When is the association translated into a join on database level? When you add the association to the element list. As soon as you define the association. When you use the association in a path expression. Which of the following are principles of cloud native? Note: There are 3 correct answers to this question. Selección correcta Application Programming Interfaces (APIs) Total control of infrastructure Infrastructure Independent Microservices REST and CRUD. The term "Local Platform APIs" is directly associated with which of the following? (2 corrects) SAP HANA Cloud SAP S/4HANA Cloud, ABAP environment SAP HANA SAP BTP, ABAP environment. Which of the following are principles of REST architecture? Note: There are 3 correct answers to this question. Layered system Virtualization Stateless Serializable Cacheable. Which of the following statements may an interface contain? Note: There are 2 correct answers to this question. METHODS PUBLIC SECTION TYPES METHOD... ENDMETHOD CLASS DEFINITION. Which of the following are types of indirect modifications? Note: There are 3 correct answers to this question. Implicit enhancements Clones of SAP objects Class method overwrites Changes pursuant to an SAP Note Creation of Interfaces. Which of the following results in faster access to internal tables? (3 correct) In a sorted internal table, specifying the primary key completely. 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. 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. Which patterns raise an exception? Note: There are 3 correct answers to this question. 1 | DATA: gv_target TYPE p DECIMALS 3. 2 | CONSTANTS: gco_intl TYPE i VALUE 2. 3 | gv_target EXACT # 2/gco_intl). 1 |DATA: gv_target TYPE d. 2 | CONSTANTS: gco_date TYPE d VALUE '20331233'. 3 | gv_target EXACT (gco_date). 1 | DATA: gv_target TYPE p DECIMALS 2. 2 ❘ CONSTANTS: gco_intl TYPE i VALUE 3. 3 | gv_target = EXACT #2 / gco_intl). 1 | DATA: gv_target TYPE string. 2 | CONSTANTS: gco_string TYPE C LENGTH 16 VALUE '@123456789ABCDEF". 3 | gv_target EXACT (gco_string+5(5)). 1 | DATA: gv_target TYPE c LENGTH 5. 2 ❘ CONSTANTS: gco_string TYPE string VALUE '8123456789ABCDEF'. 3 | gv_target - EXACT (gco_string+5(6)). In an ABAP class, you work with a structured data object struct. The structure type of struct contains a named include %tky and the included structure contains a component airlineid. Which of the following statements leads to a syntax error? both none struct-airlineid = 'LH'. struct-%tky-airlineid = 'UA!. Which of the following extensions are allowed on a CDS view that does not contain the annotation, ABAPCatalog.viewEnhancementCategory? Note: There are 3 correct answers to this question. Additional fields in the element list Additional fields in the GROUP BY - clause Additional expressions in the element list Additional associations in the element list Additional fields in the extension list. You want to extend a dictionary database table with a field ZZMYFIELD. The dictionary database table definition contains annotation @ABAPCatalog.enhancement.category. For which of the following annotation values can field ZZMYFIELD have built-in type INT4? Note: There are 2 correct answers to this question. #EXTENSIBLE_ANY #NOT_EXTENSIBLE #EXTENSIBLE_CHARACTER_NUMERIC #EXTENSIBLE_CHARACTER. Which of the following are reasons why software extensions are needed? Note: There are 3 correct answers to this question. Desired customer outcomes Fix standard issues Performance optimization Flexibility Customized business processes. You define a CDS view entity with an input parameter. In which operand positions can you use the input parameter? Note: There are 2 correct answers to this question. Filter using CASE conditio As value for the input parameter of another CDS view entity. Filter value using LIKE% Filter value in the WHERE clause. Where do you create translatable texts for your exception classes? As a message in a message class As a constant in the class definition As a text element in the text pool of the class. Which of the following are building blocks of the SAP Fiori design approach? Note: There are 3 correct answers. SAP Fiori elements SAP Business Application Studio SAPUI5 Python SAP HANA Cloud. Which of the following are recommended clean core workstreams? Note: There are 3 correct answers to this question. Custom code evaluation Manual testing Review of copies Simplification item checks Custom code adaptation. Given the following Core Data Service View Entity Data Definition: AccessControl.authorizationCheck: #NOT REQUIRED DEFINE VIEW ENTITY dero_sales_cds_so_i_ve AS SELECT FROM deno_sales_so_i ASSOCIATION TO PARENT deno_sales_cds_so_ve AS Salrder { ON Sprojection.parent key - SalesOrder.so_key COMPOSITION [..] OF deno_sales_cds_i_sl_ve AS _ScheduleLine ASSOCIATION [0..1] TO deno_sales_cds_material_ve AS _Material ON Sprojection.material Material.material key so_item_key, parent_key, } poser, SalesOrder, ScheduleLine, Material.material as mat Using ABAP SQL, which select statement selects the mat field on line "_Material material as mat"? SELECT mat FROM demo_sales_cds_so_i_ve... SELECT mat FROM demo_sales_cds_material_ve... SELECT mat FROM demo_sales_so_i... SELECT mat FROM Material... Which of the following are the stack layers that classical extensibility refers to? Note: There are 3 correct answers to this question. End User Middle Data Key User Visual. Which of the following are tasks of the ABAP Core Data Services? Note: There are 2 correct answers to this question. Provide services for classical ABAP user interfaces. Define views on the database. Define tables on the database Define Business Objects in the ABAP RESTful application programming model. Which of the following SQL techniques is available in ABAP SQL but NOT supported in ABAP CDS? UNION ORDER BY GROUP BY DISTINCT. What sequence of characters introduces an ABAP Doc comment? "! "@ "# "%. Which of the following are essential aspects of ABAP Cloud? Note: There are 3 correct answers to this question. ABAP development tools for Eclipse .NET & SOAP ABAP Cloud language ABAP RESTful application programming model JAVA. Which of the following are the three possibilities for a customer to implement SAP S/4HANA? Note: There are 3 correct answers to this question System landscape transformation System conversion External migration New implementation Third-party cloud. In a program you find this source code AUTHORITY-CHECK OBJECT '/DWD/TRVL' ID 'CNTRY' FIELD 'DE' ID 'ACTVT FIELD '83'. Which of the following apply? (2 correct answers) If the user is NOT authorized for 'CNTRY' = 'DE' OR for 'ACTVT'='03 then the program will terminate. AUTHORITY CHECK verifies whether a user is authorized for /DWO/TRVL" with the listed field values. If the user is authorized for 'CNTRY = 'DE' AND for 'ACTVT = '03 then the return code is 0. If the user is authorized for 'CNTRY = 'DE' then the return code is always 0. What would be the correct expression to change a given string value 'mr joe doe' into 'JOE' in an ABAP SQL field list? SELECT FROM TABLE dbtab1 FIELDS f1, upper (left( 'ar joe doe', 6)) AS f2_up_left, f3, SELECT FROM TABLE dbtab1 FIELDS f1, substring(upper('ar joe doe'), 4, 3) AS f2_sub_up, F3,... SELECT FROM TABLE dbtabl FIELDSF1, left (lower (substring( 'ar joe doe', 4, 3)), 3) AS f2_left_lo_sub, f3, SELECT FROM TABLE dbtabl FIELDSF1, substring(lower (upper('nr joe doe' ) ), 4, 3) AS f2_sub_lo_up, f3,. Which of the following are part of SAP's LCNC toolset? Note: There are 3 correct answers to this question. SAP HANA Cloud SAP Build Process Automation S/4 HANA on premise SAP Build Apps SAP Build Work Zone. Which of the following features of SAP Build is oriented towards a citizen developer? Intuitive graphical tools utilizing code generation Utilization of a particular language and/or programming model Integrated debugger Advanced testing capabilities. Which of the following are correct ways to add a comment in a data definition? Note: There are 2 correct answers to this question. /*..*/ " /*.../* //. You define a dictionary table type with a dictionary type as row type. When does the resulting internal table have columns that you can address with column names? Note: There are 2 correct answers to this question. When the row type is a database table When the row type is a data element When the row type is a table type When the row type is a structure. Which statement can you use to change the contents of a row of data in an internal table? Modify table Insert table Update table Append table. You define a foreign key dependency in the ABAP dictionary. What effect does it have? Note: There are 2 correct answers to this question. Enforced data consistency on database level. Generated input checks in classical user dialogues. The relationship is documented on ABAP dictionary level. Generated input checks in a SAP Fiori application. Which of the following is the default cardinality of an association if no cardinality is specified [1..1] none [0..1] [0..*]. Which of the following dictionary types are mapped to ABAP data type P (packed number)? Note: There are 2 correct answers to this question. CURR CUKY DEC CLNT. Which of the following are tools that can be used to adapt custom code manually or automatically? Note: There are 2 correct answers to this question. ABAP development tools for Eclipse Quick Fix SAP Readiness Check Tool SAP Notes Custom Code Migration app. |
Denunciar Test