Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONODOD

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
ODOD

Description:
ODOD tesst

Author:
JOOOJ
(Other tests from this author)

Creation Date:
15/02/2019

Category:
Others

Number of questions: 111
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
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 use double-clicking a row in the ALV Grid?(3) A method call to refresh the display A SET HANDLER statement to register the handler to the event A method call to create the event handler A handler method for the double_click event A handler class.
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? (3) A method to read the registration table A handler class A SET HANDLER statement to register the handler to the event A CATCH statement to capture the event A handler method for the event.
You can use the logical expression IS SUPPLIED for any formal parameter passed to which modularization unit? (3) Instance method Static method Function module Subroutine (FORM routine) .
What can you enhance using BAdIs?(3) Database tables Source code Menus Data elements Screens.
which program types can you create dialog screens? (3) Function group Executable program Module pool Class pool Interface pool.
In which modularization units can you use parameters? (3) Methods Event blocks such as START-OF-SELECTION Function modules Subroutines Dialog modules such as PBO modules.
In which of the following source code blocks can you define local data objects? (3) PBO module AT SELECTION-SCREEN event block Subroutine Function module Static method.
What can you create using the ABAP Dictionary? (3) Transparent tables Type pools Field symbols Domains Internal tables.
To which of the following you must assign newly created SAP repository objects? Transport request Function group Transport task Package.
Which database objects can you create in the ABAP Dictionary? There are 2 correct answers to this question Projection views Logical databases Indexes Foreign key relationships .
Which of the following program types can contain screens? There are 3 correct answers to this question Interface pools Module pools Executable programs Function groups Class pools.
Which of the following repository objects can you maintain in the ABAP Workbench? There are 3 correct answers to this question. Function modules Internal tables Business functions Transparent tables Module pools.
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. REPORT PROGRAM FUNCTION-POOL FUNCTION MODULE METHOD INTERFACE-POOL TYPE-POOL INCLUDE CLASS-POOL.
Which of the following tools belong to the ABAP Workbench? There are 3 correct answers to this question. Form Builder Function Builder Screen Painter Class Builder Easy Access Menu.
Which of the following ABAP standard types are incomplete?(2) N X F STRING.
Which data types are incomplete ABAP standard data types?(3) P N F I C.
Which of the following ABAP standard types are numeric? (3) N D F P I.
Which of the elementary data types is deep? (string으로출제) N XSTRING DECFLOAT34 X.
Which of the following predefined ABAP types is incomplete? F STRING XSTRING P.
Which elementary field types are considered a character type? (5) XSTRING X N C STRING F I T D.
Which of the following ABAP data types are compatible with the generic character-type CLIKE? (3) N STRING DECFLOAT C XSTRING.
Which of the following ABAP dictionary types can you use to define domains? (3) NUMC CHAR FLOAT DEC DATE.
Which of the following standard types is numeric? (3) I F Decfloat32 P.
Compared to a predefined ABAP type what additional properties can be assigned to a domain? There are 3 correct answers to this question. Fixed values Conversion exits Value tables Parameter IDs Search helps.
Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question. DECFLOAT34 STRING XSTRING FLOAT DECIMALS.
You want to develop a validation routine for a selection screen field. If a wrong value is entered into the field an error message should be displayed and the focus should move to the field. Which event do you use to achieve this? END-OF-SELECTION INITIALIZATION START-OF-SELECTION AT SELECTION-SCREEN.
You always want to check the user authorization for data entered in an input field of a selection screen. Where do you do this? In the event block AT SELECTION-SCREEN In the event block AT SELECTION-SCREEN OUTPUT In the event block INITIALIZATION In the event block AT SELECTION-SCREEN on VALUE-REQUEST.
What are the declarative statements used to define the selection? (3) SELECT-OPTIONS SELECTION-SCREEN PARAMETERS None of the above.
What is the difference between the INITIALIZATION and AT SELECTION-SCREEN OUTPUT events? INITIALIZATION can change the properties of the screen fields AT SELECTION-SCREEN OUTPUT cannot change the properties of the screen field INITIALIZATION cannot change pushbutton texts AT SELECTION-SCREEN OUTPUT can change pushbutton texts INITIALIZATION is only processed once. AT SELECT-SCREEN OUTPUT can be processed multiple times NITIALIZATION can overwrite the default value of a PARAMETERS field AT SELECTIION-SCREEN OUTPUT can overwrite the default values of a PARAMETERS field.
Which of the following is correct? he screen attributes can be modified in the PROCESS BEFORE OUTPUT and PROCESS AFTER INPUT event blocks. None of the above. The screen attributes can be modified in the PROCESS BEFORE OUTPUT event block. The screen attributes can be modified in the PROCESS AFTER INPUT event block.
You build a dialog screen with an input field in an ABAP program. How do you ensure that the contents of the screen field can be accessed in the program? (Please choose the correct answer.) Use the GET statement in the program to transport the data from the screen field Define a data object in the program with the same name as the screen field Use a MOVE statement in a PAI module to copy the data to a data object Enter the name of a data object in the Parameter ID attribute of the screen field.
Which screen in the ABAP Dictionary allows you to log data changes to the table? Utilities Database Object Database Utility Delivery and Maintenance tab Technical Settings Attributes tab Utilities Settings.
Using the screen system table, what can you modify through a LOOP AT SCREEN … ENDLOOP construct? Values of screen elements Screen status Attributes of screen elements Function code of buttons.
Which of the following statements regarding the event AT SELECTIONSCREEN ON HELP-REQUEST FOR <FIELD> is correct? This event will display (F1) help for the input field on the selection screen. his event will display self-defined (F1) help for the input field programmed in the event block and will override any help possibly defined in the ABAP Dictionary for the field. None of the above. his event will display self-defined (F1) help for the output field programmed in the event block and will override any help possibly defined in the ABAP Dictionary for the field.
How can you maintain documentation for input fields on your screen? Please choose the correct answer. Add documentation to the SCREEN table at PROCESS BEFORE OUTPUT (PBO). Add documentation to the SCREEN table at PROCESS AFTER INPUT (PAI). Add documentation to the underlying data element. Define text tables for the underlying structure.
How do you program an input validation on a selection screen that allows users to correct their input? Please choose the correct answer. Implement the check at the event AT SELECTION-SCREEN OUTPUT. In case of an input error, a type E MESSAGE must be displayed. Implement a check at the event AT SELECTION-SCREEN. In case of an input error, a type E MESSAGE must be displayed. Implement the check at the event END-OF-SELECTION. In case of an input error, a type E MESSAGE must be displayed. Implement the check at the event AT SELECTION-SCREEN. In case of an input error, a type A MESSAGE must be displayed.
You want to include an element of type ‘Table’ in your web dynpro. What actions add the corresponding columns to the table automatically? Generate a ‘BIND_TABLE’ method using the web dynpro method wizard. Right click the table and select the ‘CREATE_BINDING’ option Include the method BIND_TABLE of IF_WD_CONTEXT_NODE. Bind the table attribute ‘DATA_SOURCE’ to the context node.
What process is used to establish the automatic transport of data between the view controller's context-attributes and the UI element in its layout? Context mapping Data binding Data migration View assembly.
Which of the following statements regarding search helps are true? (3) You can use a database view for the search help selection method. You can use transparent tables for the search help selection method. Help views can also be used for the selection method for search help. You can use a maintenance view for the search help selection method.
Which of the following can you assign a search help to? (3) Structure component Domain Table type Check table Data element.
Which must a search help do? There are 4 correct answers to this question. Use a table or a view for data selection Determine the values for selection by the user Have a dialog with the user Allow the user to select a response Be used from a screen.
Which components belong to an elementary search help? There are 2 correct answers to this question. Fixed values Import / export parameters Selection method Attachment to a field.
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? You search in the flow logic of the screen for CAL CUSTOMER-SUBSCREEN statement You use the BAdI Builder (transaction SE19) to check for a suitable Business Add-In(BAdI) You search in the source code of the application for GET BADI statement You search in the SAP reference Implementation Guide (IMG) for a suitable user exit.
You have implemented a class CL_CUSTOMER in which you defined a private attribute. From where can you access this attribute directly? (2) 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.
In which circumstances is a table considered to be a text table? (3) 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. The ABAP runtime system determines that the relationship exists. This table only has one character-based data field. This table has an additional language key field.
What is the maximum number of watchpoints that can exist at one time? 10 6 8 No limit.
In addition to the primary key of an internal table, how many secondary indexes can you define for an internal table? 10 1 0 15.
What is the result of the following arithmetic operation? DATA: intTYPEI. int=5*(3/10). 0 1.5 2 1.
What is the default length of the type P data type? 1 2018-01-16 8 64.
How many kinds of internal tables are supported in the ABAP language? Please choose the correct answer. 2 3 1 5.
How many work areas are available in the Debugger? Please choose the correct answer. 7 9 12 15.
At most, how many buttons can the application toolbar have on the screen? Please choose the correct answer. 20 30 10 35 None of the above.
Which of the following statements about the Object Navigator are true? (4) The ABAP Dictionary can be maintained in the Object Navigator. You can create customer projects (Transaction CMOD) in the Object Navigator. Menus can be displayed and edited in the Object Navigator. Screens can be displayed and edited in the Object Navigator. ABAP programs can be displayed and edited in the Object Navigator. You can create BAdI implementations in the Object Navigator.
Which of the following components belong to the SAP application layer? (2) Database interface ABAP dispatcher Database server SAP GUI.
When does the lifetime of a Web Dynpro component begin and end? It ends each time it is called, and it ends when the component completes. It begins when instantiated and it ends when the program ends or the object is freed. 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. It begins each time it is called, and it ends when the component completes.
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 thecomponent is in use. It ends the first time the Web Dynpro application is called at runtime and ends when the Web Dynpron application that called and instantiated the component ends.
Which view types can you use to join two tables with an outer join? (2) Maintenance view Database view Help view Projection view.
A view can only be displayed in which circumstances? It can always be displayed. It contains an inbound and outbound plug. It cannot always be displayed. It has been embedded in a window.
Which of the following statements are true? (2) A database view is implemented as an inner join. A database view is implemented as an outer join. A maintenance view is implemented as an outer join. A maintenance view is implemented as an inner join.
Which type of view cannot be used in a search help? Candidates key view Maintenance view Database view Help view.
Which of the following can you do with the ABAP debugger? (3) Analyze memory usage. Analyze internal tables Analyze SQL traces. Change source code. Compare data objects.
What does Software Layer Aware Debugging allow you to do?(3) Debug only a small portion of code Bypass authorization objects Specify as much or as little code to debug Debug a large portion of code Trace executing code.
You have defined a classical screen (dynpro) with mandatory input fields. You want to exit the screen using the Cancel button even if not all of the mandatory fields have been filled. What is necessary to achieve this? Use the LOOP AT SCREEN. ... ENDLOOP statement to set the "required" property of the input fields to zero. Set the function type assigned to the Cancel button to S and handle it in a module with the addition AT EXIT-COMMAND. Assign function type E to the Cancel button and handle it in a module with the addition AT EXIT-COMMAND. Set the function code assigned to the Cancel button to CANCEL and handle it in a module with the addition AT EXIT-COMMAND. .
Which of the following capabilities is provided by the Application Layer platform of SAP Netweaver? Database and operating system abstraction Multi-channel access Business process management Master data management.
What is mandatory for automatic data transport between a variable and an input field on a classical screen (dynpro)? The variable must be declared using the TABLES statement. The name of the variable and the name of the input field must be identical. The variable must be declared using the DATA statement. The property OUTPUT of the input field must be set. .
Which of the following controller can exist only once in a Web Dynpro component? (2) Configuration controller View controller Window controller Component controller.
Which controller types can exist within a Web Dynpro component? (3) Window controller User controller Component controller Application controller View controller.
Which of the following items are used in a Web Dynpro Application to transport database data to the user interface? (2) Interface controller Context node Supply function Inbound plug.
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. Add a client-side event in the view Create and link plugs between the views Set the interface property for key fields Edit the handler method in the view controller.
What is the difference between SAP Basis and SAP NetWeaver? All versions of SAP NetWeaver require the use of Unicode. All versions of SAP NetWeaver require the use of UTF-8. All versions of SAP NetWeaver include the ability to handle HTTP requests There is no difference; the name change was driven by marketing alone.
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 are true statements? (3) Table fields can be assigned to a data element. Search helps can be defined for a table field that is assigned to a predefined data type. A reference table and field are required for fields with the data types QUAN and CURR Table fields can be assigned to an ABAP Dictionary data type directly. .
Which statements are true? (5) The ALV Grid requires a table refresh after programmatically changing the ALV. The ALV Grid uses a reference to the data table for display. The ALV Object Model requires a table refresh after programmatically changing the ALV. The ALV Object Model uses a reference to the data table for display. The ALV Grid can define a sort criteria for initial display. The ALV Object Model can define a sort criteria for initial display.
Which of the following statements are true? (2) A sorted table is always accessed by a unique key. Hashed tables are always accessed by index. Standard tables can be accessed by index. Hashed tables are accessed by a unique key. Standard tables cannot be accessed by index.
Which of the following statements are true? (2) Static attributes cannot be changed by an object. A static attribute is the same across all instances of the class. There is only one static attribute across all instances of the class. Static attributes are declared with the CLASS-DATA statement. Static attributes can be declared only in the private visibility section of the class. .
Which of the following statements are correct? (3) An enhancement spot can contain an explicit enhancement point and an enhancement section. An enhancement spot can contain one or more simple or composite enhancements. An enhancement spot can contain either an explicit enhancement point and enhancement section or a new BADI only, but all three cannot be in the same enhancement spot. An enhancement spot can contain an explicit enhancement point, explicity enhancement section, and new BADI.
Each ABAP program starts with an introductory statement. Which statements are right? (2) The introductory statement can be modified. The introductory statement must be the first statement in the program. The introductory statement must be the first line in the program. The introductory statement must never be modified.
Which of the following statements are true?(2). A conversion routine can be assigned to a data element. A conversion routine can be assigned to a domain. You define the value range in the data element. You can enter documentation for the data element in the ABAP Dictionary.
Which of the following are true statements?(3) Field labels are defined for the domain. You can also select predefined data types to define the data type of the data element. Reference data types can be used to define the data type of the data element. The technical attributes of the data element can be defined by a domain, that is, the data type, the field length, and the number of decimal places.
Which of the following statements are correct? (4) You can call private methods within the public methods without reference to the object or class. Static methods can be defined in both the public and private visibility section of the class. None of the above Only public methods can be addressed outside the class. Class methods assigned to the public visibility section can be accessed outside the class using the static component selector and the class name.
Which statements about ABAP are true? ABAP keywords and additions must be in uppercase. Each statement must end with a period. Each statement must begin with a keyword. Each statement cannot begin with a keyword.
Which of the following is a true statement? (3) Local repository objects can be transported. Client-specific customization objects are assigned to the customizing request. All transportable objects have to be assigned to a package. Repository objects and cross-client customization objects are assigned to the workbench request. Inactive objects can be transported. .
Which of the following is a true statement? (3) A package can be nested. The transport layer is a mandatory input field for the package. All customer repository objects have to be assigned to a package. Packages use interfaces and visibility to make their elements visible to other packages.
Which of the following statements are true?(3) None of the above. Implicit enhancement options allow you to enhance interface parameters for function modules and methods without modifying the repository object. An implicit enhancement point can be used to insert code in an SAP pro- gram and is always available to the customer. Implicit enhancement can be used to enhance SAP objects developed prior to SAP NetWeaver 7.0.
Which of the following statements are true? There are 3 correct answers to this question. The tables included in the maintenance view should have foreign key relationships. The tables included in the help view should have a foreign key relationship. Projection views can have more than one table included for the view definition. You cannot use a pooled or cluster table for a database view.
Which of the following are true statements? There are 3 correct answers to this question. The technical attributes of the data element can be defined by a domain, that is, the data type, the field length, and the number of decimal places. You can also select predefined data types to define the data type of the data element. Reference data types can be used to define the data type of the data element. Field labels are defined for the domain.
Which statements are considered obsolete and cannot be used in ABAP Objects? Please select all the correct answers that apply. SEARCH INFOTYPES DATA ... TYPE ... OCCURS DATA ... BEGIN OF ... OCCURS LOOP AT dbtab TABLES RANGES ON CHANGE OF LEAVE.
What is the difference between a Unicode and non-Unicode program? Offset positioning in a Unicode structure is restricted to character data objects. Offset positioning in a Unicode structure is restricted to flat data objects. Byte-type data objects cannot be assigned to character-type data objects. Byte-type data objects cannot be compared to character-type data objects.
How would you find out if an application program offers a program exit? Please select all the correct answers that apply Search for the character string CUSTOMER-FUNCTION Use the Repository Information System Use the Application Hierarchy Look for a customer exit in the SAP reference IMG within an application area.
Which SELECT statement will always bypass the SAP table buffers? SELECT … SINGLE … SELECT … FOR UPDATE … SELECT … INTO TABLE … SELECT … ENDSELECT.
Which of the following types of SQL statements always bypass the SAP table buffers? There are 2 correct answers to this question. SELECT SUM (sales) SELECT SINGLE SELECT … UP TO 1 ROW SELECT … INNER JOIN….
Which does the field catalog allow you to do? (3) Specify the sort order of the display table Add a field to the display Change the title of a column Change the display order of a column Produce a striped pattern for the display lines.
Which of the following is an implicit enhancement? (2) Pre-method Protected method Overwrite method Private method.
What do enhancement spots manage?(3) Explicit enhancement points Explicit enhancement sections New BAdIs Classic BAdIs Implicit enhancement points.
Which of the following enhancement options does not require any preparation from SAP? Please choose the correct answer. Explicit enhancement point New BAdIs Implicit enhancement point Explicit enhancement sections .
What does the enhancement category for a database table or structure do? There are 3 correct answers to this question. Makes a table Unicode-compliant Specifies the types of changes that can be made to the structure Can produce warnings at incompatible points for the structure Can identify where program behavior may change.
What can be defined using an implicit enhancement option? There are 3 correct answers to this question Replacements for global SAP methods Additional attributes in global SAP classes Replacement for SAP function modules Additional parameters in SAP function modules Additional exceptions in SAP function modules.
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. 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 application-related BAdIs or enhancement spots in the SAP Application Hierarchy. Perform a program-related global search for GET BADI. Select from the list of freely selected BAdIs or enhancement spots in the Repository Information System.
Why should you bundle database updates in you dialog programs? (Please choose the correct answer.) To avoid database locks set by an SQL statement that persists until the end of the program To allow you to use SAP locks to ensure data consistency To process the SAP LUW within the database LUW to ensure data consistency To be able to rollback database changes performed in the same dialog step.
Which statement is true? 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. A database LUW must be placed without an SAP LUW.
What is the root class in the RTTS inheritance tree? CL_ABAP_DATADESCR CL_ABAP_ELEMDESCR CL_ABAP_COMPLEXDESCR CL_ABAP_TYPEDESCR.
Which statements are true regarding ABAP inheritance? (4) The static constructor can be overwritten as part of inheritance. The instance constructor can be overwritten as part of inheritance. Overloading allows a method to have several definitions with different signatures. Static constructors do not need to call the superclass’s constructor. Instance constructors must call the superclass’s constructor. Polymorphism requires the developer to specify which method to use with inheritance. You can access the superclass component with the prefix SUPER->. .
What are characteristics of a hashed internal table? (2) It can be accessed using the key. It must have a unique key. It can have a non-unique key. It can be accessed using the index.
Which rules do you have to consider when working with pooled tables? (2) An append structure can be created Only key fields should be used in WHERE condition Only key fields should be used in ORDER BY clauses All fields can be used in indexes.
You want to create a transparent table. Which of the following must you define to activate the table? (3) The foreign key A short description The MANDT field The primary key A delivery class.
What do you need to consider when creating a secondary index on a table? There are 2 correct answers to this question The index must always be unique The table will be updated more quickly if you create more indexes The most frequently selected fields should be at the first positions in the index The index can be created for specific database systems only.
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 can resort the table with SORT You use APPEND to insert records at the correct position You can read the records by index or key.
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? There are 2 correct answers to this question. Create an append structure and add ZZPRICE to it. Insert ZZPRICE at the end of the table Add ZZPRICE to the customizing include for the table Insert ZZPRICE into an SAP structure for the table.
Which actions release a database lock? There are 7 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 An “/n” in the command field A call to a function module A CALL TRANSACTION A SUBMIT.
Which actions release a lock object (with a default value for _SCOPE)?(5) The display of a dialog message type A An “/n” in the command field A call to a function module ROLLBACK WORK DEQUEUE_/ he display of a dialog message type E A CALL TRANSACTION A SUBMIT COMMIT WORK The display of an SAP screen.
There are 2 correct answers to this question. Direct context mapping External context mapping Dynamic context mapping Static context mapping.
Report abuse Consent Terms of use