option
Cuestiones
ayuda
daypo
buscar.php

MEHP No. 1

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
MEHP No. 1

Descripción:
MEHP No. 1

Fecha de Creación: 2023/07/06

Categoría: Personal

Número Preguntas: 80

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

Which of the following includes are generated when you create a function group? Please choose the correct answer. LxxxxUXX. LxxxxTOP. LxxxxOO 1. LxxxxF01.

Where should the labels for fields be stored? Please choose the correct answer. Field. Data element. Structure. Domain. Table.

There are versions of the ABAP Editor. Please choose the correct answer. 3. 1. 2. 4.

You have 2 objects: 01 of type class Cl and 02 of type class C2. Class C2 is a subclass of class Cl. Which of the following statements implements an up cast? Please choose the correct answer. 01 - 02. MOVE 01 ?TO 02. MOVE 01 TO 02. 02 ?- 01.

You define a generic variable that can hold the ABAP types C, D, N, STRING, and T. You want to restrict the use of other ABAP types. Which generic data type must you use in the definition?. SIMPLE. CLIKE. DATA. CSEQUENCE.

Your selection screen can be modified at which event?. None of the above. AT SELECTION-SCREEN. AT SELECTION-SCREEN OUTPUT. AT SELECTION-SCREEN ON <field name>.

Which controller types can exist within a Web Dynpro component? There are 3 correct answers to this question. Component controller. Application controller. Window controller. User controller. View Controller.

Which of the following ABAP standard types are numeric? There are 3 correct answers to this question. F. N. P. I.

How is an ABAP program with several dialog steps executed? Please choose the correct answer. 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 diferent dialog work process. The program is always executed in just one dialog work process without roll out.

Which of the following is correct? Please choose the correct answer. The screen attributes can be modified in the PROCESS AFTER INPUT event block. None of the above. The screen attributes can be modified in the PROCESS BEFORE OUTPUT and PROCESS AFTER INPUT event blocks. The screen attributes can be modified in the PROCESS BEFORE OUTPUT event block.

How do you define an internal table in a private method of a class? There are 3 correct answers to this question. DATA It_itab TYPE TABLE OF <Structure Type>. DATA lt_itab TYPE TABLE OF < Dictionary Table >. DATA lt_itab TYPE <Dictionary Table>. DATA It_itab TYPE TABLE OF <Dictionary Table > WITH HEADER LINE. DATA lt_itab TYPE <Table Type>.

In which modularization units can you use parameters? There are 3 correct answers to this question. Dialog modules such as PBO modules. Function modules. Event blocks such as START-OF-SELECTION. Subroutines. Methods.

What are the prerequisites when creating an append structure for a standard SAP table? There are 2 correct answers to this question. The fields in the append structure should star with YY or ZZ. The enhacement category of the table is NOT set to ¨Not enhacable¨. The table must be copied before the append structure can be created. The table cannot have any fields of type FLT P.

What do you need to consider when creating a secondary index on a table? There are 2 correct answers to this question. The table will be updated more quickly if you create more indexes. The most frequently selected fields should be at the first positions in the index. The index must always be unique. The index can be created for specific database systems only.

Which statement ends a screen sequence and starts from initial screen? Please choose the correct answer. SET SCREEN O. LEAVE SCREEN. CALL SCREEN. LEAVE TO SCREEN.

What must exist before you can create a new transportable function module? There are 3 correct answers to this question. Package. Module pool. Change Request. Type Group. Function Group.

Which of the following statements are correct? There are 3 correct answers to this question. An enhancement spot can contain either an explicit enhancement point and enhancement section or a new BAdI only, but all three cannot be in the same enhancement spot. An enhancement spot can contain an explicit enhancement point and an enhancement section. An enhancement spot can contain an explicit enhancement point, explicit enhancement section, and new BAdI. An enhancement spot can contain one or more simple or composite enhancements.

Identify the ways to map context structures. There are 2 correct answers to this question. Static context mapping. External Content Mapping. Direct context mapping. Dynamic context mapping.

Subroutines provide which types of parameters? There are 2 correct answers to this question. Return values. Exceptions. Input. Input/output (changing). Output.

Which of the following transactions are integrated in the ABAP workbench tools? There are 2 correct answers to this question. Overview of job selection (SM37). Class builder (SE24). ABAP editor (SE38). Process overview (SM50).

Which of the following components belong to the SAP application layer? There are 2 correct answers to this question. Database server. Database Ineterface. ABAP dispatcher. SAP GUI.

You are making changes to a program that already has a transaction code linked to it. Your colleague is testing the transaction in your development system. At what point can the changed version of the program be tested? Please choose the correct answer. When you perform a syntax check on the program. When you activate the program. When you release the transport requests for the program. When you save the program.

