option
Cuestiones
ayuda
daypo
buscar.php

MEHP No. 3

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

Descripción:
MEHP No. 3

Fecha de Creación: 2023/07/10

Categoría: Personal

Número Preguntas: 80

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

Which of the following are incorrect statements? There are 2 correct answers to this question. TYPES: werks TYPE C LENGTH 4. TYPES. date_ty TYPE D LENGTH 10. TYPES: carrid_ty LIKE spfli-s-carr_id. TYPES: Str TYPE STRING LENGTH 20.

Which of the following statements can you use to setup checkpoints in an ABAP program? There are 3 correct answers to this question. BREAK POINT. CHECK. BREAK. LOG-POINT. ASSERT.

What can you do with the code inspector? There are 2 correct answers to this question. Create your own inspections, object sets and check variants. Choose from only the performance, security and user interface check categories. Create an object set to represent the programs and objects to be inspected. Create only local inspections, objects sets and check variants.

"You have the following class definition: CLASS lei_airplane 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 classic_airplane? There are 3 correct answers to this question.". SET ATTRIBUTES. GET PASSENGERS. SET_PASSENGERS. C_POS. MV PASSENGERS.

A view can only be displayed in which circumstances? Please choose the correct answer. It has been embedded in a window. It can always be displayed. It contains an inbound and outbound plug. It cannot always be displayed.

How do you embed a subscreen in a main screen? Please choose the correct answer. Use CALL SUBSCREEN in the flow logic of the main screen. Use SET SUBSCREEN in the flow logic of the main screen. Use CALL SUBSCREEN in a PBO module of the main screen. Use SET SUBSCREEN in a PBO module of the main screen.

You created a class by inheriting from a superclass. The superclass contains a public instance method do_something. You want to redefine method do_something. What must you do? Please choose the correct answer. Call the implementation in the superclass. Leave the signature of the method unchanged. Change the visibility of the method to PROTECTED. Declare the method FINAL.

When is a foreign key check performed on an input/output field? Please choose the correct answer. If the field refers to the dictionary field for which a append search is defined. If the field refers to the dictionary field for which a search is defined. If the field refers to the dictionary field for which a value help is defined. If the field refers to the dictionary field for which a check table is defined.

What is the best order to provide an event handler for an ALV? Please choose the correct answer. Write the handler, create the ALV, display the ALV, register for the event. 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. Write the handler, register for the event, create the ALV, display the ALV. Register for the event, write the handler, create the ALV, display the ALV.

Which property of the InputFieId UI element must be bound to a context attribute? Please choose the correct answer. Visible. Value. State. Enable.

Which of the following controller types can exist only once in a Web Dynpro component? There are 2 correct answers to this question. Configuration controller. Component Controller. Window controller. View Controller.

Which of the following Data Types are allowed in ABAP? There are 2 correct answers to this question. DECFLOAT34. DE-CFLOAT16. DECFLOAT64. DECFLOAT32.

What is the default selection screen number for the ABAP program? Please choose the correct answer. 100. 1000. None of the above. 1100.

What does Software Layer Aware Debugging allow you to do? There are 4 correct answers to this question. Debug only a small portion of code. Specify as much or as little code to debug. Debug a large portion of code. Bypass authorization objects. Trace executing code.

Your program uses the class CL_GUI ALV GRID to generate a classic ALV Grid Control. What do you need in your program to react to a use double-clicking a row in the ALV Grid? There are 3 correct answers to this question. A method call to create the event handler. A handler method for the double click event. A SET HANDLER statement to register the handler to the event. A method call to refresh the display. A handler class.

At most, how many menu items (including functions, separators and sub- menus) can a menu have on the screen? Please choose the correct answer. 20. 15. 10. None of the above.

