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

Description:
SAP ABAP 01

Author:
yograjsinh@zala
Other tests from this author

Creation Date:
26/07/2020

Category: Others

Number of questions: 30
Share the Test:
New CommentNuevo Comentario
No comments about this test.
Content:
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 LIKE s_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. DATA gv_id TYPE REF TO s_conn_id.
Each ABAP program starts with an introductory statement. Which statements are correct? There are 2 correct answers to this question. The introductory statement can be modified. The introductory statement must be the first statement in the program. The introductory statement must be the first line in the program. The introductory statement must never be modified.
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 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. The transport request must be released.
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. The lock modules are created automatically 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.
Which of the following capabilities is provided by the Application Layer platform of SAP Netweaver? Please choose the correct answer. Business process management Multi-channel access Master data management Database and operating system abstraction.
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 OUTPUT. 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.
How is an ABAP program with several dialog steps executed? Please choose the correct answer. The program is always executed in just one dialog work process without roll out 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 different dialog work processes.
Your selection screen can be modified at which event? Please choose the correct answer. None of the above AT SELECTION-SCREEN ON <field_name> AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN.
What scheduling technique is used by the ABAP debugger dispatcher for processing user requests? Please choose the correct answer. Shortest First Round Robin Multiple Queue First in , First out.
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 CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’ DATA gv_id TYPE s_carr_id DEFAULT ‘QF’ DATA gv_id LIKE s_carr_id DATA gv_id TYPE s_carr_id.
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 byte order The storage order The code page The ENCODING addition.
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 an ampersand (&). It starts with an asterisk (*). It starts with a dollar ($). It starts with a plus (+).
What are the advantages of defining texts symbols in executable programs? There are 2 correct answers to this question. They can store up to 256 characters. They are easier to maintain than literals. The text of the text symbol can be changed at runtime They facilitate multilingual functionality.
What must you do to define a database view using the ABAP Dictionary? There are 3 correct answers to this question. Define selection criteria for the view. Choose the fields from the tables that should be part of the view. Define buffering settings for the underlying database tables. Define the join conditions between the tables. Choose the database tables from where the view acquires data.
Which screen in the ABAP Dictionary allows you to log data changes to the table? Please choose the correct answer. Attributes tab Utilities 􀀀 Database Object 􀀀 Database Utility Delivery and Maintenance tab Technical Settings Utilities 􀀀 Settings.
To which ABAP Dictionary definition can you assign fixed values? Please choose the correct answer. Field of a transparent table Component of a structure Data element Domain.
In an ABAP program you have the following code sequence: DATA var TYPE n LENGTH 1. FIELD –SYMBOLS <fs> TYPE c ASSIGN var TO <fs> CASTING Which type is used to cast the assigned memory area? Please choose the correct answer. The default type STRING The default type I The type of <fs> The type of var.
What is the predefined reference variable used in ABAP OO to address the object itself? Please choose the correct answer. ME SUPER SELF THIS.
What pre-defined ABAP data type is deep? Please choose the correct answer. STRING N DECFLOAT34 X.
You write a report that displays mass data in a table. You decide to use the ALV Grid control (class CL_GUI_ALV_GRID) instead of a classical list display with WRITE statements. 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 Convert currency amount columns Change column width and sequence Sort and filter the data by any column.
You have created the following: - A class with an event definition - A handler class with a method ON EVT that handles this event - A report that instantiates the handler class - A message statement that raises an exception However, the report does not react to the event. How do you analyze this issue? There are 3 correct answers to this question. Check if the event is triggered by setting a breakpoint at the MESSAGE ... RAISING ... statement. Check if the handler method is registered to the correct event. Check if the implementation of the handler method ON_EVT contains the desired logic. Check if the event is triggered by setting a breakpoint at the RAISE EVENT statement Check if the handler method ON_EVT is defined in a subroutine of the report.
Which controller types can exist within a Web Dynpro component? There are 3 correct answers to this question. Component controller Application controller View controller User controller Window controller.
What must you specify in a Unicode system when opening a file in TEXT MODE? Please choose the correct answer. The code page The ENCODING addition The Layer page The byte order.
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. Column store Single record Primary key Full table.
Which statements are true? There are 5 correct answers to this question. The ALV Grid uses a reference to the data table for display. The ALV Object Model can define a sort criteria for initial display. The ALV Object Model uses a reference to the data table for display. The ALV Grid can define a sort criteria for initial display. The ALV Object Model requires a table refresh after programmatically changing the ALV. The ALV Grid requires a table refresh after programmatically changing the ALV.
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 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 append search is defined If the field refers to the dictionary field for which a check table is defined.
Which prerequisites must be fulfilled before a repository object can be transported? There are 3 correct answers to this question. 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. An application component must be assigned to the repository object. A transport layer must be assigned to the package.
Which of the following statements are correct? There are 4 correct answers to this question. Class methods assigned to the public visibility section can be accessed outside the class using the static component selector and the class name. None of the above Only public methods can be addressed outside the class. You can call private methods within the public methods without reference to the object or class. Static methods can be defined in both the public and private visibility section of the class.
Which of the following statements are true? There are 2 correct answers to this question. You can enter documentation for the data element in the ABAP Dictionary. A conversion routine can be assigned to a data element. A conversion routine can be assigned to a domain. You define the value range in the data element.
In which sequence are the following ABAP Events triggered? Please choose the correct answer. 1. START-OF-SELECTION 2. AT SELECTION-SCREEN 3. INITIALIZATION 1. INITIALIZATION 2. AT SELECTION-SCREEN 3. START-OF-SELECTION 1. AT SELECTION-SCREEN 2. INITIALIZATION 3. START-OF-SELECTION 1. INITIALIZATION 2. START-OF-SELECTION 3. AT SELECTION-SCREEN.
Report abuse