option
Cuestiones
ayuda
daypo
buscar.php

sap abap final 03

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
sap abap final 03

Descripción:
examen de academia

Fecha de Creación: 2025/08/25

Categoría: Otros

Número Preguntas: 20

Valoración:(0)
COMPARTE EL TEST
Nuevo ComentarioNuevo Comentario
Comentarios
NO HAY REGISTROS
Temario:

Which of the following types are permitted to be used for on line #4? There are 2 correct answers to this question. An external view from the ABAP Dictionary. A database view from the ABAP Dictionary. A CDS DDIC-based view. A database table from the ABAP Dictionary.

Which statement reads a single row from a database table? Please choose the correct answer. SELECT <tablename> ... SELECT SINGLE <tablename> ... READ TABLE <tablename> ... READ TABLE <tablename> WITH TABLE KEY ...

Which ABAP SQL clause allows the use of inline declarations? Please choose the correct answer. FIELDS. INTO CORRESPONDING FIELDS OF. FROM. INTO.

Scenario: In a vehicle management system, there is a need to define a method 'displayDetails' differently for each type of vehicle (Car, Truck, Motorcycle). Which Object-Oriented concept should be used to achieve this? Please choose the correct answer. Inheritance. Polymorphism. Encapsulation. Composition.

Which function call returns 0? Please choose the correct answer. Count (val - 'ABAP ABAP abap' sub - 'AB' ). find_any_not_of( val 'ABAP ABAP abap’ sub = 'AB'). find_any_of (val = "ABAP ABAP abap' sub = "AB"). Count_any_of ( val - ‘ABAP ABAP abap' sub "AB" ).

The class zcl_demo_class is in a software component with the language version set to "ABAP Cloud". The function module ZF1' is in a different software component with the language version set to"Standard ABAP". Both the class and function module are customer created. Regarding line #6, which of the following are valid statements? There are 2 correct answers to this question. 'ZF1' can be called if a wrapper is created for it and the wrapper itself is released for cloud development. "ZF1" can be called whether it is released or not for cloud development. ZF1' can be called only if it is released for cloud development. ZF1" can be called if a wrapper is created for it but the wrapper itself is not released for cloud development.

What are some characteristics of secondary keys for internal tables? There are 3 correct answers to this question. Multiple secondary keys are allowed for any kind of internal table. Hashed secondary keys do NOT have to be unique. Secondary keys can only be created for standard tables. Sorted secondary keys do NOT have to be unique. Secondary keys must be chosen explicitly when you actually read from an internal table.

For the assignment, gv_target = gv_source. which of the following data declarations will always work without truncation or rounding? There are 2 correct answers to this question. DATA gv_source TYPE p LENGTH 8 DECIMALS 3. to DATA gv_target TYPE p LENGTH 16 DECIMALS 2. DATA gv_source TYPE string, to DATA gv_target TYPE c. DATA gv_source TYPE d. to DATA gv_target TYPE string. DATA gv_source TYPE c. to DATA gv_target TYPE string.

Which statement about ABAP Shared Objects is true? Please choose the correct answer. They are used to store user-specific data. They are memory areas shared by all users of an ABAP instance. They are used for database storage. They are only accessible within a single program.

In an Access Control Object, which clauses are used? There are 3 correct answers to this question. Where (to specify the access conditions). Grant (to identify the data source). Define role (to specify the role name). Revoke (to remove access to the data source). Return code (to assign the return code of the authority check).

Why would you use Access Controls with CDS Views? There are 2 correct answers to this question. Only the data corresponding to the user's authorization is transferred from the database to the application layer. You do not have to remember to implement AUTHORITY CHECK statements. The system field sy-subrc is set, giving you the result of the authorization check. All of the data from the data sources is loaded into your application automatically and filtered there according to the user's authorization.

As a consultant you are posed the following question from a client who is using SAP S/4HANA Cloud, public edition and also SAP BTP, ABAP environment. "We are currently using an SAP Fiori app based on SAP Fiori elements that analyzes open orders. We have determined that it should be extended via a new button on the UI which will perform an on-the-fly calculation and display the result in a quick popup for the enduser. We have been informed by SAP that all underlying stack layers for the SAP Fiori app have been extensibility enabled." Based on this which of the following extension types would you recommend to the customer to add the new button? Please choose the correct answer. SAP HANA database table extension. RAP BO Node Extension. RAP BO Behavior Extension. Business Service Extension.

In a program you find this source code: AUTHORITY-CHECK OBJECT '/DWO/TRVL ( ID 'CNTRY' FIELD 'DE* ID ACTVT FIELD '03". Which of the following apply? There are 2 correct answers to this question. If the user is NOT authorized for 'CNTRY' = 'DE' OR for 'ACTVT' = '03 then the program will terminate. If the user is authorized for 'CNTRY = 'DE' then the return code is always 0. AUTHORITY CHECK verifies whether a user is authorized for/DMO/TRVL" with the listed field values. If the user is authorized for 'CNTRY = 'DE' AND for 'ACTVT = '03 then the return code is 0.

What are valid statements? There are 2 correct answers to this question. The pragma is not checked by the syntax checker. The pseudo-comment is checked by the syntax checker. ##NEEDED is checked by the syntax checker. #EC_NEEDED is not checked by the syntax checker.

Which protocol is primarily used for data exchange in the ABAP RESTful Application Programming Model? Please choose the correct answer. SOAP. HTTP. OData. MQTT.

Which of the following ABAP SQL statements are valid? There are 2 correct answers to this question. SELECT FROM /dmo/connection FIELDS carrid, airpfrom, MAX( distance) AS dist_max, MIN(distance) AS dist_min INTO TABLE @DATA(It_hits). SELECT FROM /dmo/connection FIELDS MAX(distance) AS dist_max MIN(distance) AS dist_min INTO TABLE @DATA(It_hits). SELECT FROM /dmo/connection FIELDS carrid, airpfrom u GROUP BY carrid, connid INTO TABLE @DATA(It_hits). SELECT FROM /dmo/connection FIELDS carrid, airpfrom, MAX(distance) AS dist_max, MIN( distance) AS dist_min GROUP BY carrid, airpfrom INTO TABLE @DATA(It_hits).

For what kind of applications would you consider using on-stack developer extensions? There are 2 correct answers to this question. Applications that provide APIs for side by side SAP BTP apps. Applications that access SAP S/4HANA data using complex SQL. Applications that integrate data from several different systems. Applications that run separate from SAP S/4HANA.

What are some properties of database tables? There are 2 correct answers to this question. They store information in two dimensions. They may have key fields. They can have any number of key fields. They can have relationships to other tables.

Which of the following actions cause an indirect change to a database table requiring a table conversion? There are 2 correct answers to this question. Renaming a field in a structure that is included in the table definition. Changing the field labels of a data element that is used in the table definition. Deleting a field from a structure that is included in the table definition. Shortening the length of a domain used in a data element that is used in the table definition.

Which of the following is a generic internal table type? Please choose the correct answer. SORTED TABLE. INDEX TABLE. STANDARD TABLE. HASHED TABLE.

Denunciar Test