option
Cuestiones
ayuda
daypo
buscar.php

MEHP No. 2

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

Descripción:
MEHP No. 2

Fecha de Creación: 2023/07/07

Categoría: Personal

Número Preguntas: 80

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

You are using the new debugger and you want to change the content of an internal table. Which actions are allowed? There are 3 correct answers to this question. Delete table from memory. Delete the selected rows. Change row content and press Enter (<ENTER>). Delete the entire contents of a table. Change row content and press Save (<CTRL> + S).

When you add programming logic to your ABAP program that checks authorizations, which of the following do you have to create? There are 2 correct answers to this question. An authorization role. An authorization profile. An authorization Access. An authorization object.

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

How many kinds of internal tables are supported in the ABAP language? Please choose the correct answer. 1. 3. 2. 5.

Which options are valid Open SQL? There are 3 correct answers to this question. CROSS JOIN. RIGHT OUTER JOIN. INNER JOIN. LEFT OUTER JOIN. FULL JOIN.

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

Each component has an interface of what does this interface consist? There are 2 correct answers to this question. Interface context. Interface controller. Data Container. Interface view.

A function module that has 2 classical exceptions is called with actual parameter values in such a way that both exception conditions are fulfilled. How will the runtime system behave? Please choose the correct answer. No exception will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option. The first exception that occurs will be raised. In the calling program, sy-subrc has the value specified for the first exception. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the second except on.

Which of the following statements are true? There are 3 correct answers to this question. None of the above. An implicit enhancement point can be used to insert code in an SAP program and is always available to the customer. Implicit enhancement can be used to enhance SAP objects developed prior to SAP NetWeaver 7.0. Implicit enhancement options allow you to enhance interface parameters for function modules and methods without modifying the repository object.

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? Please choose the correct answer. Assign function type E to the Cancel button and handle it in a module with the addition AT EXIT-COMMAND. Set the function code assigned to the Cancel button to CANCEL and handle it in a module with the addition AT EXIT-COMMAND. Use the LOOP AT SCREEN... ENDLOOP statement to set the "required" property of the input fields to zero. Set the function type assigned to the Cancel button to S and handle it in a module with the addition AT EXIT-COMMAND.

What is the maximum number of watchpoints that can exist at one time? Please choose the correct answer. 10. 8. 6. No Limit.

Each work process… There are 3 correct answers to this question. Uses a pool of database connections established when the SAP NetWeaver Application Server ABAP started. Uses a database connection to a work process established when the SAP NetWeaver Application Server ABAP started. Can make database changes spanning multiple database LUWs. Is independent of other work processes. Can only make database changes within a single database LUW.

What type of method is generated automatically by the Web Dynpro Explorer when you assign an action to a button UI element? Please choose the correct answer. Standard hook method. Ordinary method. Supply function. Event handler method.

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

Which enhancements can provide a screen exit? There are 3 correct answers to this question. Classic BAdIs. New BAdIs. Explicit enhancement sections. Customer exits. Explicit enhancement points.

What happens when an authorization check fails? Please choose the correct answer. The system field SY-SUBRC is set to a value other than zero. A CX_AUTH_FAILED type exception is raised. A type E message is displayed. The program is terminated.

Which of the following structures is created when you use a table type to define one of its components? Please choose the correct answer. Nested Structure. Deep structure. Append structure. Flat structure.

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

Which steps are needed when implementing the singleton concept for class instantiation with minimum coding? There are 3 correct answers to this question. Create an instance of the class in a static constructor. Define the instantiation of the class as private. Save the instance of the class in a static atribute. Create an event that returns the instance of the class. Define the class as abstract.

What can you create using the ABAP Dictionary? There are 3 correct answers to this question. Internal tables. Type pools. Domains. Transparent tables. Field symbols.

How can you declare an internal table using the transparent table A as its line type? Please choose the correct answer. DATA gt_itab TYPE LINE OF a. DATA gt_itab TYPE a. DATA gt_itab TYPE REF OF a. DATA gt_itab TYPE REF TO a.

What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question. SPAU. SPAD. SPAU ENH. SPDD.

Your task is to enhance the screen of an SAP standard application. How do you determine if there is a customer exit for this task? Please choose the correct answer. You search in the source code of the application for GET BADI statement. You search in the flow logic of the screen for CAL CUSTOMER-SUBSCREEN statement. You search in the SAP reference Implementation Guide (IMG) for a suitable user exit. You use the BAdI Builder (transaction SE19) to check for a suitable Business AddIn(BAd1).

You implemented a subclass that inherits the instance constructor from it superclass What can you do with the inherited constructor? There are 2 correct answers to this question. Redefine the implementation. Change the name. Change the signature. Create several implementations.