Which of the following rules must you follow when you create a static constructor? There are 2 correct answers to this question. You must define the method as pubic. You CANNOT define parameters. You can define class-based or classic exceptions. You must name the method CONSTRUCTOR.

You have written a method implementation containing the following access to an internal table defined as a changing parameter of the method. READ TABLE ct_itab INTO struc INDEX 1. What are the possible type definitions for parameter ct_itab? There are 3 correct answers to this question. Hashed Table. Sorted Table. Standard Table. Index Table. Any Table.

In an ABAP program, you to assign an initial value to an elementary data object when you define it. Which addition must you use? Please choose the correct answer. OBLIGATORY. VALUE. DEFAULT. READ-ONLY.

How would you find out if an application program offers a program exit? Please select all the correct answers that apply. Look for a customer exit in the SAP reference IMG within an application area. Use the Repository Information System. Search for the character string CUSTOMER-FUNCTION. Use the Application Hierarchy.

What is mandatory for automatic data transport between a variable and an input field on a classical screen (dynpro)? Please choose the correct answer. The variable must be declared using the TABLES statement. The property OUTPUT of the input field must be set. The name of the variable and the name of the input field must be identical. The variable must be declared using the DATA statement.

Which of the following statements are true? There are 2 correct answers to this question. A database view is implemented as an inner join. A database view is implemented as an outer join. A maintenance view is implemented as an outer join. A maintenance view is implemented as an inner join.

Which of the followings components are part of SAP NetWeaver AS ABAP version 7.Ix and higher? There are 2 correct answers to this question. Internet Communication Manager (ICM). SAP GUI for Java. Software Deployment Manager (SOM). Message Server.

ABAP is a programming language that… Please select all the correct answers that apply. Interacts with the user. Separates program code from language text. Executes on all three levels of the three-tier architecture. Processes adn formats data. Controls the business logic.

You have declared a sorted internal table with the columns A, B, C, and D. The key consists of columns A, B, and C, in this order. Which combination of columns in the WHERE clause of a LOOP statement allows the system to optimize the access to the table? There are 2 correct answers to this question. C and D. A and B. A, B, C, and D. B and C.

Which of the following customer modifications options are available in the table maintenance generator? There are 2 correct answers to this question. Append searches. Search helps. Maintenance Screens. Events.

What must before you can create a new transportable function modules? There are 3 correct answers to this question. Exception class. Package. Transpor request. Module pool. Function group.

Is it possible to have multiple active implementations of business add-ins at a time? There are 2 correct answers to this question. It can have multiple implementations if the Filter-Depend. checkbox is selected. It can have a multiple active implementation. It can have multiple active implementations if the Multiple use checkbox is selected. It cannot have a multiple active implementation.

Which of the following can you use to enhance SAP standard tables and structures with fields? There are 2 correct answers to this question. Customizing includes. Append structures. Field exits. Append search helps.

When are the changes to the VB* table transferred to the database? Please choose the correct answer. When the enqueue work process is executed. When an update function module is executed. When the main program is executed. When the update work process is executed.

DOG is a subclass of ANIMAL. You have created a variable of type ANIMAL that references an instance of the DOG class. Which of the following statements can you use to copy this reference to a new variable of type DOG? Please choose the correct answer. MOVE.... TO. MOVE-CORRESPONDING...... MOVE......?TO. WRITE......TO.

A work process… Please choose the correct answer. Stays linked toa screen through the dispatcher. Uses a common memory area called shared memory. Becomes inactive while waiting for a user. Becomes active while waiting for a user.

Which selection screen elements allow user input in ABAP Reports? There are 2 correct answers to this question. SELECTION-SCREEN BLOCK. SELECT-OPTIONS. PARAMETERS. SELECTION-SCREEN COMMENT.

What do you have to take into account before you decide to buffer a table? Please choose the correct answer. The entire table content must be loaded into the table buffer. The data must always be read from the buffer. The database server must allow table buffering. The data read from the buffer may NOT be current.

To which of the following you must assign newly created SAP repository objects? Please choose the correct answer. Package. Transport request. Function group. Transport task.

You use Unified Modelling language (UML) to design your classes. You want to describe the message exchange between objects. Which diagram can you use? Please choose the correct answer. Object diagram. Component diagram. Class diagram. Sequence diagram.

In which circunstances is a table considered to be a text table? There are 3 correct answers to this question. This table only has one character-based data field. The ABAP runtime system determines that the relationship exists. This table has an additional language key field. This table has a foreign key to the data table as a text table. The entire key of this data table is included as the key to this table.

SAP enhancements for customer exits are managed by which transaction? Please choose the correct answer. Transaction SMOD. Neither transaction listed here. Transaction CMOD. Application CMOD.

