option
Questions
ayuda
daypo
search.php
ERASED TEST, YOU MAY BE INTERESTED ON SAP ABAP MINI Test 2
COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
SAP ABAP MINI Test 2

Description:
C_TAW12_750 - ABAP with SAP NetWeaver 7.50

Author:
AVATAR
SAP
Other tests from this author

Creation Date:
28/05/2020

Category: Others

Number of questions: 40
Share the Test:
New CommentNuevo Comentario
No comments about this test.
Content:
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 ROLLBACK WORK MESSAGE TYPE X MESSAGE TYPE W MESSAGE TYPE E MESSAGE TYPE A.
Which of the following ABAP standard types are numeric? There are 3 correct answers to this question. F N P D I.
Which class is used to define a reference for an instance of the ALV Object Model? Please choose the correct answer. Class CL_GUI_CUSTOM_CONTAINER Class CL_GUI_ALV_GRID Class CL_SALV_TABLE Class CL_GUI_BDC_GRID.
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. The primary key The foreign key A short description A delivery class The MANDT field.
Which ABAP statement using the local type gty_1 correctly defines a data object? There are 2 correct answers to this question. DATA gv_1 TYPE gty_1. DATA gv_1 LIKE gty_1. CONSTANTS gc_1 TYPE gty_1 VALUE '1'. DATA gv_1 TYPE gty_1 DEFAULT '1'.
Which controller types can exist within a Web Dynpro component? There are 3 correct answers to this question. Window controller User controller Application controller View controller Component controller.
What parameters can you set when you run the Code Inspector? There are 3 correct answers to this question. Work process name Object set name Background job name Check variant name Inspection name.
Your program uses class CL_GUl_ALV_GRID to generate a classic ALV Grid Control. What do you need in your program to react to a user double-clicking a row in the ALV Grid? There are 3 correct answers to this question. A SET HANDLER statement to register the handler to the event A method call to raise the double_click event A handler class A handler method for the double_click event A method call to refresh the display.
What features are provided by the database interface? There are 3 correct answers to this question. Database independence of application 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.
For which of the following requirements can you implement a functional method? There are 2 correct answers to this question. A handler method for an event that has a returning parameter A method to set an instance attribute with one importing parameter and no other parameters A factory method that returns an object reference A private static helper method that returns a single value as the result of an algorithm.
What is the default length of the type C data type? Please choose the correct answer. 1 10 100 1–65535.
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 SET_PASSENGERS MV_ PASSENGERS GET_PASSENGERS C_POS.
A class is defined as follows: CLASS my_class DEFINITION. PUBLIC SECTION. METHODS do_something. EVENTS state_changed. CLASS-METHODS static1. PRIVATE SECTION. TYPES t table TYPE STANDARD TABLE OF t001 WITH NON-UNIQUE DEFAULT KEY. CONSTANTS gc_const TYPE IVALUE 1. ENDCLASS. Which components of the class can static method static1 address directly? There are 2 correct answers to this question. The do_something method. The t_table type. The state_changed event. The gc_const constant.
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 starts with a dollar ($). It starts with a plus (+). It starts with an ampersand (&). It starts with an asterisk (*).
How do you create lock objects and lock modules for use in ABAP programs that access the database? Please choose the correct answer. Use the Function Builder to create the lock modules and the lock objects Use the ABAP dictionary to create the lock objects. Use the function builder to create the lock modules Use the Function Builder to create the lock modules. The lock objects are created in the program logic Use the ABAP Dictionary to create the lock objects. The lock modules are created automatically.
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 tables joined in B must have foreign key relationships. Only A can be used in the FROM clause of a SELECT statement. The tables joined in A must have foreign key relationships. The join type of both A and B is an inner join.
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 the ABAP Dictionary In a function module In a global class In a global interface.
Which of the following elements can a string template contain? There are 2 correct answers to this question. String processing statements Literals Function module calls Functional method calls.
Which of the following statements are correct? There are 3 correct answers to this question. 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 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 one or more simple or composite enhancements.
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 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 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 NOT displayed again. Processing terminates and the user must restart the ABAP program. The screen is displayed again without processing the PBO flow logic. All fields are ready for input.
Which of the following conditions must be fulfilled when using a GROUP BY clause in a SELECT statement? There are 2 correct answers to this question. The SELECT statement must also have a WHERE clause. All fields in the SELECT clause that are not part of an aggregate function must be listed after GROUP BY. The table in the FROM clause must be a transparent table. The fields after GROUP BY must have a character type.
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. Ordinary method Event handler method Supply function Standard hook method.
You want to develop a validation routine for a selection screen field. If a wrong value is entered into the field an error message should be displayed and the focus should move to the field. Which event do you use to achieve this? Please choose the correct answer. AT SELECTION-SCREEN START-OF-SELECTION INITIALIZATION END-OF-SELECTION.
Which of the following functions does the ABAP Dispatcher perform? There are 2 correct answers to this question. It directs HTTP requests from an SAP system to a web server. It enables communication between SAP systems and external application systems. It distributes user requests among available work processes. It communicates with other instances in the system.
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. MEMORY ID MODIF ID DEFAULT VALUE-CHECK.
What do you need to consider when creating a secondary index on a table? There are 2 correct answers to this question The index must always be unique 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 can be created for specific database systems only.
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? Please choose the correct answer. 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. Select any option other than Not Classified from the enhancement category.
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 prerequisites must be fulfilled before a repository object can be transported? There are 3 correct answers to this question. An inactive version of the repository object must exist. 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 change request. The repository object must be assigned to a package.
You need to perform a downcast. What should you do? There are 2 correct answers to this question. Catch the exception CX_SY_MOVE_CAST_ERROR Use the operator “=“. Use the operator “?=” Assign a subclass reference to a superclass reference.
You are writing a function module that will be called from external system via remote function call (RFC). How do you report an error back to the external caller? Please choose the correct answer. Write the error data into a RECEIVING parameter that is passed by value. Write the error data into TABLES parameters that is passed by reference. Write the error data into an EXPORTING parameters passed by reference. Write the error data into a CHANGING parameters passed by value.
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 Standard Table Any Table Hashed Table Index Table Sorted Table.
You write the following ABAP statement: SELECT SINGLE carrid, connid, cityfrom, cityto FROM spfli INTO @gs_spfli WHERE carrid = @pa_car AND connid = @pa_con. How are the selected fields placed into target structure gs_spfli? Please choose the correct answer. From left to right Into fields with the same type Into fields with the same name and same type Into fields with the same name.
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question SPAD SPDD SPAU_ENH SPAU.
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 activate the program When you release the transport requests for the program When you perform a syntax check on the program When you save the program.
Which message types behave the same regardless of the context in which they are called? There are 2 correct answers to this question. A E I S W X.
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. Full table Single record Column store Primary key.
Which of the following statements about the Object Navigator are true? There are 4 correct answers to this question. ABAP programs can be displayed and edited in the Object Navigator. Screens can be displayed and edited in the Object Navigator. Menus can be displayed and edited in the Object Navigator. You can create BAdI implementations in the Object Navigator. You can create customer projects (Transaction CMOD) in the Object Navigator. The ABAP Dictionary can be maintained in the Object Navigator.
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 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. GT (greater than) LIKE (fits pattern) CO (contains only) CP (covers pattern) EQ (equals).
Report abuse