Which additions to the PARAMETERS statement can you use to fill the input field on the selection screen with a suggested value? There are 2 correct answers to this question. MODIF ID. MEMORY ID. DEFAULT. VALUE-CHECK.

Which ABAP statement can make an element visible that you statically defined as invisible? Please choose the correct answer. SCREEN-ACTIVE = 1. SCREEN-INVISIBLE = 1. SCREEN-ACTIVE = O. SCREEN-INVISIBLE = O.

Which elementary field types are considered a character type? There are 5 correct answers to this question. STRING. C. XSTRING. T. X. D. I. F. N.

What is the SAP recommended naming convention for append structures of standard SAP tables? Please choose the correct answer. The components of an append structure should start with Z or Y. The components of an append structure should start with ZZ or YY. The name of the append structure must start with ZZ or YY. The name of the append structure must start with ZA.

You define database view A and maintenance view B in the ASAP Dictionary. What restrictions apply to these views? There are 2 correct answers to this question. The join type of both A and B is an inner join. Only A can be used in the FROM clause of a SELECT statement. The tables joined in B must have foreign key relationships. The tables joined in A must have foreign key relationships.

Which assignment will lead to a conversion error? Please choose the correct answer. 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. A type C data object with the value '123' to a type C data object with length 2 TYPE c VALUE 123', TYPE c. gv_c2 = gv_c3. 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. An XSTRING type data object to a STRING type data object DATA.gv_xstring TYPE xstring, gv_string TYPE string. gv_xstring = 'AFOO'. gv_string = gv_xstring.

When should you use a hashed internal table? There are 2 correct answers to this question. When accessing mainly single records. When accessing by index. When accessing using the left-justified part of the key. When accessing always by primary key. When accessing by secondary key.

Which of the following function types in a GUI status are reserved for internal use? There are 2 correct answers to this question. S- SYSTEM. H-HELP REQUEST. E-EXIT. T-TRANSACTION.

Which of the following is a true statement? There are 3 correct answers to this question. A package can be nested. The transport layer is a mandatory input field for the package. Packages use interfaces and visibility to make their elements visible to other packages. All customer repository objects have to be assigned to a package.

How do you use a sorted internal table? There are 2 correct answers to this question. You can read the records by index or key. You use APPEND to insert records at the correct position. You can resort the table with SORT. You need to specify a key in the table declaration.

Which statement will interrupt the processing of the current screen and branch to new screen? Please choose the correct answer. None of the above. SET SCREEN <NNNN>. CALL SCREEN <NNNN>. LEAVE TO SCREEN <NNNN>.

Which of the following functions does the ABAP Dispatcher perform? There are 2 correct answers to this question. It enables communication between SAP systems and external application systems. It communicates with other instances in the system. It distributes user requests among available work processes. It directs HTTP requests from an SAP system to a web server.

Global data types defined in SAP systems are… Please choose the correct answer. ABAP Dictionary types. Data defined in the program that is visible to all the routines/statements within the ABAP program. Date types defined in the program using ABAP Dictionary types. Date types does not defined Dictionary types.

What are some of the advantages of using OPEN SQL? There are 2 correct answers to this question. Syntax is checked at design time. The application server buffer is NOT used. It can be used with any supported DBMS. All standard SQL commands can be used.

In which program types can you create dialog screens? There are 3 correct answers to this question. Function group. Class pool. Module pool. Interface pool. Executable program.

What is the purpose of implicit enhancement points? Please choose the correct answer. To create a secondary index for an SAP database table. To add fields to an SAP database table. To add code to a standard SAP program. To change code in a standard SAP program.

What must you do to create a singleton class? There are 2 correct answers to this question. Define the class as abstract. Store the reference to the singleton objection an instance attribute of the object itself. Set the class instantiation to private. Create the objection a static method of the class itself.

You are establishing the business logic layer for a Web Dynpro Component. Which service types are available in the Service Call wizard? There are 3 correct answers to this question. Function group. Web service proxy. Class method. Function module. Transaction code.

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

You want to use a BAdI to extend the functions of an SAP program. Which of the following tasks is necessary? Please choose the correct answer. Create an enhancement project using a customer exit. Call the BAdI. Implement a class that implements the BAdI interface. Define an interface for the BAdI.

What must you do to define a database view using the ABAP Dictionary? There are 3 correct answers to this question. Define buffering settings for the underlying database tables. Choose the fields from the tables that should be part of the view. Choose the database tables from where the view acquires data. Define the join conditions between the tables. Define selection criteria for the view.

Which of the following statements create a data object? There are 3 correct answers to this question. CLASS. TYPES. CONSTANTS. PARAMETERS. CLASS-DATA.

