Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONMini4

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Mini4

Description:
MY TEST4

Author:
Basit304
(Other tests from this author)

Creation Date:
11/11/2021

Category:
Others

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 do global types and local types have in common? Please choose the correct answer. Documentation Technical information Field labels Search help.
You define a formal parameter to a subroutine that accepts only internal table of type standard and type sorted as actual parameters. Which of the following generic ABAP data types must you use? Please choose the correct answer. Standard table Sorted table Hashed table Index table.
In a subclass, you want to redefine a method of the super class. Which of the following conditions must be fulfilled? There are 2 correct answers to this question. The subclass method has same visibility as the super class method The superclass method is an instance method The super class method is abstract The subclass method has a lower visibility than the super class method.
Which of the following program types can contain screens? There are 3 correct answers to this question. Function groups Interface pools Module pools Class pools Executable programs.
What is the ALV Object Model? Please choose the correct answer. A group of classes that describe the BDC Grid as a whole and inherit from a single class A group of classes that apply Grid as a whole and inherit from a multiple class A group of classes that describe the ALV Grid as a whole and inherit from a single class A group of hierarchal classes that describe the ALV Grid as a whole but do not inherit from a single class.
Which objects are automatically created when you create a new function group? Please choose the correct answer. A function pool and two function modules A function pool and two include programs A function pool and two module pools A function pool and two subroutine pools.
Which database objects can you create in the ABAP Dictionary? There are 2 correct answers to this question. Foreign key relationships Projection views Indexes Logical databases.
Which types of programs or parts of programs can be tested directly from the ABAP Workbench or ABAP Editor? There are 4 correct answers to this question. FUNCTION-POOL PROGRAM INTERFACE-POOL FUNCTION MODULE CLASS-POOL METHOD TYPE-POOL INCLUDE REPORT.
Which of the following interface technologies are available in SAP systems? There are 3 correct answers to this question. RFC OLE ODBC HTTP Ethernet.
In which program types can you create dialog screens? There are 3 correct answers to this question. Class pool Executable program Module pool Interface pool Function group.
After which statement will the runtime system initialize the ABAP memory? Please choose the correct answer. SUBMIT LEAVE TO TRANSACTION CALL TRANSACTION SUBMIT… AND RETURN.
Which of the following is a true statement? There are 3 correct answers to this question. All customer repository objects have to be assigned to a package. The transport layer is a mandatory input field for the package. Packages use interfaces and visibility to make their elements visible to other packages. A package can be nested.
You add the CREATE PROTECTED addition to a class definition. From where you can instantiate the class? There are 3 correct answers to this question. From a child class From a parent class From any protected class From a friend class From the class itself.
How is an ABAP program with several dialog steps executed? Please choose the correct answer. The ABAP dispatcher takes over the entire execution without assigning any work process. The program is always executed in just one dialog work process without roll out Usually, dialog steps are assigned to different dialog work processes. The program is always executed in just one dialog work process with roll out.
You have located a new (kernel) Business Add-in (BAdI) in an SAP standard application. What must you create to implement the BAdI, and in which order? Please choose the correct answer. - BAdI Implementation - Enhancement Spot Implementation - BadI Implementation - Enhancement Project - Enhancement Spot Implementation - BAdI Implementation - Enhancement Project - BAdI Implementation.
You have 2 objects: O1 of type class C1 and O2 of type class C2. Class C2 is a subclass of class C1. Which of the following statements implements an up cast? Please choose the correct answer. O1 = O2. MOVE O1 TO O2. O2 ?= O1. MOVE O1 ?TO O2.
You Created the following ABAP Code: DATA x TYPE REF TO DATA DATA y TYPE REF TO OBJECT ASSIGN x TO <fs> ASSIGN y TO <fs> You want to add a declaration of <fs> to the Code. Which of the Following Declarations are Valid? There are 2 correct answers to this question. FIELD-SYMBOLS <fs> TYPE ANY FIELD-SYMBOLS TYPE REF TO DATA FIELD-SYMBOLS <fs> FIELD-SYMBOLS <fs> TYPE REF TO ANY.
Which of the following includes are generated when you create a function group? Please choose the correct answer. LxxxxF01 LxxxxUXX LxxxxTOP LxxxxO01.
When does the lifetime of a Web Dynpro component begin and end? Please choose the correct answer. It begins when instantiated and it ends when the program ends or the object is freed. It begins each time it is called, and it ends when the component completes. It ends 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.
You are required to add customer source code in the SAP delivered object using the new enhancement framework without modification. How can you find the available enhancement? There are 3 correct answers to this question. Select from the list of application-related BAdIs or enhancement spots in the SAP Application Hierarchy. Perform a program-related global search for GET BADI. Perform a program-related global search for a customer exit. Search for a Business Transaction Event in the Customizing tree (transaction SPRO). Select from the list of freely selected BAdIs or enhancement spots in the Repository Information System.
What can be implemented using an implicit enhancement option? There are 3 correct answers to this question. Overwrite methods for SAP function modules Overwrite methods for global SAP classes Additional attributes for global SAP classes Additional parameters in SAP function modules Additional exceptions in SAP function modules.
Which of the following ABAP statements throws an error at the syntax check? Please choose the correct answer. DATA variable DATA variable(5) TYPE p. DATA variable(5) TYPE t. DATA variable(5) TYPE n.
Which of the following predefined data types are character types? There are 3 correct answers to this question. N D T P X.
In which event block can you overwrite the default value of a PARAMETERS field on the selection screen? Please choose the correct answer. INITIALIZATION START-OF-SELECTION AT SELECTION-SCREEN PROCESS BEFORE OUTPUT.
Where can you define data types that can be accessed directly by all ABAp repository objects in an SAP system? There are 2 correct answers to this question. In a method In the ABAP dictionary In a global class In a function module.
Identify the types of controller. There are 5 correct answers to this question. Window controller View controller Custom controller Component controller Configuration controller Consumer controller.
What ABAP statements can you use to create an instance of the class CL_GUI_CUSTOM_CONTAINER in an ABAP program? Please choose the correct answer. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container…. DATA: go_container TYPE REF TO 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….
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 E MESSAGE TYPE X MESSAGE TYPE W ROLLBACK WORK MESSAGE TYPE A.
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. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option. 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 second except on. The first exception that occurs will be raised. In the calling program, sy-subrc has the value specified for the first exception.
Which of the following can you assign a search help to? There are 3 correct answers to this question. Table type Domain Check table Data element Structure component.
You create a domain in the ABAP dictionary. How can you use this domain? Please choose the correct answer. To define data objects in ABAP programs To define technical properties of data elements To describe the value range of a table field or structure component To define the data type of a table field or structure component.
How can you search for classic Business Add-Ins (BAdIs)? There are 2 correct answers to this question. Search in the application program for the GET BADI statement. Search the relevant component in the Implementation Guide (IMG). Search in the application program for the CALL BADI statement. Search in the application program for the method GET_ INSTANCE of class CL_EXITHANDLER.
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. Into fields with the same name Into fields with the same name and same type From left to right Into fields with the same type.
Each ABAP program that actually contains executable statements… There are 2 correct answers to this question. Is divided into processing blocks. Assigns every executable statement to a processing block regardless of it being in a processing block. Only assigns executable statements in a processing block to a processing block. Uses event blocks to trigger events in ABAP. Has declarative statements outside of processing blocks that are considered local. Has declarative statements inside of processing blocks that are considered local. Can be tested from the ABAP Workbench by pressing (F8).
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. Change the table type in the dictionary. Switch the database table to fully buffered. Define appropriate indexes for the database table.
What are characteristics of a hashed internal table? There are 2 correct answers to this question. It can have a non-unique key. It can be accessed using the index. It can be accessed using the key. It must have a unique key.
Which actions release a lock object (with a default value for _SCOPE)? There are 5 correct answers to this question. COMMIT WORK ROLLBACK WORK The display of an SAP screen The display of a dialog message type E The display of a dialog message type A ENQUEUE_ DEQUEUE_ A call to a function module A CALL TRANSACTION An “/n” in the command field.
Where can you set the GUI status and the GUI title for a classical screen (dynpro)? Please choose the correct answer. In the attributes of the screen In a module called from PBO of the screen In the properties of the related header UI element In a module called from PAI of the screen.
What ABAP Dictionary object allows you to define fixed values? Please choose the correct answer. Domain Data element View Lock object.
Where are fixed values for fields stored? Please choose the correct answer. Table Domain Structure Field Data element.
Report abuse Consent Terms of use