Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONABAP

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
ABAP

Description:
Certif ABAP

Author:
AVATAR

Creation Date:
08/03/2017

Category:
Personal

Number of questions: 40
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
What must you do to define a database view using the ABAP Dictionary? 4 correct answers Define buffering settings for the underlying database tables. Choose the database tables from where the view acquires data. Choose the fields from the tables that should be part of the view. Define selection criteria for the view. Define the join conditions between the tables.
Which statement is true? A database LUW must be placed without an SAP LUW. An SAP LUW must be placed within a database LUW. A database LUW cannot be placed within an SAP LUW. A database LUW must be placed within an SAP LUW.
Which SELECT statement will always bypass the SAP table buffers? SELECT … INTO TABLE … SELECT … ENDSELECT. SELECT … SINGLE … SELECT … FOR UPDATE ….
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? 2 correct answers Insert ZZPRICE into an SAP structure for the table Add ZZPRICE to the customizing include for the table Insert ZZPRICE at the end of the table Create an append structure and add ZZPRICE to it.
Where can you define global data types that are visible system-wide? 3 correct answers In the ABAP Dictionary In a method of a global class In a function module In a global interface In a global class.
To which context object is the attribute LEAD_SELECTION_INDEX related? Element Supply function Node Attribute.
Which statements are considered obsolete and cannot be used in ABAP Objects? select all the correct answers. INFOTYPES DATA ... TYPE ... OCCURS DATA ... BEGIN OF ... OCCURS SEARCH ON CHANGE OF LEAVE TABLES RANGES LOOP AT dbtab.
What can be defined using an implicit enhancement option? 3 correct answers Replacements for global SAP methods Additional parameters in SAP function modules Additional exceptions in SAP function modules Replacement for SAP function modules Additional attributes in global SAP classes.
Subroutines provide which types of parameters? 2 correct answers Return values Exceptions Input Output Input/output (changing).
How would you define a method of an ABAP class to prevent this method from being available in a subclass? Protected Abstract Final Private.
What transactions can be used to carry out modification adjustments after a system upgrade? 2 correct answers Object Navigator (Transaction SPAU_ENH) to adjust ABAP Dictionary objects Modification Adjustment: Dictionary Object Selection (Transaction SPDD) to adjust ABAP Dictionary objects Modification Adjustment: Object Selection (Transaction SPAU) to adjust ABAP Repository objects Spool Administration: Initial Screen (Transaction SPAD) to adjust ABAP Repository objects.
You add the CREATE PROTECTED addition to a class definition. From where you can instantiate the class? 3 correct answers From a friend class From a parent class From the class itself From a child class From any protected class.
Identify the types of controller. 5 correct answers. Custom controller Configuration controller Consumer controller View controller Component controller Window controller.
Which of the following statements are true? 2 correct answers Standard tables cannot be accessed by index. Hashed tables are always accessed by index. Standard tables can be accessed by index. A sorted table is always accessed by a unique key. Hashed tables are accessed by a unique key.
Identify the ways to map context structures. 2 correct answers External context mapping Direct context mapping Static context mapping Dynamic context mapping.
Which method of passing parameters is preferred for its performance? Pass by reference Pass by subclass Pass by class Pass by value.
Which of the following rules must you follow when you create a static constructor? 3 correct answers You must name the method CONSTRUCTOR You CANNOT use parameters or exceptions You can ONLY define static constructors in the public section You can use ONLY importing parameters or exceptions You must name the method CLASS_CONSTRUCTOR.
To which of the following you must assign newly created SAP repository objects? Transport request Transport task Package Function group.
Which data element property do you set so that the system logs changes to the content of fields with this data element? Documentation Change document Input history PARAMETER ID.
What must you do to create a singleton class? 3 correct answers Instantiate the class in a static method of the class itself Define the class as final Define the class as abstract Implement the IF_UMM_SINGLETON interface in the class Set the class instantiation to private.
For which of the following requirements can you implement a functional method? 2 correct answers A private static helper method that returns a single value as the result of an algorithm A method to set an instance attribute with one importing parameter and no other parameters A factory method that returns an object reference A handler method for an event that has a returning parameter.
Which database objects can you create in the ABAP Dictionary? 2 correct answers Projection views Foreign key relationships Logical databases Indexes.
To generate the function modules for a lock object for a custom table (ENQUEUE_<lock_object> and DEQUEUE_<lock_object>), which tool would you use? Text Elements (Transaction SE32) General Table Maintenance Dialog (Transaction SE54) Function Builder (Transaction SE37) ABAP Dictionary (Transaction SE11) Reuse Library (Transaction SE83).
What type of ABAP Dictionary view is implemented as an INNER JOIN? Projection view Help view Maintenance view Database view.
How is an ABAP program with several dialog steps executed? Usually, dialog steps are assigned to different dialog work processes. The program is always executed in just one dialog work process with roll out. 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.
Which of the following ABAP data types are compatible with the generic character-type CLIKE? 3 correct answers STRING N DECFLOAT C XSTRING.
What does Software Layer Aware Debugging allow you to do? 3 correct answers Debug a large portion of code Specify as much or as little code to debug Debug only a small portion of code Trace executing code Bypass authorization objects.
Which of the following statements are true? 3 correct answers Implicit enhancement options allow you to enhance interface parameters for function modules and methods without modifying the repository object. None of the above. Implicit enhancement can be used to enhance SAP objects developed prior to SAP NetWeaver 7.0. An implicit enhancement point can be used to insert code in an SAP pro- gram and is always available to the customer.
When is a foreign key check performed on an input/output field? 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 check table is defined If the field refers to the dictionary field for which a value help is defined.
What are the prerequisites when creating an append structure for a standard SAP table? 2 correct answers The enhancement category of the table is NOT set to ‘Not enhacable’ The table must be copied before the append structure can be created The fields in the append structure should star with YY or ZZ The table cannot have any fields of type FLTP.
You want to translate dynamic text in a web dynpro. From which abstract class should you inherit? CL_WD_COMPONENT_ASSISTANCE CL_WD_COMPONENT_SERVICES CL_WD_CONTEXT_SERVICES CL_WD_CONFIGURATION_MODEL.
In which database table type is there a one-to-one relationship between the Dictionary table definition and the relevant physical table in the database? Cluster table Internal table Pooled table Transparent table.
Which elementary field types are considered a character type? 5 correct answers C STRING D XSTRING N T I F X.
In addition to the primary key of an internal table, how many secondary indexes can you define for an internal table? 0 1 15 10.
Which of the following regarding search helps is a true statement? Select all the correct answers 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 LPos parameter defines the position of the search help parameter in the search hit list. 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.
Function modules provide which types of parameters? 4 correct answers Output Input/Output (changing) Exceptions Input Return values.
What ABAP statements can you use to create an instance of the class CL_GUI_CUSTOM_CONTAINER in an ABAP program? DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container…. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container… DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container… DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container…..
Which of the following tools belong to the ABAP Workbench? 3 correct answers Screen Painter Easy Access Menu Form Builder Function Builder Class Builder.
Each button on a Dynpro (screen) requires the assignment of a function code. This function code… Is used to define global variables that receive a value when the button is clicked. Prevents the function code from be assigned to a menu item. 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.
You r program performs a data base 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)? 3 correct answers MESSAGE TYPE E MESSAGE TYPE X MESSAGE TYPE W ROLLBACK WORK MESSAGE TYPE A.
Report abuse Consent Terms of use