Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONCheckPoint3

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
CheckPoint3

Description:
Check point 3

Author:
Basit304
(Other tests from this author)

Creation Date:
23/11/2021

Category:
Others

Number of questions: 57
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Which of the following program types can contain screens? There are 3 correct answers to this question. Executable programs Module pools Class pools Interface pools Function groups.
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 superclass method is an instance method The super class method is abstract The subclass method has a lower visibility than the super class method The subclass method has same visibility as the super class method.
What is the ALV Object Model? Please choose the correct answer. A group of hierarchal classes that describe the ALV Grid as a whole but do not 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 BDC Grid as a whole and inherit from a single class A group of classes that describe the ALV Grid as a whole and inherit from a single class.
Which of the following steps are required to set up a shared memory area? There are 3 correct answers to this question. Generate an area root class Enable multiple versions of an area root class Set the root object Call the attach_for_write method of area root class Declare a catalog object.
Where do you create online documentation ((F1) help) for fields on the screen? Please choose the correct answer. Domain Data element Table Structure Field.
You want to define two database tables with different structures. Both tables should contain the fields CHANGE_DATE and CHANGE_TIME. How do you implement this in order to minimize the maintenance effort? Please choose the correct answer. Define a structure with these two fields and include this structure in both database tables. Define the two fields in one database table and copy them to the other database table. Define an append structure with these two fields and assign this append structure to both database tables. Define the two fields in each database table separately.
Which of the following must you do to be able to use a Business Add-in (BADI)? There are 2 correct answers to this question. Activate the enhancement project Modify the adapter class Write code for methods Create the BADI implementation.
Which of the following can you do with the ABAP debugger? There are 3 correct answers to this question. Analyze internal tables Compare data objects. Analyze SQL traces. Change source code. Analyze memory usage.
How do you use a sorted internal table? There are 2 correct answers to this question. You can read the records by index or key You need to specify a key in the table declaration You use APPEND to insert records at the correct position You can resort the table with SORT.
You are establishing the business logic layer for a Web Dynpro Component. Which service types are available in the Service Call wizard? There are 3 correct answers to this question. Function module Transaction code Web service proxy Class method Function group.
When starting the Debugger, what circumstance causes the runtime error DEBUGGING_NOT_POSSIBLE? Please choose the correct answer. When more than six sessions are already associated with this login user When more than five sessions are already associated with this login user Starting a non-exclusive mode in a productive system When the number of debugging sessions on the server exceeds the value defined by the profile parameter rdisp/wpdbug_max_no.
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 the class CL_CUSTOMER From all methods of a class to which CL_CUSTOMER grants friendship From all methods of all subclasses of CL_CUSTOMER From any program using the class CL_CUSTOMER.
Which of the following enhancement options does not require any preparation from SAP? Please choose the correct answer. Implicit enhancement point New BAdIs Explicit enhancement point Explicit enhancement sections.
Your task is to enhance the screen of an SAP standard application. How do you determine if there is a customer exit for this task? Please choose the correct answer. You search in the flow logic of the screen for CAL CUSTOMER-SUBSCREEN statement You search in the SAP reference Implementation Guide (IMG) for a suitable user exit You search in the source code of the application for GET BADI statement You use the BAdI Builder (transaction SE19) to check for a suitable Business Add-In(BAdI).
Which SELECT statement will always bypass the SAP table buffers? Please choose the correct answer. SELECT … FOR UPDATE … SELECT … SINGLE … SELECT … INTO TABLE … SELECT … ENDSELECT.
You want to define two database tables with different structures. Both tables should contain the fields CHANGE_DATE and CHANGE_TIME. How do you implement this in order to minimize the maintenance effort? Please choose the correct answer. Define a structure with these two fields and include this structure in both database tables. Define the two fields in each database table separately. Define an append structure with these two fields and assign this append structure to both database tables. Define the two fields in one database table and copy them to the other database table.
What pre-defined ABAP data type is deep? Please choose the correct answer. DECFLOAT34 N STRING X.
What are the differences between displaying in a full screen and in a container? There are 2 correct answers to this question. The only difference is that the container name must be specified when creating the ALV object. Any type of ALV allows the use of event handling. Only an ALV in a container allows the use of event handling. The full screen requires Dynpro programming. The container requires the use of an additional object (a container control). Only a full-screen ALV allows the use of event handling.
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 CHAIN. 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. All fields 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 and the PBO flow logic is processed. Only fields B and C are ready for input. The screen is displayed again without processing the PBO flow logic. Only fields B and C are ready for input.
The USER has the following fields: ID, FIRST_NAME, LAST_NAME. FIRST_NAME, LAST_NAME have the same basic type and length. You want to compare fields FIRST_NAME, LAST_NAME to each other. Which of the following SELECT statements can you use? There are 2 correct answers to this question. SELECT*FROM users INTO TABLE It_users WHERE first name = users »last_name. SELECT*FROM users AS a INTO TABLE It_users WHERE a»first_name = a»last_name SELECT*FROM users AS a INTO TABLE It_users WHERE a first_name = last_name. SELECT*FROM users INTO TABLE It_users WHERE first_name = users last_name.
How do you embed a subscreen in a main screen? Please choose the correct answer. Use CALL SUBSCREEN in a PBO module of the main screen Use SET SUBSCREEN in a PBO module of the main screen. Use SET SUBSCREEN in the flow logic of the main screen. Use CALL SUBSCREEN in the flow logic of the main screen.
dbtab is a transparent table. What is declared by the following statement? DATA myvar TYPE dbtab. Please choose the correct answer. A structure variable An elementary field An internal table A reference to an internal table.
Each work process is assigned a type of task that can be performed. Which statements related to this are true? There are 3 correct answers to this question. All work processes have the same structure. All work processes communicate with the dispatcher. All work processes communicate with the database. It is possible to have multiple spool work processes on an ABAP application server. To switch a work process type requires a restart of the SAP NetWeaver Application Server ABAP. It is possible to have multiple enqueue work processes on an SAP NetWeaver Application Server. A work process can communicate directly with an external system through a Remote Function Call.
Which assignment will lead to a conversion error? Please choose the correct answer. An XSTRING type data object to a STRING type data object DATA.gv_xstring TYPE xstring, gv_string TYPE string. gv_xstring = 'AF00'. gv_string = gv_xstring. A type C data object with the value '123' to a type C data object with length 2 DATA.gv_c3(3) TYPE c VALUE '123', gv_c2(2) TYPE c. gv_c2 = gv_c3. A type P data object to a type F data object DATA.gv_p TYPE p VALUE '15000', gv_f TYPE f. gv_f = gv_p. A type C data object with the value '1.50E4' to a type I data object DATA.gv_c(6) TYPE c VALUE '1.50E4', gv_i TYPE i. gv_i = gv_c.
Which view types can you use to join two tables with an outer join? There are 2 correct answers to this question. Help view Maintenance view Database view Projection view.
What is the Web Dynpro programming model is based on? Please choose the correct answer. Model View Controller (MVC) Business Server Pages (BSPs) Classic Dynpro programming Internet Transaction Server (ITS).
Which of the following statements are true? There are 2 correct answers to this question. You define the value range in the data element. You can enter documentation for the data element in the ABAP Dictionary. A conversion routine can be assigned to a domain. A conversion routine can be assigned to a data element.
A user runs an ABAP program, enters an incorrect value on the selection screen, and chooses Execute. Which event block must send the error message in order to display the selection screen again? Please choose the correct answer. AT SELECTION-SCREEN AT SELECTION-SCREEN ON VALU E-REQUEST AT SELECTION-SCREEN ON HELP-REQUEST AT SELECTION-SCREEN OUTPUT.
Which of the following are valid control level changes within a loop over an internal table? There are 2 correct answers to this question. END of <f> LAST SUM COLLECT.
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 implementation of the handler method ON_EVT contains the desired logic. Check if the handler method is registered to the correct event. 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 type of transport task is used when you modify SAP standard objects? Please choose the correct answer. Development/Correction Workbench Transport of copies Repair.
Each ABAP program that actually contains executable statements… There are 2 correct answers to this question. Has declarative statements outside of processing blocks that are considered local. Is divided into processing blocks. Only assigns executable statements in a processing block to a processing block. Has declarative statements inside of processing blocks that are considered local. Uses event blocks to trigger events in ABAP. Assigns every executable statement to a processing block regardless of it being in a processing block. Can be tested from the ABAP Workbench by pressing (F8).
What do you need to consider when creating a secondary index on a table? There are 2 correct answers to this question. The index can be created for specific database systems only The most frequently selected fields should be at the first positions in the index The table will be updated more quickly if you create more indexes The index must always be unique.
You want to select data from two tables and store the result in as structure. Table PARTNER contains the fields PART_ID and KIND. Table CONTRACT contains the fields CONT_ID, CONT_TYPE and DIVISION. The structure is defined as follows DATA: BEGIN OF wa_result, Part_id type partner-part_id, cont_id type contract-cont_id, Cont_type TYPE contract-cont_type, END of wa_result, Lt_result type table of wa_result. How can you replace the following SELECT statement with an outer join? SELECT part_id from partner INTO wa_result WHERE kind = ‘Residential’. SELECT cont_id from CONTRACT into wa_result-cont_id WHERE part EQ wa_partner-part_id And DIVISION eq ‘Water’. Append wa_result to lt_result. ENDSELECT. If sy-subrc<>0. CLEAR wa_result-cont_id APPEND wa_result TO lt_result. ENDIF. ENDSELECT. Please choose the correct answer. SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id = contract-part_id AND partner-kind EQ ‘Residential’ INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE division eq ‘Water’. SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id = b~part_id INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE kind = ‘Residential’ and AND division EQ ‘Water’. SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id = b~part_id AND b~division EQ ‘Water’ INTO TABLElt_result WHERE kind = ‘Residential’ SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id = contract-part_id AND contract-division EQ ‘Water’ INTO TABLE lt_result WHERE kind EQ ‘Residential’.
Which statements are true regarding ABAP inheritance? There are 4 correct answers to this question. Overloading allows a method to have several definitions with different signatures. You can access the superclass component with the prefix SUPER->. Instance constructors must call the superclass’s constructor. The static constructor can be overwritten as part of inheritance. Static constructors do not need to call the superclass’s constructor. Polymorphism requires the developer to specify which method to use with inheritance. The instance constructor can be overwritten as part of inheritance.
You define a database view A and maintenance view B in the ABAP dictionary. What restrictions apply to these views? There are 2 correct answers to this question Only B can have either a left outer join or an inner join The tables joined in A must have foreign key relationships The tables joined in B must have foreign key relationships Only A can be used in the FROM clause of a SELECT statement.
Where can you define global data types that are visible system-wide? There are 3 correct answers to this question. In a global interface In a method of a global class In a global class In the ABAP Dictionary In a function module.
What is the SAP recommended naming convention for append structures of standard SAPtables? Please choose the correct answer. The name of the append structure must start with ZZ or YY. The components of an append structure should start with Z or Y. The components of an append structure should start with ZZ or YY. The name of the append structure must start with ZA.
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? Please choose the correct answer. ABAP Dictionary (Transaction SE11) General Table Maintenance Dialog (Transaction SE54) Text Elements (Transaction SE32) Reuse Library (Transaction SE83) Function Builder (Transaction SE37).
What must exist before you can create a new transportable function module? There are 3 correct answers to this question. Function group Change request Type group Package Module pool.
Your selection screen can be modified at which event? Please choose the correct answer. None of the above AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN ON <field_name> AT SELECTION-SCREEN.
Which ABAP Dictionary object can reference a domain? Please choose the correct answer. Data element Structure Database table field Table type.
How do you use a sorted internal table? There are 2 correct answers to this question. You need to specify a key in the table declaration You use APPEND to insert records at the correct position You can resort the table with SORT You can read the records by index or key.
You enhance an SAP standard global class by defining a post-method for an SAP method. The original SAP method has an EXPORTING parameter named PAR 1. What type of parameter is PAR 1 in the post-method? Please choose the correct answer CHANGING IMPORTING RETURNING EXPORTING.
Which of the following ABAP standard types are incomplete? There are 2 correct answers to this question. X N F STRING.
What does a non-exclusive debugging mode mean? There are 4 correct answers to this question. Owing to the commit, inconsistent datasets can occur in the database. It may be used anywhere in the landscape. Debugging is not possible for conversion or field exits. Someone else is debugging the same source code. Debugging is not possible between the statements SELECT and ENDSELECT because the database cursor needs to be closed using a COMMIT. A roll-out is forced in the application after each Debugger view.
Which of the following are valid combinations of event visibility and handler method visibility? There are 2 correct answers to this question. Private event and public handler Public event and protected handler Protected event and public handler Private event and private handler.
You display the content of an internal table using an ALV grid control. The content of the internal table changes during the program. Which CL_GUI_ALV_GRID class method can you use to display the changed content? Please choose the correct answer. SET_TABLE _FOR_FIRST_DISPLAY in module PBO SET_TABLE_FOR_FIRST_DISPLAY in module PAI REFRESH_TABLE_DISPLAY in module PAI REFRESH_TABLE_DISPLAY in module PBO.
Which data types are incomplete ABAP standard data types? There are 3 correct answers to this question. C F N I P.
Can you search for suitable classic Business Add-Ins (BAdIs)? There are 2 correct answers to this question. Search in the Repository Information System and choose Enhancements -> Customer Exits Search in an application program for the method GET_INSTANCE of class CL_EXITHANDLER Search for suitable entries in the relevant component in the Implementation Guide (IMG) Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object Builder.
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 CHAIN. 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. All fields are ready for input. The screen is displayed again without processing the PBO flow logic. 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 and the PBO flow logic is processed. Only fields B and C are ready for input.
When starting the Debugger, what circumstance causes the runtime error DEBUGGING_NOT_POSSIBLE? Please choose the correct answer. When more than six sessions are already associated with this login user Starting a non-exclusive mode in a productive system When the number of debugging sessions on the server exceeds the value defined by the profile parameter rdisp/wpdbug_max_no When more than five sessions are already associated with this login user.
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 Index table Hashed table.
You want to use a BAdI to extend the functions of an SAP program. Which of the following tasks is necessary? Please choose the correct answer. Create an enhancement project using a customer exit. Call the BAdI Implement a class that implements the BAdI interface. Define an interface for the BAdI.
Which of the following controller types can exist only once in a Web Dynpro component? There are 2 correct answers to this question. Window controller Component controller Configuration controller View controller.
In which modularization units can you use parameters? There are 3 correct answers to this question. Methods Subroutines Function modules Event blocks such as START-OF-SELECTION Dialog modules such as PBO modules.
Which SELECT statement will always bypass the SAP table buffers? Please choose the correct answer. SELECT … INTO TABLE … SELECT … ENDSELECT. SELECT … SINGLE … SELECT … FOR UPDATE ….
Report abuse Consent Terms of use