Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONCheckPoint1

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
CheckPoint1

Description:
Check point 1

Author:
Basit304
(Other tests from this author)

Creation Date:
17/11/2021

Category:
Others

Number of questions: 53
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Which of the following statements about the Object Navigator are true? There are 4 correct answers to this question. Menus can be displayed and edited in the Object Navigator. Screens can be displayed and edited in the Object Navigator. You can create BAdI implementations in the Object Navigator. The ABAP Dictionary can be maintained in the Object Navigator. ABAP programs can be displayed and edited in the Object Navigator. You can create customer projects (Transaction CMOD) in the Object Navigator.
Which steps are needed when implementing the singleton concept for class instantiation with minimum coding? There are 3 correct answers to this question. Create an event that returns the instance of the class. Define the class as abstract. Define the instantiation of the class as private. Create an instance of the class in a static constructor. Save the instance of the class in a static attribute.
You run an executable program that contains the following code: DATA: gv_var1 TYPE n LENGTH 3, Gv_var2 TYPE n LENGTH 3 VALUE ‘456’. START-OF-SELECTION CLEAR gv_var2 Gv_var2 = gv_var1. Gv_var1 = ‘123’. At what point does the system reserve memory for the data object gv_var1? Please choose the correct answer. When the assignment to gv_var2 is executed At the beginning of the START-OF-SELECTION event block As soon as the program is loaded into the internal session When value ‘123’ is assigned to the data object.
What must you specify in a Unicode system when opening a file in TEXT MODE? Please choose the correct answer. The code page The Layer page The byte order The ENCODING addition.
Which of the following ABAP dictionary types can you use to define domains? There are 3 correct answers to this question. DEC DATE CHAR NUMC FLOAT.
You have created a Web Dynpro view that shows data for airline connections between cities. You want to display flight data for a specific date in a different view after the user select a date and presses a button. Which of the following actions you must perform? There are 2 correct answers to this question. Create and link plugs between the views Edit the handler method in the view controller Set the interface property for key fields Add a client-side event in the view.
Subroutines provide which types of parameters? There are 2 correct answers to this question. Input Return values Input/output (changing) Exceptions Output.
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 DATA 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 OBJECT go_container…. DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container….
What is the result of the following arithmetic operation? DATA: intTYPEI. int=5*(3/10). Please choose the correct answer. 0 1.5 2 1.
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 TABLES parameters that is passed by reference. 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 a RECEIVING parameter that is passed by value.
When analyzing a program, which tasks can you perform using the code inspector? There are 3 correct answers to this question. Evaluate the time needed for program execution. Determine used database tables. Execute the extended program check Inspect the memory consumption Discover unused variables.
What do you need to have in your program to respond to the DOUBLE_CLICK event raised by an instance of the CL_GUI_ALV_GRID class? There are 3 correct answers to this question. Response: A CATCH statement to capture the event A SET HANDLER statement to register the handler to the event A handler class A handler method for the event A method to read the registration table.
Which must a search help do? There are 4 correct answers to this question. Be used from a screen Have a dialog with the user Allow the user to select a response Determine the values for selection by the user Use a table or a view for data selection.
When does the lifetime of a component controller begin and end? Please choose the correct answer. It begins with the Web Dynpro component and ends with the Web Dynpro application that called it. It begins the first time the Web Dynpro application is called at runtime and ends when the Web Dynpro application that called and instantiated the component ends. It lasts from creating data within the controller to cover the whole period during which the component is in use. It ends the first time the Web Dynpro application is called at runtime and ends when the Web Dynpro application that called and instantiated the component ends.
You write a program that updates a data record in the data base using the following statement: UPDATE scar FROM Is_scarr. Which of the following tasks does the Database Interface perform? There are 2 correct answers to this question. It applies a logical lock to the updated data record. It restricts the access to the log-on client It translates the statement to native SQL It checks the authorization of the current user.
What happens when an authorization check fails? Please choose the correct answer. A type E message is displayed. A CX_AUTH_FAILED type exception is raised. The system field SY-SUBRC is set to a value other than zero. The program is terminated.
In which circumstances is a table considered to be a text table? There are 3 correct answers to this question. This table only has one character-based data field. The ABAP runtime system determines that the relationship exists. This table has an additional language key field. The entire key of this data table is included as the key to this table. This table has a foreign key to the data table as a text table.
When do you need to use the GROUP BY clause in the SELECT statement? Please choose the correct answer. If you want to use aggregate functions and all components in the field list are aggregate functions If you want to redefine the sequence of the columns in the result set If you want to use aggregate functions and at least one component in the field list is a column identifier If you want to use ORDER BY to specify a sub-order.
A transport company keeps track of this availability in two tables, table VEHICLES and table TRANSPORT. To accept a new transport of a certain capacity must be found in table VEHICLES. If a record is found, a record is created in table TRANSPORT. The capacity is then adjusted in table VEHICLES. You have four function modules at your disposal. UPD_VEHI_A and UPD_VEHI_B update a matching report in table VEHICLES. If an error occurs both issue a message of type X. If no error occurs only UPD_VEHI_A issues a message of type X. If no error occurs UPD_VEHI_A issues a message of type I. UPD_TRAN_A and UPD_TRAN_B create a single record in table TRANSPORT. If an error occurs both issues a message of type X. If no error occurs only UPD_TRAN_A issues a message of type I. Which of the following function module calls ensures a single logical unit of work? Please choose the correct answer. 1. UPD_TRAN_A 2. UPD_VEHI_B 1. UPD_TRAN_B 2. UPD_VEHI_B 1. UPD_VEHI_A 2. UPD_TRAN_A 1. UPD_VEHI_A 2. UPD_TRAN_B.
Which elementary field types are considered a character type? There are 5 correct answers to this question. XSTRING STRING N F C X I T D.
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. DATA gv_id TYPE s_conn_id. DATA gv_id LIKE s_conn_id. DATA gv_id TYPE REF TO s_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. PARAMETERS pa_id TYPE s_conn_id.
Your program uses the class CL_GUI_ALV_GRID to generate a classic ALV Grid Control. What do you need in your program to react to a use double-clicking a row in the ALV Grid? There are 3 correct answers to this question. A method call to create the event handler A SET HANDLER statement to register the handler to the event A handler class A handler method for the double_click event A method call to refresh the display.
Which of the following enhancements calls a customer function module. There are 2 correct answers to this question. Customer exit Business Add-in (BADIs) User exit Business Transaction event.
Which method of passing parameters is preferred for its performance? Please choose the correct answer. Pass by class Pass by subclass Pass by value Pass by reference.
Which of the following customer modifications options are available in the table maintenance generator? There are 2 correct answers to this question. Maintenance screens Append searches Events Search helps.
What is the purpose of implicit enhancement points? Please choose the correct answer. To create a secondary index for an SAP database table To add code to a standard SAP program To change code in a standard SAP program To add fields to an SAP database table.
What must you do to create a singleton class? There are 2 correct answers to this question. Create the objection a static method of the class itself. Define the class as abstract. Store the reference to the singleton objection an instance attribute of the object itself. Set the class instantiation to private.
Which data element property do you set so that the system logs changes to the content of fields with this data element? Please choose the correct answer. Input history PARAMETER ID Documentation Change document.
Compared to a predefined ABAP type what additional properties can be assigned to a domain? There are 3 correct answers to this question. Parameter IDs Search helps Conversion exits Fixed values Value tables.
When is an ENDSELECT not required for a SELECT? There are 3 correct answers to this question. When you do a SELECT SINGLE When the FROM is a view When you specify a join of tables When you specify appending a table When you specify into a table.
You are using the new debugger and you want to change the content of an internal table. Which actions are allowed? There are 3 correct answers to this question. Delete the selected rows. Delete the entire contents of a table. Delete table from memory. Change row content and press Save (<CTRL> + S). Change row content and press Enter (<ENTER>).
What happens when an authorization check fails? Please choose the correct answer. The system field SY-SUBRC is set to a value other than zero. A CX_AUTH_FAILED type exception is raised. A type E message is displayed. The program is terminated.
For which of the following purposes can you use the ABAP dictionary? There are 2 correct answers to this question To maintain program translations To activate logging for transparent tables To create development classes To create lock objects.
What features are provided by the database interface? There are 3 correct answers to this question. Syntax check of Native SQL commands Data consistency check using foreign key relationships Access to SAP table buffers Conversion of Open SQL statements from ABAP statements into the corresponding database statements Database independence of application programs.
You implemented a subclass that inherits the instance constructor from it superclass What can you do with the inherited constructor? There are 2 correct answers to this question Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers. Change the signature Redefine the implementation Change the name Create several implementations.
Which of the following rules must you follow when creating subscreens? There are 2 correct answers to this question. Subscreens CANNOT have a field of type OK. Subscreens can call other subscreens. Subscreens CANNOT have an AT EXIT-COMMAND module. Subscreens can have a dialog module containing SET PF-STATUS.
For which of the following requirements can you implement a functional method? There are 2 correct answers to this question. A private static helper method that returns a single value as the result of an algorithm A factory method that returns an object reference A method to set an instance attribute with one importing parameter and no other parameters A handler method for an event that has a returning parameter.
What does a non-exclusive debugging mode mean? There are 4 correct answers to this question. Debugging is not possible for conversion or field exits. Owing to the commit, inconsistent datasets can occur in the database. It may be used anywhere in the landscape. 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 ABAP statement can make an element visible that you statically defined as invisible? Please choose the correct answer. SCREEN-INVISIBLE = 1 SCREEN-INVISIBLE = 0 SCREEN-ACTIVE = 1 SCREEN-ACTIVE = 0.
What does the Refactoring Assistant allow you to do? There are 2 correct answers to this question. Move between classes and interfaces Move components between superclasses and subclasses Rename all occurrences of a method Rename all subclasses of a method.
What does Software Layer Aware Debugging allow you to do? There are 3 correct answers to this question. Bypass authorization objects Debug a large portion of code Trace executing code Specify as much or as little code to debug Debug only a small portion of code.
Which type of view cannot be used in a search help? Please choose the correct answer. Help view Database view Candidates key view Maintenance view.
A work process… Please choose the correct answer. Stays linked toa screen through the dispatcher. Uses a common memory area called shared memory. Becomes inactive while waiting for a user. Becomes active while waiting for a user.
What can be exposed in the component interface of a Web dynpro component? Please choose the correct answer. Custom methods of the component controller Standard hook methods of the component controller Public attributes of WINDOW controllers Context nodes of WINDOW controllers.
You want to develop a program that processes character type data. When you implement the program, you can either use the classical string statements or the newer strings expressions and functions What are the main benefits of using string expressions and string functions? There are 2 correct answers to this question You can improve the performance significantly You can write code that is very easy to read and understand You can write compact syntax instead of a long sequence of statements You can reduce the number of intermediate variables.
When analyzing a program, which tasks can you perform using the code inspector? There are 3 correct answers to this question. Discover unused variables. Inspect the memory consumption Evaluate the time needed for program execution. Execute the extended program check Determine used database tables.
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 ON VALU E-REQUEST AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN AT SELECTION-SCREEN ON HELP-REQUEST.
When included in a structure, which elementary field types allow the structure to be considered a character-type data object? There are 4 correct answers to this question. XSTRING C T F STRING D X I N.
What types of changes to the repository does SAP provide? There are 3 correct answers to this question. Enhancement Packages Transports Support Packages SAP Notes Deployments from SDN.SAP.COM.
What are the advantages of defining texts symbols in executable programs? There are 2 correct answers to this question. The text of the text symbol can be changed at runtime They can store up to 256 characters. They are easier to maintain than literals. They facilitate multilingual functionality.
Which of the following can you assign a search help to? There are 3 correct answers to this question. Data element Structure component Table type Domain Check table.
Which steps are needed when implementing the singleton concept for class instantiation with minimum coding? There are 3 correct answers to this question. Create an instance of the class in a static constructor. Define the class as abstract. Save the instance of the class in a static attribute. Define the instantiation of the class as private. Create an event that returns the instance of the class.
What is the purpose of implicit enhancement points? Please choose the correct answer. To add fields to an SAP database table To create a secondary index for an SAP database table To change code in a standard SAP program To add code to a standard SAP program.
Report abuse Consent Terms of use