Which of the following statements are correct? There are 4 correct answers to this question. You can call private methods within the public methods without reference to the object or class. Only public methods can be adressed outside the class. None of the above. Class methods assigned to the public visibility section can be accessed outside the class using the static component selector and the class name. Static methods can be defined in both the public and private visibility section of the class.

Which ABAP statement using the local type gty_l correctly defines a data object? There are 2 correct answers to this question. DATA gv_l TYPE gty_l DEFAULT. CONSTANTS gc_1 TYPE gty_1 VALUE '1'. DATA gv_l LIKE gty_l. DATA gv_l TYPE gty_l.

Identify the types of controller. There are 5 correct answers to this question. Component controller. Configuration controller. Consumer controller. Window controller. View controller. Custom controller.

Which you should specify in a non-Unicode system when opening a file in TEXT MODE? There are 2 correct answers to this question. The code page. The byte order. The ENCODING addition. The storage order.

Which data element property do you set so that the system logs changes to the content of fields with this data element? Please choose the correct answer. Documentation. Change Document. PARAMETER ID. Input history.

You need to perform a downcast. What should you do? There are 2 correct answers to this question. Use the operator. Catch the exception CX_SY_MOVE_CAST_ERROR. Assign a subclass reference to a superclass reference. Use the operator "?=".

Which of the following characters is the first of a menu exit function code? Please choose the correct answer. -. *. &. +.

How is data shared between Web Dynpro controllers? There are 2 correct answers to this question. By using context mapping from a view controller to another view controller. By using context mapping from a view controller to a custom controller. By using data binding from a view controller to another view controller. By using context mapping from a view controller to the component controller.

Which of the following is a true statement? There are 3 correct answers to this question. Inactive objects can be transported. All transportable objects have to be assigned to a package. Client-specific customization objects are assigned to the customizing request. Local repository objects can be transported. Repository objects and cross-client customization objects are assigned to the workbench request.

What can you change in the ABAP Debugger? Please choose the correct answer. Value of a reference variable. Content of an internal table. Definition of a structure. Value of a constant.

How many work areas are available in the Debugger? Please choose the correct answer. 12. 15. 9. 7.

What features are provided by the database interface? There are 3 correct answers to this question. Syntax check of Native SQL commands. Access to SAP table buffers. Database independence of application programs. Data consistency check using foreign key relationships. Conversion of Open SQL statements from ABAP statements into the corresponding database statements.

Where can you set the GUI status and the GUI title for a classical screen (dynpro)? Please choose the correct answer. In the properties of the related header UI element. In a module called from PAI of the screen. In a module called from PBO of the screen. In the attributes of the screen.

What is the allowed length of the ABAP Dictionary data type DF16_DEC? Please choose the correct answer. The allowed length is between 0 and 15 digits. The allowed length is between 1 and 15 digits. The allowed length is 16 digits. The allowed length is between 0 and 16 digits.

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? Please choose the correct answer. Transparent table. Pooled table. Internal table. Cluster table.

Which of the following program types can contain screens? There are 3 correct answers to this question. Interface pools. Function groups. Excecutable programs. Class pools. Module pools.

Which statements are considered obsolete and cannot be used in ABAP Objects? Please select all the correct answers that apply. ON CHANGE OF. SEARCH. TABLES. LOOP AT dbtab. DATA…TYPE…OCCURS. RANGES. DATA…BEGIN OF…OCCURS. INFOTYPES. LEAVE.

What is unique about a functional method? There are 5 correct answers to this question. It can contain a changing parameter. It can contain a exporting parameter. It can be used in logical expressions. It can contain an importing parameter. It must contain a returning parameter. It must be a singleton. It can be used in SELECT statements.

"You want to check the user input in the field FIELD NAME on a classical screen. If an incorrect value is entered, the user should be able to correct the field value. How do you call the module CHECK_MODULE in the PAI of the screen to accomplish this?" Please choose the correct answer. FIELD field name MODULE check module. CHAIN. MODULE check module FIELD field name. ENDCHAIN. MODULE check module ON ERROR. FIELD field name MODULE check module MESSAGE Ennn.

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? There are 3 correct answers to this question. Select from the list of application-related BAdIs or enhancement spots in the SAP Application Hierarchy. Perform a program-related global search for GET BADI. Select from the list of freely selected BAdIs or enhancement spots in the Repository Information System. Perform a program-related global search for a Customer exit. Search for a Business Transaction Event in the Customizing tree (transaction SPRO).

Which of the following are table buffering types? There are 3 correct answers to this question. Column-store. Generic. Primary-key. Single-record. Full.

You are creating an inspection using the Code Inspector. Which entities can you select for inspection? There are 3 correct answers to this question. Contents of a transport request. Contents of named user's objects. Contents of an object set. Contents of a Single Object. Contents of a package.

