Test Abap priemras 40
![]() |
![]() |
![]() |
Title of test:![]() Test Abap priemras 40 Description: Vamos por esa certificacion |




New Comment |
---|
NO RECORDS |
You display the content of an internal table using an ALV grid control. The content of the internal table changes during the program. Which CL_GUI_ALV_GRID class method can you use to display the changed content? Please choose the correct answer. SET_TABLE _FOR_FIRST_DISPLAY in module PBO. REFRESH_TABLE_DISPLAY in module PBO. SET_TABLE_FOR_FIRST_DISPLAY in module PAI. REFRESH_TABLE_DISPLAY in module PAI. Which of the following predefined data types are character types? There are 3 correct answers to this question. X. N. D. P. T. 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 the two fields in one database table and copy them to the other database table. Define a structure with these two fields and include this structure in both database tables. 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. 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 category item. Prevents the function code from be assigned to a menu item. Can be used to identify when the button is clicked by looking for the function code in the screen’s OK_CODE field. Is used to define global variables that receive a value when the button is clicked. ABAP is a programming language that… There are 4 correct answers to this question. Separates program code from language text. Controls the business logic. Executes on all three levels of the three-tier architecture. Interacts with the user. Processes and formats data. Which of the following statements correctly define a data object with the type of data element s_conn_id? There are 3 correct answers to this question. PARAMETERS pa_id TYPE s_conn_id. DATA gv_id TYPE s_conn_id. DATA gv_id TYPE REF TO s_conn_id. DATA gv_id LIKE s_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. 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. SUM. END of <f>. LAST. 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? There are 3 correct answers to this question. A CATCH statement to capture the event. A SET HANDLER statement to register the handler to the event. A handler class. A handler method for the event. A method to read the registration table. What does Software Layer Aware Debugging allow you to do? There are 3 correct answers to this question. Trace executing code. Debug a large portion of code. Bypass authorization objects. Specify as much or as little code to debug. Debug only a small portion of code. When starting the Debugger, what circumstance causes the runtime error DEBUGGING_NOT_POSSIBLE? Please choose the correct answer. When more than six sessions are already associated with this login user. When more than five sessions are already associated with this login user. Starting a non-exclusive mode in a productive system. When the number of debugging sessions on the server exceeds the value defined by the profile parameter rdisp/wpdbug_max_no. When does the lifetime of a Web Dynpro component begin and end? Please choose the correct answer. It begins each time it is called, and it ends when the component completes. 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 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. When does the lifetime of a component controller begin and end? Please choose the correct answer. It ends the first time the Web Dynpro application is called at runtime and ends when the Web Dynpro application that called and instantiated the component ends. It begins the first time the Web Dynpro application is called at runtime and ends when the Web Dynpro application that called and instantiated the component ends. It lasts from creating data within the controller to cover the whole period during which the component is in use. It begins with the Web Dynpro component and ends with the Web Dynpro application that called it. You have been asked to review the following expression, which processes character strings: result = find( val= 'abapABAP' sub ='A' occ = 2 case = 'X' ....). What is the expected value of result? Please choose the correct answer. 4. 1. 6. 2. 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 refresh the display. A method call to create the event handler. A SET HANDLER statement to register the handler to the event. A handler class. A handler method for the double_click event. What can be implemented using an implicit enhancement option? There are 3 correct answers to this question. Additional parameters in SAP function modules. Overwrite methods for global SAP classes. Overwrite methods for SAP function modules. Additional exceptions in SAP function modules. Additional attributes for global SAP classes. Dynpros can be placed in which program types? There are 3 correct answers to this question. Module pools. Class pools. Executables. Function groups. How can you improve the performance when accessing a large data volume database table? Please choose the correct answer. Apply the appropriate data class and size category. Switch the database table to fully buffered. Define appropriate indexes for the database table. Change the table type in the dictionary. Which of the following statements regarding search helps are true? There are 3 correct answers to this question. You can use a maintenance view for the search help selection method. You can use a database view for the search help selection method. Help views can also be used for the selection method for search help. You can use transparent tables for the search help selection method. 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 cs_struc INDEX 1. What are the possible type definitions for parameter ct_itab? There are 3 correct answers to this question. Hashed Table. Any Table. Standard Table. Sorted Table. Index Table. 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. B and C. A and B. A, B, C, and D. C and D. Which action on the underlying dictionary objects triggers a database table conversion? Please choose the correct answer. Inserting a field of type reference. Inserting an APPEND structure. Changing the order of non-key fields. Reducing the size of the field. Your selection screen can be modified at which event? Please choose the correct answer. AT SELECTION-SCREEN ON <field_name>. None of the above. AT SELECTION-SCREEN. AT SELECTION-SCREEN OUTPUT. You want to include an element of type ‘Table’ in your web dynpro. What actions add the corresponding columns to the table automatically? Please choose the correct answer. Include the method BIND_TABLE of IF_WD_CONTEXT_NODE. Generate a ‘BIND_TABLE’ method using the web dynpro method wizard. Bind the table attribute ‘DATA_SOURCE’ to the context node. Right click the table and select the ‘CREATE_BINDING’ option. What is the maximum number of watchpoints that can exist at one time? Please choose the correct answer. No limit. 6. 10. 8. What must before you can create a new transportable function modules? There are 3 correct answers to this question. Function group. Module pool. Package. Exception class. Transport request. Which data types are incomplete ABAP standard data types? There are 3 correct answers to this question. C. N. F. I. P. Which of the following controller types can exist only once in a Web Dynpro component? There are 2 correct answers to this question. Window controller. Configuration controller. Component controller. View controller. 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. The program is terminated. A type E message is displayed. Which statement ends a screen sequence and starts from initial screen? Please choose the correct answer. CALL SCREEN. LEAVE SCREEN. LEAVE TO SCREEN. SET SCREEN 0. Which of the following are incomplete ASAP pre-defined data types? There are 3 correct answers to this question. T. P. N. D. X. Which of the following structures is created when you use a table type to define one of its components? Please choose the correct answer. Flat structure. Nested structure. Append structure. Deep structure. When is an ENDSELECT not required for a SELECT? There are 3 correct answers to this question. 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. When you do a SELECT SINGLE. What does a non-exclusive debugging mode mean? There are 4 correct answers to this question. A roll-out is forced in the application after each Debugger view. Debugging is not possible between the statements SELECT and ENDSELECT because the database cursor needs to be closed using a COMMIT. It may be used anywhere in the landscape. Someone else is debugging the same source code. Owing to the commit, inconsistent datasets can occur in the database. Debugging is not possible for conversion or field exits. Your colleague has asked you to analyze an ABAP program that does not behave correctly when a button is pressed on the initial screen. You want to start the Debugger when the button is pressed so that you can perform your analysis. What system command do you type in the command field? Please choose the correct answer. /h. /n. Jdbg. /hx. Which prerequisites must be fulfilled before a repository object can be transported? There are 3 correct answers to this question. A transport layer must be assigned to the package. An application component must be assigned to the repository object. The repository object must be assigned to a package. The repository object must be assigned to a change request. An inactive version of the repository object must exist. What can you use to achieve polymorphism? Please choose the correct answer. Subroutines. Events. Reports. Inheritance. FORM routines (subroutines) can be used in which program types? There are 4 correct answers to this question. Subroutine pools. Function groups. Executables. Interface pools. Class pools. Module pools. When does SAP recommend that you use a full buffering type for a database table? Please choose the correct answer. When the table is small and seldom written. When the table is large and frequently written. When the table is small and frequently written. When the table is large and seldom written. 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 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. What parameters can you set when you run the Code Inspector? There are 3 correct answers to this question. Object set name. Check variant name. Background job name. Work process name. Inspection name. |