Cuestiones
ayuda
option
Mi Daypo

TEST BORRADO, QUIZÁS LE INTERESEtoya

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del test:
toya

Descripción:
toya_toya

Autor:
AVATAR

Fecha de Creación:
12/07/2017

Categoría:
Personal

Número preguntas: 80
Comparte el test:
Facebook
Twitter
Whatsapp
Comparte el test:
Facebook
Twitter
Whatsapp
Últimos Comentarios
No hay ningún comentario sobre este test.
Temario:
1. Which of th following tasks does th BADI implementing class perform 1. ¿Cuál de las siguientes tareas realiza la clase de implementación BADI? Filtering Sequencing Inserting Deleting.
2. What can you create using the ABAP Dictionary? ¿Qué se puede crear con el Diccionario ABAP? Domains Type pools Transparent tables Field symbols Internal tables.
3. What features are provided by the database interface? Choose three. ¿Qué características proporcionan la interfaz de la base de datos? Elige tres Database independence of aplication programs Conversion of Open SQL statements from ABAP statements into the corresponding database statements Syntax check of Native SQL commands Access to SAP table buffers Data consistency check using foreign key relationships.
4. Which statements are allowed for processing internal tables? 3 ¿Qué sentencias se permiten para procesar tablas internas? SELECT INSERT DELETE MODIFY UPDATE.
5. You always want to check the user authorization for data entered in an input field of a selection screen. Where do you do this? (1 respuesta correcta ) Siempre desea comprobar la autorización del usuario para los datos introducidos en un campo de entrada de una pantalla de selección.¿Dónde haces esto? (1 respuesta correcta ) In the event block AT SELECTION-SCREEN In the event block AT SELECTION-SCREEN OUTPUT In the event block INITIALIZATION In the event block AT SELECTION-SCREEN on VALUE-REQUEST.
6. What can you use to achieve polymorphism? ¿Qué se puede utilizar para lograr el polimorfismo? Events Subroutines Inheritance Reports Company 1.
7. What happens when an authorization check fails? ¿Qué sucede cuando falla una verificación de autorización? The program is terminated The system field SY-SUBRC is set to a value other than zero. A type E message is displayed A CX_AUTH_FAILED type exception is raised.
8. Which parameter types can be used in the signature of a functional method? (Choose two) ¿Qué tipos de parámetros se pueden utilizar en la firma de un método funcional? (Escoge dos) EXPORTING IMPORTING RETURNING CHANGING.
9. You are establishing the business logic layer for a Web Dynpro Component. Which service types are available in the Service Call wizard? (Choose three) Transaction code Web service proxy Class method Function module Function group.
10. Which of the following predefined ABAP types is incomplete F P XSTRING STRING.
11. You have implemented a class CL_CUSTOMER in which you defined a private attribute. From where can you access this attribute directly? (Choose two) A. From all methods of all subclasses of CL_CUSTOMER B. From all methods of the class CL_CUSTOMER C. From all methods of a class to which CL_CUSTOMER grants friendship D. From any program using the class CL_CUSTOMER.
12. Which of the following features do you have to consider when you use shared objects? (Choose three) ¿Cuáles de las siguientes características debe tener en cuenta al utilizar objetos? (Elige tres) A. Data is saved as attributes of objects B. Concurrent write accesses are supported C. Memory bottlenecks result in runtime errors and have to be caught D. Concurrent read accesses are supported E. Data is saved as tables of objects.
13. Which assignment will lead to a conversion error?¿Qué asignación dará lugar a un error de conversión? A. An XSTRING type data object to a STRING type data object DATA. gv_xstring TYPE xstring, gv_string TYPE string. gv_xstring = 'AF00'. gv_string = gv_xstring B. A type C data object with the value '123' to a type C data object with length 2 DATA. gv_c3(3) TYPE c VALUE '123', gv_c2(2) TYPE c. gv_c2 = gv_c3. C. A type P data object to a type F data object DATA. gv_p TYPE p VALUE '15000', gv_f TYPE f. gv_f = gv_p. D. A type C data object with the value '1.50E4' to a type I data object DATA. gv_c(6) TYPE c VALUE '1.50E4', gv_i TYPE i. gv_i = gv_c.
14. You created a transparent table and during activation got a warning message 'Enhancement category for table missing". What do you have to do to eliminate the warning message? Usted creó una tabla transparente y durante la activación recibió un mensaje de advertencia 'Categoría de mejora para la tabla que falta'. ¿Qué tiene que hacer para eliminar la ¿mensaje de advertencia? Select any option other than Not Classified from the enhancement category Change the Data Class and Size category in the technical settings Provide the correct reference field for the Currency or Quantity field Select the option Not Classified from the enhancement category.
15. How is an ABAP program with several dialog steps executed? ¿Cómo se ejecuta un programa ABAP con varios pasos de diálogo? The program is always executed in just one dialog work process without roll out. The ABAP dispatcher takes over the entire execution without assigning any work process The program is always executed in just one dialog work process with roll out Usually, dialog steps are assigned to different dialog work processes.
Inglés: You perform an update task using update function modules and detect an error in the program that calls the update function modules. Which statement can be used to discard all update requests for the current SAP LUW? (Choose two) Español: Realiza una tarea de actualización mediante módulos de función de actualización y detecta un error en El programa que llama a los módulos de funciones de actualización. ¿Qué sentencia se puede utilizar para Descartar todas las solicitudes de actualización para el SAP LUW actual? (Escoge dos) A. EXIT. B. ROLLBACK WORK. C. MESSAGE axxx(nnn). D. MESSAGE exxx(nnn). E. DELETE UPDATE.
17. You want to display a dialog box in your ABAP program. Which statement do you use? (Choose 1 respuesta) Desea mostrar un cuadro de diálogo en su programa ABAP. Que afirmacion usa A. WINDOW 200 STARTING AT 5 5. B. SET SCREEN 200. B. SET SCREEN 200. D. CALL SCREEN 200 STARTING AT 5 5.
18. Which ABAP statement using the local type gty_1 correctly defines a data object? (Choose two) ¿Qué sentencia ABAP utilizando el tipo local gty_1 define correctamente un objeto de datos? A. DATA gv_1 TYPE gty_1. B. DATA gv_1 LIKE gty_1. C. CONSTANTS gc_1 TYPE gty_1 VALUE '1'. D. DATA gv_1 TYPE gty_1 DEFAULT '1'.
19 What is the SAP recommended naming convention for append structures of standard SAP tables ¿Qué es la convención de nomenclatura recomendada por SAP para añadir estructuras de tablas SAP estándar? A. The name of the append structure must start with ZA. B. The components of an append structure should start with ZZ or YY C. The components of an append structure should start with Z or Y. D. The name of the append structure must start with ZZ or YY.
20. To which ABAP Dictionary definition can you assign fixed values? ¿A qué definición de diccionario ABAP puede asignar valores fijos? A. Data element B. Field of a transparent table C. Component of a structure D. Domain.
21.Which of the following statements dynamically changes the data type of field z1?¿Cuál de las siguientes afirmaciones cambia dinámicamente el tipo de datos del campo z1? A. Assign z1 to <fs> casting B. Assign z1 to <fs> C. Move z1 to <fs> D. Unassign <fs>.
22. What do global types and local types have in common?¿Qué tienen en común los tipos globales y los tipos locales? A. Documentation B. Field labels C. Search help D. Technical information.
23. What options do you have when setting a watchpoint? (Choose two) ¿Qué opciones tiene al configurar un punto de observación? A. Stop at predefined conditions for a specific variable B. Stop at predefined conditions for all variables C. Stop at any change of all variables D. Stop at any change of a specific variable.
Where can you set the GUI status and the GUI title for a classical screen (dynpro)? ¿Dónde puede configurar el estado GUI y el título GUI para una pantalla clásica (dynpro)? A. In a module called from PBO of the screen B. In the attributes of the screen C. In the properties of the related heade D. In a module called from PAI of the screen.
25. In which database table type is there a one-to-one relationship between the Dictionary table definition and the relevant physical table in the database? En qué tipo de tabla de base de datos existe una relación uno a uno entre el Definición de tabla de diccionario y la tabla física relevante en la base de datos? A. Cluster table B. Pooled table C. Transparent table D. Internal table.
26. A custom transparent table was created with delivery class A and a table maintenance view was generated for this table. You change the delivery class to C and the table is activated successfully. What additional steps do you have to complete? Se creó una tabla transparente personalizada con la clase de entrega A y se generó una vista de mantenimiento de tabla para esta tabla. Cambia la clase de entrega a C y la tabla se activa correctamente. ¿Qué pasos adicionales tiene que completar? A. Maintain and transport the table using the Maintain Table Views transaction (SM30). B. Activate and adjust the database. C. Regenerate the existing maintenance view and adjust the table D. Delete the original maintenance view and then create and generate a new one.
27. Which desktops are part of the new ABAP debugger? (Choose three) A. Break./Watchpoints B. Objects C. Session D. Desktop 1 E. List.
When should you use a hashed internal table? (Choose two) A. When accessing mainly single records B. When accessing by secondary key C. When accessing using the left-justified part of the key D. When accessing always by primary key E. When accessing by index.
29 You want to read data from two database tables A and B using a database join. Database table B contains details for data records stored in database table A . Your result should contain all combinations of matching rows from A and B plus all rows from A that do not have matching rows in B. Which statement do you use? Español: Desea leer datos de dos tablas de base de datos A y B utilizando una combinación de base de datos. La tabla B de la base de datos contiene detalles de los registros de datos almacenados en la tabla A de la base de datos. El resultado debe contener todas las combinaciones de filas coincidentes de A y B más todas las filas de A que no tienen filas coincidentes en B. ¿Qué sentencia utiliza? A. SELECT … FROM a JOIN b … B. SELECT … FROM a INNER JOIN b … C. SELECT … FROM b RIGHT OUTER JOIN a … D. SELECT … FROM a LEFT OUTER JOIN b ….
30. In the technical settings for a transparent table, buffering is switched on and single record buffering is selected. Which statement uses the buffered data assuming that the WHERE clause contains restrictions for all key fields? En los ajustes técnicos de una tabla transparente, el búfer está activado y se selecciona el búfer de registro único. ¿Qué sentencia utiliza los datos almacenados en búfer asumiendo que la cláusula WHERE contiene restricciones para todos los campos clave? A. SELECT … . ENDSELECT. B. SELECT SINGLE .... C. SELECT … INTO TABLE .... D. SELECT SINGLE … FOR UPDATE.
31. What types of changes to the repository does SAP provide? (Choose three) A. Deployments from SDN.SAP.COM B. Enhancement Packages C. SAP Notes D. Transports E. Support Packages.
32. What is mandatory for automatic data transport between a variable and an input field on a classical screen (dynpro)? ¿Qué es obligatorio para el transporte automático de datos entre una variable y un campo de entrada en una pantalla clásica (dynpro)? A. The variable must be declared using the DATA statement. La variable se debe declarar utilizando la instrucción DATA. B. The property OUTPUT of the input field must be set. La propiedad OUTPUT del campo de entrada debe estar configurada. C. The variable must be declared using the TABLES statement. La variable debe declararse mediante la instrucción TABLES. D. The name of the variable and the name of the input field must be identical. El nombre de la variable y el nombre del campo de entrada deben ser idénticos.
33. Compared to a predefined ABAP type what additional properties can be assigned to a domain? (Choose three) A. Fixed values B. Conversion exits C. Value tables D. Parameter IDs E. Search helps.
34. Which of the following tools belong to the ABAP Workbench? (Choose three) A. Form Builder B. Function Builder C. Screen Painter D. Class Builder E. Easy Access Menu.
35 Which of the following Data Types are allowed in ABAP? (Choose two) A. DECFLOAT64 B. DECFLOAT16 C. DECFLOAT34 D. DECFLOAT32.
36. Which of the following are key capabilities of SAP NetWeaver? (Choose three) A. Supply Chain Management B. Information Integration C. People Integration D. Application Platform E. Enterprise Resource Planning.
37. Where can you define global data types that are visible system-wide? (Choose three) A. In a method of a global class B. In the ABAP Dictionary C. In a function module D. In a global class E. In a global interface.
38 You want to loop over an internal table without copying each table row to a work area. How can you achieve this using a field symbol? Desea realizar bucle sobre una tabla interna sin copiar cada fila de la tabla en un área de trabajo. ¿Cómo puedes lograr esto usando un símbolo de campo? A. LOOP AT <itab> REFERENCE INTO <field_symbol>. ENDLOOP. B. LOOP AT <itab> ASSIGNING <field_symbol>. ENDLOOP. C. LOOP AT <itab> TRANSPORTING INTO <field_symbol>. ENDLOOP. D. LOOP AT <itab> INTO <field_symbol>. ENDLOOP.
39. You have defined a classical screen (dynpro) with mandatory input fields. You want to exit the screen using the Cancel button even if not all of the mandatory fields have been filled. What is necessary to achieve this? Ha definido una pantalla clásica (dynpro) con campos de entrada obligatorios. Desea salir de la pantalla con el botón Cancelar aunque no todos los campos obligatorios hayan sido rellenados. ¿Qué es necesario para lograrlo? A. Set the function type assigned to the Cancel button to S and handle it in a module with the addition AT EXIT-COMMAND. Ajuste el tipo de función asignado al botón Cancelar a S y Con la adición AT EXIT-COMMAND. B. Assign function type E to the Cancel button and handle it in a module with the addition AT EXIT- COMMAND. Asigne el tipo de función E al botón Cancelar y manejarlo en un módulo con el Además AT EXIT- COMMAND. C. Set the function code assigned to the Cancel button to CANCEL and handle it in a module with the addition AT EXIT-COMMAND. Ajuste el código de función asignado al botón Cancelar para CANCELAR y manejarlo en Un módulo con la adición AT EXIT-COMMAND. D. Use the LOOP AT SCREEN. ... ENDLOOP statement to set the "required" property of the input fields to zero. Utilice el LOOP AT SCREEN. ... ENDLOOP instrucción para establecer el "requerido" Propiedad de los campos de entrada a cero.
40. What can you enhance using BAdIs? (Choose three) A. Data elements B. Menus C. Screen D. Database tables E. Source code.
41. Which of the following ABAP data types are compatible with the generic character-type CLIKE? (Choose three) A. STRING B. N C. C D. XSTRING E. DECFLOAT.
42. How can you maintain documentation for input fields on your screen? choose 1 one. A. Add documentation to the SCREEN table at PROCESS BEFORE OUTPUT (PBO). B. Add documentation to the SCREEN table at PROCESS AFTER INPUT (PAI). C. Add documentation to the underlying data element. D. Define text tables for the underlying structure.
43. What is the purpose of implicit enhancement points? A. To add fields to an SAP database table B. To add code to a standard SAP program C. To change code in a standard SAP program D. To create a secondary index for an SAP database table.
44. When do you need to use the GROUP BY clause in the SELECT statement? A. If you want to redefine the sequence of the columns in the result set Si desea redefinir la secuencia de las columnas en el conjunto de resultados B. If you want to use aggregate functions and all components in the field list are aggregate functions Si desea utilizar funciones agregadas y todos los componentes de la lista de campos son funciones agregadas C. If you want to use ORDER BY to specify a sub-order Si desea utilizar ORDER BY para especificar un suborden D. If you want to use aggregate functions and at least one component in the field list is a column identifier Si desea utilizar funciones agregadas y al menos un componente en la lista de campos es un identificador de columna.
45. You create a function group ZATP. What is the name of the corresponding main program? A. ZATP B. SAPLZATP C. SAPMZATP D. SAPFZATP.
46. You have written a program to output data using the ALV grid control. Which sequence of steps should be executed at runtime? Ha escrito un programa para la salida de datos mediante el control de cuadrícula ALV. ¿Qué secuencia de pasos se debe ejecutar en tiempo de ejecución? A. 1. Create a container object 2. Create a grid object 3. Pass data to the grid object B. 1. Create a grid object 2. Pass data to the grid object 3. Create a container object C. 1. Pass data to the grid object 2. Create a container object 3. Create a grid object D. 1. Create a grid object 2. Create a container object 3. Pass data to the grid object.
47. What is the root class in the RTTS inheritance tree? ¿Cuál es la clase raíz en el árbol de herencia RTTS? A. CL_ABAP_ELEMDESCR B. CL_ABAP_TYPEDESCR C. CL_ABAP_DATADESCR D. CL_ABAP_COMPLEXDESCR.
48. Which comparison operators can you use in a logical expression related to the WHERE clause of the SELECT statement? (Choose three) A. GT (greater than) B.LIKE (fits pattern) C. CO (contains only) D. CP (covers pattern) E. EQ (equals).
QUESTION: 49 You are required to add customer source code in the SAP delivered object using the new enhancement framework without modification. How can you find the available enhancement? (Choose three) Se le requiere que agregue el código fuente del cliente en el objeto SAP entregado usando el nuevo marco de mejora sin modificación. ¿Cómo puede encontrar la mejora disponible? (Elige tres) A. Perform a program-related global search for a customer exit. B. Search for a Business Transaction Event in the Customizing tree (transaction SPRO). C. Select from the list of application-related BAdIs or enhancement spots in the SAP Application Hierarchy. D. Perform a program-related global search for GET BADI. E. Select from the list of freely selected BAdIs or enhancement spots in the Repository Information System.
QUESTION: 50 You have 2 objects: O1 of type class C1 and O2 of type class C2. Class C2 is a subclass of class C1. Which of the following statements implements an up cast? A. MOVE O1 ? TO O2. B. O2 ?= O1. C. MOVE O1 TO O2. D. O1 = O2.
QUESTION: 51 Which controller types can exist within a Web Dynpro component? (Choose three) A. Window controller B. User controller C. Application controller D. View controller E. Component controller.
QUESTION: 52 How do you program an input validation on a selection screen that allows users to correct their input? ¿Cómo se programa una validación de entrada en una pantalla de selección que permite a los usuarios corregir su entrada? A. Implement the check at the event AT SELECTION-SCREEN OUTPUT. In case of an input error, a type E MESSAGE must be displayed. B. Implement a check at the event AT SELECTION-SCREEN. In case of an input error, a type E MESSAGE must be displayed. C. Implement the check at the event END-OF-SELECTION. In case of an input error, a type E MESSAGE must be displayed. D. Implement the check at the event AT SELECTION-SCREEN. In case of an input error, a type A MESSAGE must be displayed.
QUESTION: 53 What must you do to define a database view using the ABAP Dictionary? (Choose three) A. Choose the database tables from where the view acquires data. B. Define the join conditions between the tables. C. Choose the fields from the tables that should be part of the view. D. Define selection criteria for the view. E. Define buffering settings for the underlying database tables.
QUESTION: 54 To which context object is the attribute LEAD_SELECTION_INDEX related? A. Supply function B. Node C. Attribute D. Element.
QUESTION: 55 Which property of the InputField UI element must be bound to a context attribute? A. state B. enable C. value D. visible.
QUESTION: 56 An executable ABAP program contains a standard selection screen and uses the event blocks AT SELECTION-SCREEN, AT SELECTION-SCREEN OUTPUT, INITIALIZATION, START-OF-SELECTION. In which sequence will ABAP runtime call these event blocks? A. 1. AT SELECTION-SCREEN OUTPUT 2. INITIALIZATION 3. AT SELECTION-SCREEN 4. START-OF-SELECTION B. 1. INITIALIZATION 2. AT SELECTION-SCREEN 3. AT SELECTION-SCREEN OUTPUT 4. START-OF-SELECTION C. 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. AT SELECTION-SCREEN 4. START-OF-SELECTION D. 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. START-OF-SELECTION 4. AT SELECTION-SCREEN.
QUESTION: 57 Which boundary conditions lead to improved access time to an internal table? (Choose three A. Left justified part of key for sorted tables B. Fully qualified key for sorted tables C. Index access for hashed tables D. Left justified part of key for hashed tables E. Index access for standard tables.
QUESTION: 58 What can you change in the ABAP Debugger? A. Content of an internal table B. Value of a reference variable C.Value of a constant D. Definition of a structure.
QUESTION: 59 You want to use a BAdI to extend the functions of an SAP program. Which of the following tasks is necessary? Desea utilizar un BAdI para extender las funciones de un programa SAP. ¿Cuál de las siguientes tareas es necesaria? A. Call the BAdI. B. Create an enhancement project using a customer exit. Cree un proyecto de mejora utilizando una salida de cliente. C. Define an interface for the BAdI. D. Implement a class that implements the BAdI interface. Implementar una clase que implementa la interfaz BAdI.
QUESTION: 60 Which hook method exists for all controller types? A. wddoonclose( ) B. wddoinit( ) C. wddobeforenavigation( ) D. wddoonopen( ).
QUESTION: 61 Which data type is allowed for the reference field of the Currency field? A. UNIT B. CUKY C. DEC D. CURR.
QUESTION: 62 How can you declare an internal table using the transparent table A as its line type? A. DATA gt_itab TYPE LINE OF a. B. DATA gt_itab TYPE REF TO a. C. DATA gt_itab TYPE TABLE OF a. D. DATA gt_itab TYPE a.
QUESTION: 63 Which SELECT statement will always bypass the SAP table buffers? A. SELECT … ENDSELECT. B. SELECT … SINGLE … C. SELECT … INTO TABLE … D. SELECT … FOR UPDATE ….
QUESTION: 64 What is required to fully specify a Table Type in the ABAP Dictionary? (Choose three) A. Access type B. Table key C. Table size D. Line type E. Header line.
QUESTION: 65 Which options do you have to read data from multiple tables while using a SELECT statement? (Choose three) A. Nested select statements B. Nested loop statements C. Database views D. Join statements E. Pooled tables.
QUESTION: 66 How can you improve the performance when accessing a large data volume database table? A. Apply the appropriate data class and size category. B. Switch the database table to fully buffered. C. Define appropriate indexes for the database table. D. Change the table type in the dictionary.
QUESTION: 67 What do you need to have in your program to respond to the DOUBLE_CLICK event raised by an instance of the CL_GUI_ALV_GRID class? (Choose three) ¿Qué necesita tener en su programa para responder al evento DOUBLE_CLICK generado por una instancia de la clase CL_GUI_ALV_GRID? (Elige tres) A. A SET HANDLER statement to register the handler to the event Una instrucción SET HANDLER para registrar al manejador en el evento B. A method to read the registration table Un método para leer la tabla de registro C. A handler method for the event Un método manejador para el evento D. A CATCH statement to capture the event sentencia CATH que capture el evento E. A handler class una clase manejador.
QUESTION: 68 You want to define two database tables with different structures. Both tables should contain the fields CHANGE_DATE and CHANGE_TIME. How do you implement this in order to minimize the maintenance effort? A. Define a structure with these two fields and include this structure in both database tables. B. Define an append structure with these two fields and assign this append C. Define the two fields in each database table separately. D. Define the two fields in one database table and copy them to the other database.
QUESTION: 69 Which statement is used to generically define the data reference variable z1? A. data z1 type any B. data z1 type any table C. data z1 type ref to PA0001 D. data z1 type ref to data.
QUESTION: 70 dbtab is a transparent table. What is declared by the following statement? DATA myvar TYPE dbtab. A. A structure variable B. An elementary field C. An internal table D. A reference to an internal table.
QUESTION: 71 You defined data reference z1 generically. Which statement would you use to access the content of the referenced variable? A. Assign (z1) to <fs> B. Assign z1 to <fs> C. Assign z1->* to <fs> D. Get reference of z1 into wa.
QUESTION: 72 You are using the new debugger and you want to change the content of an internal table. Which actions are allowed? (Choose three) Está utilizando el nuevo depurador y desea cambiar el contenido de una tabla interna. ¿Qué acciones se permiten? (Elige tres) A. Delete the entire contents of a table. B. Change row content and press Save (<CTRL> + S). C. Delete table from memory. D. Delete the selected rows. E. Change row content and press Enter (<ENTER>).
QUESTION: 73 How do you embed a subscreen in a main screen? A. Use SET SUBSCREEN in a PBO module of the main screen. B. Use SET SUBSCREEN in the flow logic of the main screen. C. Use CALL SUBSCREEN in the flow logic of the main screen. D. Use CALL SUBSCREEN in a PBO module of the main screen.
QUESTION: 74 For which of the following requirements can you implement a functional method? (Choose two) A. A handler method for an event that has a returning parameter Un método de controlador para un evento que tiene un parámetro de retorno B. A method to set an instance attribute with one importing parameter and no other parameters Un método para establecer un atributo de instancia con un parámetro de importación y ningún otro parámetro C. A factory method that returns an object reference Un método de fábrica que devuelve una referencia de objeto D. A private static helper method that returns a single value as the result of an algorithm Un método de ayudante estático privado que devuelve un valor único como resultado de un algoritmo.
QUESTION: 75 In which modularization units can you use parameters? (Choose three) A. Event blocks such as START-OF-SELECTION B. Function modules C. Subroutines D. Dialog modules such as PBO modules E. Methods.
QUESTION: 76 When analyzing a program, which tasks can you perform using the code inspector? (Choose three) A. Discover unused variables. B. Execute the extended program check C. Determine used database tables. D. Inspect the memory consumption. E. Evaluate the time needed for program execution.
QUESTION: 77 Which objects can share data through context mapping? A. View controller and another view controller B. Component controllers and view controllers C. Custom controllers and transparent tables D. Global classes and component controllers.
QUESTION: 78 Which of the following variables is the self-reference variable in ABAP OO? A. THIS B. SENDER C. ME D. SUPER.
QUESTION: 79 Which components belong to an elementary search help? (Choose two) A. Fixed values B. Import / export parameters C. Selection method D. Attachment to a field.
QUESTION: 80 How do you add fields to an SAP-delivered transparent table without modification? ¿Cómo se añaden campos a una tabla transparente entregada por SAP sin modificarla? A. Use the database utility to enhance the definition on the database directly. B. Add the new fields to the table definition. C. Create an append structure containing the new fields. D. Define a structure containing the new fields and include it in the table definition.
Denunciar test Consentimiento Condiciones de uso