You want to move a transport request from the development system to the subsequent system. Which of the following are prerequisites for this? There are 2 correct answers to this question. The transport request must be released. The extended program check must show no warnings. All tasks of the transport request must be assigned to the same user. All objects included in the transport request must be activated.

You defined data reference z1 generically. Which statement would you use to access the content of the referenced variable? Please choose the correct answer. Get reference of z1 into wa. Assign z1->* to <fs>. Assign z1 to <fs>. Assign (z1) to <fs>.

Your program performs a database update by calling function modules in an update task. Which ABAP statements can be used in the program to discard all update requests for the current SAP logical unit of work(LUW)? There are 3 correct answers to this question. MESSAGE TYPE A. MESSAGE TYPE W. MESSAGE TYPE X. MESSAGE TYPE E. ROLLBACK WORK.

What pre-defined ABAP data type is deep? Please choose the correct answer. X. DECFLOAT34. N. STRING.

Which of the following generic types can you use to define a field symbol that will be assigned to a character string? There are 3 correct answers to this question. Type csequence. Type clike. Type any. Type xsequence. Type any table.

Can you search for suitable classic Business Add-Ins (BAdIs)? There are 2 correct answers to this question. Search for suitable entries in the relevant component in the Implementation Guide (IMG). Search in the Repository Information System and choose Enhancements -> Customer Exits. Search in an application program for the method GET_INSTANCE of class CL_EXITHANDLER. Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object Builder.

A customer has asked that you improve performance for a small table with frequent read accesses. What buffering type do you recommend? Please choose the correct answer. Single record. Primary key. Column store. Full table.

What is unique about a singleton? There are 2 correct answers to this question. It must be instantiated using a protected instance constructor. It must be instantiated using a static public constructor. must be instantiated using a static private constructor. It must be instantiated using a private instance constructor. It cannot be defined as FINAL. It must be defined as FINAL. It must be instantiated using a public instance constructor. It must be instantiated using a static protected constructor.

You write a report that displays mass data in a table using the ALV Grid Control. Which of the following functions can you offer to the user without doing any specific programming? There are 2 correct answers to this question. Display details by double-clicking on a row. Sort and filter the data by any column. Convert currency amount columns. Change column width and sequence.

Why should you bundle database updates in your dialog programs? Please choose the correct answer. To process the SAP LUW within the database LUW to ensure data consistency. To avoid database locks set by an SQL statement that persists until the end of the program. To allow you to use SAP locks to ensure data consistency. To be able to rollback database changes performed in the same dialog step.

A user runs an ABAP program, enters an incorrect value on the selection screen, and chooses Execute. Which event block must send the error message in order to display the selection screen again? Please choose the correct answer. AT SELECTION -SCREEN. AT SELECTION-SCREEN OUTPUT. AT SELECTION-SCREEN ON VALU E- REQUEST. AT SELECTION-SCREEN ON HELP-REQUEST.

Table A and table B are partially buffered. Which of the following SELECT statements always access the database? There are 2 correct answers to this question. SELECT SINGLE CLIENT SPECIFIED a b FROM table A INTO CORRESPONDING FIELDS OF Is_AB. SELECT a b c d FROM table A JOIN table B ON table A a EQ table B eINTO CORRESPONDING FIELDS OF TABLE It_A_B. SELECT a b FROM table A INTO CORRESPONDING FIELDS OF TABLE It_AB. SELECT SINGLE FOR UPDATE a b FROM table A INTO CORRESPONDING FIELDS OF Is_A WHERE c EQ 1234’.

Which of the following statements are true? There are 2 correct answers to this question. Standard tables can be accessed by index. A sorted table is always accessed by a unique key. Hashed tables are always accessed by index. Hashed tables are accessed by a unique key. Standard tables cannot be accessed by index.

You have created table ZTAB and you want to create a foreign-key relationship to table SAPTAB. Under which condition is this possible? Please choose the correct answer. The check field in ZTAB must have the same domain as the corresponding field of check table SAPTAB. The check field in ZTAB must have the same ABAP Dictionary type as the corresponding field of check table SAPTAB. The check field in ZTAB must have a data element that does NOT refer to a domain. The check field in ZTAB must have the same name as the corresponding field of check table SAPTAB.

You have written a program to output data using the ALV grid control. Which sequence of steps should be executed at runtime? Please choose the correct answer. 1.   Create a grid object 2.   Pass data to the grid object 3.   Create a container object. 1.  Create a grid object 2.  Create a container object 3.  Pass data to the grid object. 1. Create a container object 2. Create a grid object 3. Pass data to the grid object. 1.  Pass data to the grid object 2.  Create a container object 3.  Create a grid object.