You want to read a single line of an internal table using table expression itab[ ...l. How can you identify the line? There are 3 correct answers to this question. Specify a secondary table key. Specify a free table key. Specify a regular expression. Specify the line index. Specify a Where condition.

Which of the following settings can you define for both structures and transparent tables in the ABAP Dictionary? There are 2 correct answers to this question. Enhancement category. Size category. Foreign key relationships. Storage type.

Where can you define data types that can be accessed directly by all ABAP repository objects in an SAP system? There are 2 correct answers to this question. In a global class. In a method. IN a ABAP DICTIONARY. In a function module.

To benefit from the hash algorithm when accessing a hashed internal table, how do you specify the key? Please choose the correct answer. Left aligned, gap free. Any key. Under-qualified. Fully qualified.

You have implemented a class CL_CUSTOMER in which you defined a private attribute. From where can you access this attribute directly? There are 2 correct answers to this question. From any program using the class CL_CUSTOMER. From all methods of a class to which CL CUSTOMER grants friendship. From all methods of all subclasses of CL CUSTOMER. From all methods of the class CL CUSTOMER.

Which of the following actions can be performed in the Process After Input (PAI) processing block? Please choose the correct answer. Modify screen attributes dynamically. Set the title bar. Check the function code. Set the GUI status of the screen.

What is the default length of the type C data type? Please choose the correct answer. 100. 1. 10. 1-65535.

What is the difference between a Unicode and non-Unicode program? Please select all the correct answers that apply. Offset positioning in a Unicode structure is restricted to flat data objects. Byte-type data objects cannot be compared to character-type data objects. Offset positioning in a Unicode structure is restricted to character data objects. Byte-type data objects cannot be assigned to character-type data objects.

Which of the following must you do to be able to use a Business Add-in (BADI)? There are 2 correct answers to this question. Create the BADI implementation. Modify the adapter class. Write code for methods. Activate the enhancement project.

Which of the following is a true statement? There are 2 correct answers to this question. An access key is required to implement an implicit enhancement point. An access key is required to implement business add-ins. An access key is required to modify SAP repository objects. An access key is required to enhance an SAP application using a user exit.

Which data types are incomplete ABAP standard data types? There are 3 correct answers to this question. F. I. C. N. P.

You want to develop a program that processes character type data. When you implement the program, you can either use the classical string statements or the newer strings expressions and functions What are the main benefits of using string expressions and string functions? There are 2 correct answers to this question. You can reduce the number of intermediate variables. You can write code that is very easy to read and understand. You can improve the performance significantly. You can write compact syntax instead of a long sequence of statements.

dbtab is a transparent table. What is declared by the following statement? DATA myvar TYPE dbtab. Please choose the correct answer. An elementary field. A reference to an internal table. An internal table. A structure variable.

What are the differences between displaying in a full screen and in a container? There are 2 correct answers to this question. Only a full-screen ALV allows the use of event handling. The only difference is that the container name must be specified when creating the ALV object. The container requires the use of an additional object (a container control). Only an ALV in a container allows the use of event handling. The full screen requires Dynpro programming. Any type of ALV allows the use of event handling.

Which comparison operators can you use in a logical expression related to the WHERE clause of the SELECT statement? There are 3 correct answers to this question. EQ (equals). CO (contains only). CP (covers pattern). LIKE (fits pattern). GT (greater than).

How can you improve the performance when accessing a large data volume database table? Please choose the correct answer. Define appropriate indexes for the database table. Switch the database table to fully buffered. Apply the appropriate data class and size category. Change the table type in the dictionary.

You have created a Web Dynpro view that shows data for airline connections between cities. You want to display flight data for a specific date in a different view after the user select a date and presses a button. Which of the following actions you must perform? There are 2 correct answers to this question. Edit the handler method in the view controller. Set the interface property for key fields. Create and link plugs between the views. Add a client-side event in the view.

Which database objects can you create in the ABAP Dictionary? There are 2 correct answers to this question. Logical databases. Indexes. Foreign key relationships. Projection views.

To generate the function modules for a lock object for a custom table (ENQUEUE_<Iock_object> and DEQUEUE_<Iock_object>), which tool would you use? Please choose the correct answer. Reuse Library (Transaction SE83). Function Builder (Transaction SE37). Text Elements (Transaction SE32). General Table Maintenance Dialog (Transaction SE54). ABAP DICTIONARY (Transaction SE11).

How can you maintain documentation for input fields on your screen? Please choose the correct answer. Add documentation to the SCREEN table at PROCESS AFTER INPUT (PAI). Add documentation to the underlying data element. Define text tables for the underlying structure. Add documentation to the SCREEN table at PROCESS BEFORE OUTPUT (PBO).

You are writing an ABAP declaration using the data element S_CARR_ID. Which of the following statements correctly define a data object? There are 2 correct answers to this question. DATA gv_id TYPE s_carr. DATA gv_id TYPE DEFAULT 'QF'. DATA gv_id LIKE s_carr. CONSTANTS gc_qf TYPE s_carr_id VALUE 'QF'.

Which of the following are true statements? There are 3 correct answers to this question. Table fields can be assigned to an ABAP Dictionary data type directly. Table fields can be assigned to a data element. Search helps for a data table field that is assigned to a predefined data type. A reference table and field required for fields with the data types QUAN and CURR.

Where do you create online documentation ((FI) help) for fields on the screen? Please choose the correct answer. Field. Data element. Domain. Structure. Table.

What is the default length of the type P data type? Please choose the correct answer. 64. 1-16. 1. 8.

Each button on a Dynpro (screen) requires the assignment of a function code. This function code... Please choose the correct answer. Prevents the function code from be assigned to a menu item. Is used to define global variables that receive a value when the button is clicked. Prevents the function code from be assigned to a category item. Can be used to identify when the button is clicked by looking for the function code in the screen's OK CODE field.

Which of the following standard hook methods exist in all Web Dynpro controllers? There are 2 correct answers to this question. Wddoinit. Wddoafteractions. Wddoexit. Wddobeforenavigation.

Which of the following statements regarding the event AT SELECTIONSCREEN ON HELP-REQUEST FOR is correct? Please choose the correct answer. This event will display self-defined (F1) help for the input field programmed in the x event block and will override any help possibly defined in the ABAP Dictionary for the field. None of the above. This event will display (F1) help for the input field on the selection screen. This event will display self-defined (F1) help for the output field programmed in the event block and will override any help possibly defined in the ABAP Dictionary for the field.

The following piece of code is used DATA: def TYPE abc, Ghi LIKE xyz. Which of the four elements are data types and which are data objects? Please choose the correct answer. abc - data type def, ghi ,xyz - data objects. abc - data type def, ghi - data objects xyz - data type or data objects. def, ghi - data objects abc, xyz - data type or data object. abc, xyz - data type def, ghi - data objects.

You Created the following ABAP Code: DATA x TYPE REF TO DATA DATA y TYPE REF TO OBJECT ASSIGN x TO ASSIGN y TO You want to add a declaration of <fs> to the Code. Which of the Following Declarations are Valid? There are 2 correct answers to this question. FIELD-SYMBOLS TYPE REF TO ANY. FIELD-SYMBOLS <fs> TYPE ANY. FIELD-SYMBOLS <fs>. FIELD-SYMBOLS TYPE REF TO DATA.

The Internet Communication Manager (ICM)... Please choose the correct answer. Replaced SAP ITS. Can not replaced SAP ITS. Allows SAP NetWeaver Application Server to process HTTP requests. Allows the ABAP stack and the Java stack to exchange data.

Which ABAP Dictionary object can reference a domain? Please choose the correct answer. Data element. Database table field. Table type. Structure.

"A class is defined as follows: CLASS my_class DEFINITION. PUBLIC SECTION. METHODS do_something. EVENTS state_changed. CLASS-METHODS staticl. PRIVATE SECTION. TYPES t table TYPE STANDARD TABLE OF tool WITH NON-UNIQUE DEFAULT KEY. CONSTANTS gc_const TYPE IVALUE 1. ENDCLASS. Which components of the class can static method staticl address directly? There are 2 correct answers to this question.". The do_something method. The state_changed event. The t_table type. The gc_const constant.

Which method of passing parameters is preferred for its performance? Please choose the correct answer. Pass by class. Pass by reference. Pass by subclass. Pass by value.

With what can you simulate multiple inheritance? Please choose the correct answer. INTERFACES. CLASS CATEGORY. REDEFINITION. INHERITING FROM.

Which of the following tools belong to the ABAP Workbench? There are 3 correct answers to this question. Easy Access Menu. Function Builder. Class Builder. Form Builder. Screen Painter.

What does SAP recommend that you use a hashed table? Please choose the correct answer. When a table must be accessible by both index and key. When a table is very large and you want to access the table by key only. When a table must be sorted automatically by key in ascending order. When a table is very large and you want to access the table by index only.

Which hook method exists for all controller types? Please choose the correct answer. wddoinit( ). wddobeforenavigation( ). wddoonopen( ). wddoonclose( ).

Value help can be supplied from which of the following? Please select all the correct answers that apply. Fixed values. Search help for a check table. Search help for a screen field. Search help for a data element. Process On Value request. Key values of a check table. Search a help for table or structure fields. Search help from a text table.

Which of the following ABAP dictionary types can you use to define domains? There are 3 correct answers to this question. FLOAT. DEC. DATE. NUMC. CHAR.

When would you call the RFC function module synchronously? There are 2 correct answers to this question. During interactive communication. During QUEUE processing. During unidirectional communication. During two ways communication.

An ABAP program processes the following expression: r = a / b + c, Which of the following data declarations would cause the runtime environment to use fixed-point arithmetic for the above expression? Please choose the correct answer. DATA: r TYPE f, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f. DATA: r type p, a type iVALUE 201, b type iVALUE 200, c type i. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE p. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f.

Which statements about ABAP are true? Please choose the correct answer. Each statement must begin with a keyword. Each statement cannot begin with a keyword. Each statement must end with a period. ABAP keywords and additions must be in uppercase.

What process is used to establish the automatic transport of data between the view controller's context-attributes and the UI element in its layout? Please choose the correct answer. Data binding. View assembly. Data migration. Context mapping.

The data buffered on each application server... Please choose the correct answer. Is does not the same. Is never the same. Is always the same. Depends on the users.

When is an ENDSELECT not required for a SELECT? There are 3 correct answers to this question. When you do a SELECT SINGLE. When you specify appending a table. When you specify a join of tables. When the FROM is a view. When you specify into a table.

Which of the elementary data types is deep? Please choose the correct answer. X. DECFLOAT34. XSTRING. N.

Which of the following is an implicit enhancement? There are 2 correct answers to this question. Protected method. Pre_method. Private Method. Overwrite Method.

Which of the following can you assign a search help to? There are 3 correct answers to this question. Data element. Table type. Check Table. Structure component. Domain.

What must you specify in a Unicode system when opening a file in TEXT MODE? Please choose the correct answer. The code page. The byte order. The ENCODING addition. The layer page.

How can Unicode checks be made? There are 2 correct answers to this question. Cannot be enforced. In any system (after release 6.10) by specifying the program has Unicode checks active. Only in a Unicode system or as part of a conversion to a Unicode system. By running Transaction UCCHECK.

The USER has the following fields: ID, FIRST_NAME, LAST_NAME. FIRST_NAME, LAST NAME have the same basic type and length. You want to compare fields FIRST NAME, LAST NAME to each other. Which of the following SELECT statements can you use? There are 2 correct answers to this question. SELECT*FROM users INTO TABLE It_users WHERE first name = users »last_name. SELECT*FROM users AS a INTO TABLE It_users WHERE a first_name = last_name. SELECT*FROM users INTO TABLE It_users WHERE first_name = users last_name. SELECT*FROM users AS a INTO TABLE It_users WHERE a»first_name = a»last_name.

Which of the following regarding search helps is a true statement? Please select all the correct answers that apply. The LPos parameter defines the position of the search help parameter in the search hit list. The interface for the search help is defined by the IMP (import) and EXP (export) flag of the search help parameter. The SPos parameter defines the position of the input field on the dialog screen. The text table for the selection method is automatically populated if the text table is attached to the database table being used as the selection method.

A screen has the following PAI flow logic: PROCESS AFTER INPUT FIELD A MODULE check A FIELD B MODULE check B CHAIN. FIELD: C, D MODULE check CD ENDCHAIN CHAIN. FIELD: C, B. MODULE check CB ENDCHAIN What happens if the application sends a type E message during the check_CB module processing? Please choose the correct answer. The screen is NOT displayed again. Processing terminates and the user must restart the ABAP program. The screen is displayed again without processing the PBO flow logic. Only fields B and C are ready for input. The screen is displayed again and the PBO flow logic is processed. Only fields B and C are ready for input. The screen is displayed again without processing the PBO flow logic. All fields are ready for input.

Identify the types of layout managers. There are 4 correct answers to this question. FlowLayout. GridLayout. MatrixLayout. TreeLayout. ColumnLayout. RowLayout.

Dynpros can be placed in which program types? There are 3 correct answers to this questions. Class pool. Function groups. Executables. Module pools.

You are asked to enhance the GUI status of an SAP standard application. How do you identify which menu exit function code you can use? Please choose the correct answer. It stars with a dollar ($). It stars with a asterisk (*). It stars with a plus (+). It stars with an ampersand (&).

You want to select data from two tables and store the result in as structure. Table PARTNER contains the fields PART_ID and KIND. "Table CONTRACT contains the fields CONT_ID, CONT_TYPE and DIVISION (la tabla CONTRACT debería contene un campo de tipo PARTNER-part_id que se asume en los SELECT para poder aplicar el LEFT JOIN, es correcta la marcada)" The structure is defined as follows "DATA: BEGIN OF wa_result, Part_id TYPE partner-part_id, cont_id TYPE contract-cont_id, Cont_type TYPE contract-cont_type, END OF wa_result" Lt_result TYPE TABLE OF wa_result. How can you replace the following SELECT statement with an outer join? "SELECT part_id from PARTNER INTO wa_result WHERE kind = 'Residential'. SELECT cont_id from CONTRACT into wa_result-cont_id WHERE part EQ wa_partner-part_id AND DIVISION EQ 'Water'. Append wa_result to It_result. ENDSELECT. If sy-subrc<>0. CLEAR wa_result-cont_id APPEND wa result TO It result. ENDIF. ENDSELECT." Please choose the correct answer. SELECT part_id cont_id from PARTNER AS A LEFT JOIN CONTRACT AS B ON a~ part_id = b~part_id INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE kind = 'Residential' and AND division EQ 'Water'. SELECT part_id cont_id from PARTNER AS A LEFT JOIN CONTRACT AS B ON a~ part_id = B~part_id AND b~division EQ 'Water' INTO TABLE lt_result WHERE kind = 'Residential'. SELECT part_id cont_id from PARTNER LEFT JOIN CONTRACT ON partner-part_id = contract-part_id AND partner-kind EQ 'Residential' INTO CORRESPONDING FIELDS OF TABLE It_ result WHERE division eq 'Water'. SELECT part_id cont_id from PARTNER LEFT JOIN contract ON partner-part_id = contractpart_id AND contract-division EQ 'Water' INTO TABLE It_result WHERE kind EQ 'Residential'.

What does the enhancement category for a database table or structure do? There are 3 correct answers to this questions. Can produce warnings at incompatible points for the structure. Can indentify where program behavior may change. Specifies the types of changes that can be made to the structure. Makes a tables Unicod-compliant.

Which of the following capabilities is provided by the Application Layer platform of SAP Netweaver? Please choose the correct answer. Master data management. Multi-chanel access. Business process management. Database and operating system abstraction.

Which of the following elements can a string template contain? There are 2 correct answers to this questions. Funtional method calls. Funtion module calls. String processing statements. Literals.

Which statements are true about a class that has granted friendship to another class? There are 4 correct answers to this questions. All classes the friend has granted friendship access status to also have the same access. The friend has access to public attributes. The friend has access to protected attributes. All classes that inherit from the friend (subclasses) also have the same access. The friend has access to private attributes.

For which of the following purposes can you use the ABAP dictionary There are 2 correct answers to this questions. To create lock objects. To maintain program translations. To create development classes. To activate logging for transparent tables.

Which of the following steps are required to set up a shared memory area? There are 3 correct answers to this questions. Declare a catalog objetc. Call the attach_for_write method of area root class. Enable multiple versions of an area root class. Generate an area root class. Set the root object.

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? There are 2 correct answers to this question. MESSAGE exxx(nnn). DELETE UPDATE. ROLLBACK WORK. MESSAGE axxx(nnn). EXIT.

Denunciar Test