Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONCheckPoint2.5

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
CheckPoint2.5

Description:
Check point 2.5

Author:
Basit304
(Other tests from this author)

Creation Date:
19/11/2021

Category:
Others

Number of questions: 46
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
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 Standard Table Index Table Any Table Sorted Table.
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 TYPE-POOL INTERFACE-POOL PROGRAM REPORT FUNCTION MODULE METHOD CLASS-POOL INCLUDE.
Each component has an interface; of what does this interface consist? There are 2 correct answers to this question. Interface context Interface controller Interface view Data Container.
In the technical settings for a transparent table, buffering is switched on and single record buffering is selected. Which statement uses the buffered data assuming that the WHERE clause contains restrictions for all key fields? Please choose the correct answer. SELECT SINGLE … FOR UPDATE. SELECT … INTO TABLE … . SELECT … . ENDSELECT. SELECT SINGLE … .
What is unique about a singleton? There are 2 correct answers to this question. It must be instantiated using a static protected constructor. It must be defined as FINAL. It must be instantiated using a private instance constructor. It must be instantiated using a protected instance constructor. It cannot be defined as FINAL. It must be instantiated using a public instance constructor. must be instantiated using a static private constructor. It must be instantiated using a static public constructor.
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 an EXPORTING parameters passed by reference. Write the error data into a CHANGING parameters passed by value. Write the error data into TABLES parameters that is passed by reference.
Which statements are allowed for processing internal tables? There are 3 correct answers to this question. DELETE UPDATE INSERT SELECT MODIFY.
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.
What can be exposed in the component interface of a Web dynpro component? Please choose the correct answer. Custom methods of the component controller Context nodes of WINDOW controllers Standard hook methods of the component controller Public attributes of WINDOW controllers.
Which of the following enhancements calls a customer function module. There are 2 correct answers to this question. Business Add-in (BADIs) Customer exit User exit Business Transaction event.
At most, how many menu items (including functions, separators and sub- menus) can a menu have on the screen? Please choose the correct answer. 20 None of the above 10 15.
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. All objects included in the transport request must be activated. The extended program check must show no warnings. The transport request must be released All tasks of the transport request must be assigned to the same user.
Dynpros can be placed in which program types? There are 3 correct answers to this question. Function groups Module pools Class pools Executables.
Which boundary conditions lead to improved access time to an internal table? There are 3 correct answers to this question. Left justified part of key for sorted tables Left justified part of key for hashed tables Fully qualified key for sorted tables Index access for standard tables Index access for hashed tables.
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 the class itself From a parent class From a friend class From any protected class From a child class.
Why should you bundle database updates in your dialog programs? Please choose the correct answer. To allow you to use SAP locks to ensure data consistency To be able to rollback database changes performed in the same dialog step To avoid database locks set by an SQL statement that persists until the end of the program To process the SAP LUW within the database LUW to ensure data consistency.
What does a Web Dynpro component contain? There are 3 correct answers to this question. UI elements Component controller Exactly one interface controller A context Multiple views within a window.
Where do you create online documentation ((F1) help) for fields on the screen? Please choose the correct answer. Table Structure Field Domain Data element.
In which controller type can you embed a service call? Please choose the correct answer. View controller Configuration controller Component controller Interface controller.
What is the maximum number of watchpoints that can exist at one time? Please choose the correct answer. No limit 8 6 10.
Which events can exist in all types of programs that actually contain executable statements? Please choose the correct answer. INITIALIZATION AT USER-COMMAND LOAD-OF-PROGRAM START-OF-SELECTION AT LINE-SELECTION AT PF##.
After which statement will the runtime system initialize the ABAP memory? Please choose the correct answer. LEAVE TO TRANSACTION CALL TRANSACTION SUBMIT… AND RETURN SUBMIT.
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. - Enhancement Spot Implementation - BAdI Implementation - Enhancement Project - BAdI Implementation - BAdI Implementation - Enhancement Spot Implementation - BadI Implementation - Enhancement Project.
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. All tasks of the transport request must be assigned to the same user. The extended program check must show no warnings. The transport request must be released All objects included in the transport request must be activated.
What is a plug? There are 4 correct answers to this question. Can be defined as inbound, outbound, or both Forms the basis of navigation within a Web Dynpro Can be defined as default inbound Can be defined as a startup Can be defined as an exit Can be assigned to multiple views Can be defined as outbound controlling multiple inbound plugs Can be defined as inbound and be controlled by multiple outbound plugs.
The data buffered on each application server… Please choose the correct answer. Is always the same. Is never the same. Depends on the users. Is does not the same.
Which of the following settings can you define for both structures and transparent tables in the ABAP Dictionary? There are 2 correct answers to this question. Foreign key relationships Size category Storage type Enhancement category.
Which of the following are key capabilities of SAP NetWeaver? There are 3 correct answers to this question. People Integration Supply Chain Management Information Integration Application Platform Enterprise Resource Planning.
Which of the following is a true statement? There are 2 correct answers to this question. A sorted table can have a unique or a non-unique key. A hashed table should always have a unique table key. A standard table should always have a unique key. A standard table should always have a multiple key.
You create a function group ZATP. What is the name of the corresponding main program? Please choose the correct answer. ZATP SAPLZATP SAPMZATP SAPFZATP.
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. All fields in the SELECT clause that are not part of an aggregate function must be listed after GROUP BY. The SELECT statement must also have a WHERE clause. The fields after GROUP BY must have a character type. The table in the FROM clause must be a transparent table.
You want to display a dialog box in your ABAP program. Which statement do you use? Please choose the correct answer. CALL SCREEN 200 STARTING AT 5 5. WINDOW 200 STARTING AT 5 5. CALL SCREEN 200. SET SCREEN 200.
Which parameter types can be used in the signature of a functional method? There are 2 correct answers to this question. IMPORTING EXPORTING RETURNING CHANGING.
Which of the following items are used in a Web Dynpro Application to transport database data to the user interface? There are 2 correct answers to this question. Interface controller Context node Inbound plug Supply function.
Which controller types can exist within a Web Dynpro component? There are 3 correct answers to this question. User controller Application controller View controller Component controller Window controller.
In which order do you implement a new BAdI? Please choose the correct answer. Create BAdI Implementation Create Enhancement Spot Implementation Create BAdI Implementation Create Enhancement Project Create Enhancement Spot Implementation Create BAdI Implementation Create Enhancement Project Create BAdI Implementation.
Which statement is true? Please choose the correct answer. A database LUW cannot be placed within an SAP LUW. A database LUW must be placed within an SAP LUW. A database LUW must be placed without an SAP LUW. An SAP LUW must be placed within a database LUW.
Identify the types of layout managers. There are 4 correct answers to this question. RowLayout TreeLayout MatrixLayout ColumnLayout FlowLayout GridLayout.
Where can you define data types that can be used throughout the system? There are 3 correct answers to this question. In a method In a function module In a global interface In the ASAP Dictionary.
You have implemented a class CL_CUSTOMER in which you defined a private attribute. From where can you access this attribute directly? There are 2 correct answers to this question. From all methods of a class to which CL_CUSTOMER grants friendship From all methods of all subclasses of CL_CUSTOMER From all methods of the class CL_CUSTOMER From any program using the class CL_CUSTOMER.
What is variable-length structure called? Please choose the correct answer. Nested structure Flat structure Link structure Nested link structure.
Which are the functions of the ABAP dispatcher? There are 3 correct answers to this question. It requests the data from the database or the buffers. It distributes the requests among the work processes. It saves the processing requests in request queues. It integrates the presentation layer. It performs a roll-in and roll-out of user context.
Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question. FLOAT STRING DECFLOAT34 XSTRING DECIMALS.
What is the default length of the type C data type? Please choose the correct answer. 100 1–65535 1 10.
In which event block can you overwrite the default value of a PARAMETERS field on the selection screen? Please choose the correct answer. AT SELECTION-SCREEN PROCESS BEFORE OUTPUT INITIALIZATION START-OF-SELECTION.
You can use the logical expression IS SUPPLIED for any formal parameter passed to which modularization unit? There are 3 correct answers to this question. Subroutine (FORM routine) Static method Instance method Function module.
Report abuse Consent Terms of use