What is a plug? There are 4 correct answers to this question. Can be assigned to multiple views. Can be defined as inbound, outbound, or both. Can be defined as an exit. Forms the basis of navigation within a Web Dynpro. Can be defined as default inbound. Can be defined as a startup. Can be defined as outbound controlling multiple inbound plugs. Can be defined as inbound and be controlled by multiple outbound plugs.

Where can you define global data types that are visible system-wide? There are 3 correct answers to this question. In a method of a global class. In a global interface. In a function module. In a global class. In the ABAP dictionary.

Which parameter types can be used in the signature of a functional method? There are 2 correct answers to this question. IMPORTING. CHANGING. RETURNING. EXPORTING.

Which are the functions of the ABA P dispatcher? There are 3 correct answers to this question. It distributes the requests among the work processes. It integrates the presentation layer. It saves the processing requests in request queues. It requests the data from the database of the buffers. It performs a roll-in and roll-out of user context.

How can you search for classic Business Add-Ins (BAdIs)? There are 2 correct answers to this question. Search the relevant component in the Implementation Guide (IMG). Search in the application program for the method GET_ INSTANCE of class CL EXITHANDLER. Search in the application program for the CALL BADI statement. Search in the application program for the GET BADI statement.

A structure has enhancement category 3, can be enhanced (character-type). Which set of elementary types is allowed for the new fields? Please choose the correct answer. D, I, string, T. F, I, P, X. C,D, N, T. C, D, N, X.

You want to create a transparent table. Which of the following must you define to activate the table? There are 3 correct answers to this question. A delivery Class. The primary Key. The MANDT field. The foreign key. A short description.

What type of ABAP Dictionary view is implemented as an INNER JOIN? Please choose the correct answer. Maintenance view. Database View. Help view. Projection view.

What types of changes to the repository does SAP provide? There are 3 correct answers to this question. SAP Notes. Support Packages. Deployments from SDN.SAP.COM. Transports. Enhancement Packages.

You build a dialog screen with an input field in an ABAP program. How do you ensure that the contents of the screen field can be accessed in the program? Please choose the correct answer. Define a data object in the program with the same name as the screen field. Enter the name of a data object in the Parameter ID attribute of the screen field. Use the GET statement in the program to transport the data from the screen field. Use a MOVE statement in a PAI module to copy the data to a data object.

How do you program an input validation on a selection screen that allows users to correct their input? Please choose the correct answer. Implement a check at the event AT SELECTION-SCREEN. In case of an input error, a type E MESSAGE must be displayed. Implement the check at the event AT SELECTION-SCREEN. In case of an input error, a type A MESSAGE must be displayed. Implement the check at the event END-OF-SELECTION. In case of an input error, a type E MESSAGE must be displayed. Implement the check at the event AT SELECTION-SCREEN OUTPUT. In case of an input error, a type E MESSAGE must be displayed.

Which of the following predefined ABAP types is incomplete? Please choose the correct answer. STRING. F. XSTRING. P.

When analyzing a program, which tasks can you perform using the code inspector? There are 3 correct answers to this question. Determine used database tables. Inspect the memory consumption. Execute the extended program check. Discover unused variables. Evaluate the time needed for program execution.

Which of the following are valid control level changes within a loop over an internal table? There are 2 correct answers to this question. COLLECT. LAST. SUM. END of <F>.

You want to add a field ZZPRICE to the SAP standard transparent table EKKO. Which of the following actions result in an enhancement of the SAP standard? There are 2 correct answers to this question. Insert ZZPRICE at the end of the table. Insert ZZPRICE into an SAP structure for the table. Create an append structure and add ZZPRICE to it. Add ZZPRICE to the customizing include for the table.

"You define a database view A and maintenance view B in the ABAP dictionary. What restrictions apply to these views? There are 2 correct answers to this question". Only B can have either a left outer join or an inner join. The tables joined in B must have foreign key relantionships. The tables joined in A must have foreing key relationships. Only A can be used in the FROM clause of a SELECT statement.

You need to create a piece of code that can be used by multiple programs. Which of the following techniques does SAP recommend? There are 2 correct answers to this question. Use a method in a global class. Use a method in a local class. Use an include program. Use a function module in a function group.

Which statements are true regarding ABAP inheritance? There are 4 correct answers to this question. Polymorphism requires the developer to specify which method to use with inheritance. The instance constructor can be overwritten as part of inheritance. The static constructor can be overwritten as part of inheritance. Instance constructors must call the superclass´s constructor. Static constructors do not need to call the superclass's constructor. You can access the superclass component with the prefix SUPER->. Overloading allows a method to have several definitions with different signatures.

Each component has an interface; of what does this interface consist? There are 2 correct answers to this question. Interface controller. InterfaceView. Interface context. Data Container.

Denunciar Test