Which of the following are key capabilities of SAP NetWeaver? There are 3 correct answers to this question. Application Platform. Supply Chain Management. People Integration. Enterprise Resource Planning. Information Integration.

A transport company keeps track of this availability in two tables, table VEHICLES and table TRANSPORT. To accept a new transport of a certain capacity must be found in table VEHICLES. If a record is found, a record is created in table TRANSPORT. The capacity is then adjusted in table VEHICLES. You have four function modules at your disposal. UPD VEHI_A and UPD VEHI_B update a matching report in table VEHICLES. If an error occurs both issue a message of type X. If no error occurs only UPD VEHI A issues a message of type X. If no error occurs UPD VEHI A issues a message of type I. UPD TRAN_A and UPD TRAN_B create a single record in table TRANSPORT. If an error occurs both issues a message of type X. If no error occurs only UPD TRAN A issues a message of type I. Which of the following function module calls ensures a single logical unit of work? Please choose the correct answer. 1. UPD VEHI A 2. UPD TRAN B. 1. UPD TRAN A 2. UPD VEHI B. 1. UPD VEHI A 2. UPD TRAN A. 1. UPD TRAN B 2. UPD VEHI B.

What is the event block that all of your code changes belongs to if you do not explicitly code any event blocks in an executable program? Please choose the correct answer. LOAD-OF-PROGRAM. INITIALIZATION. AT SELECTION-SCREEN OUTPUT. START-OF-SELECTION.

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? Please choose the correct answer. Define an append structure with these two fields and assign this append structure to both database tables. Define the two fields in each database table separately. Define a structure with these two fields and include this structure in both database. Define the two fields in one database table and copy them to the other database table.

You always want to check the user authorization for data entered in an input field of a selection screen. Where do you do this? Please choose the correct answer. In the event block INITIALIZATION. In the event block AT SELECTION-SCREEN on VALUE-REQUEST. In the event block AT SELECTION-SCREEN OUTPUT. In the event block AT SELECTION-SCREEN.

Which of the following statements dynamically changes the data type of field zl? Please choose the correct answer. Move zl to. Assign z1 to <fs> casting. Unassign. Assign zl to.

Your code contains the following statement: READ TABLE gt_itab INTO gs_struc INDEX 1 . When defining gt_itab, which internal table types can you use? Please choose the correct answer. Sorted and hashed. Standard, sorted, and hashed. Standar and sorted. Standard and hashed.

You want to define data structures to hold two fields with data elements s carr id and s_carrname. Which of the following declarations can be used to define this data structure? There are 2 correct answers to this question. DATA: BEGIN OF gs_flight,. TYPES: BEGIN OF gs_flight,. DATA BEGIN OF gs_flight,. TYPES: BEGIN OF gty_flight.

You create a domain in the ABAP dictionary. How can you use this domain? Please choose the correct answer. To define data objects in ABAP programs. To define technical properties of data elements. To define the data type of a table field or structure component. To describe the value range of a table field or structure component.

When does the lifetime of a Web Dynpro component begin and end? Please choose the correct answer. It ends each time it is called, and it ends when the component completes. It begins when instantiated and it ends when the program ends or the object is freed. It begins the first time it is called at runtime, and it ends with the Web Dynpro application that called and instantiated the component ends. It begins each time it is called, and it ends when the component completes.

What is the best order to provide an event handler for an ALV? Please choose the correct answer. Create the ALV, write the handler, register for the event, display the ALV. Write the handler, create the ALV, register for the event, display the ALV. Register for the event, write the handler, create the ALV, display the ALV. Write the handler, register for the event, create the ALV, display the ALV. Write the handler, create the ALV, display the ALV, register for the event.

Which of the following statements are true? There are 2 correct answers to this question. Static attributes can be declared only in the private visibility section of the class. Static attributes cannot be changed by an object. Static attributes are declared with the CLASS-DATA statement. A static attribute is the same across all instances of the class. There is only one static attribute across all instances of the class.

What is the difference between a value table and a check table? Please choose the correct answer. A value table is a check table after a foreign key is defined. A value table does not exist. No difference; they are the same thing. A value table is defined in the domain, whereas a check table is defined in the data element. A check table is defined in the domain, whereas a value table is defined in the data element.

You have the following class definition: CLASS Iei_airpIane DEFINITION. PUBLIC SECTION. METHODS set_passengers. PROTECTED SECTION. CONSTANTS: c_pos type ivalue 100. METHODS: get_passengers. PRIVATE SECTION. DATA: nw_passengers TYPEi. METHODS: set_attributes. ENDCLASS. Which components can be addressed directly from a subclass of cIassic_airpIane? There are 3 correct answers to this question. MV_ PASSENGERS. GET_PASSENGERS. SET_PASSENGERS. SET_ATTRIBUTES. C_POS.

Denunciar Test