Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONMini2

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Mini2

Description:
My Test2

Author:
Basit304
(Other tests from this author)

Creation Date:
10/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:
Where can you set the GUI status and the GUI title for a classical screen (dynpro)? Please choose the correct answer. In the properties of the related header UI element In a module called from PAI of the screen In the attributes of the screen In a module called from PBO of the screen.
Which of the following ABAP code lines is valid? There are 3 correct answers to this question. DATA gc_mantr TYPE mantr DEFAULT ‘100’ PARAMETERS p_mantr TYPE mantr DEFAULT ‘100’ CONSTANTS gc_mantr TYPE mantr VALUE ‘100’ STATICS s_mantr TYPE mantr VALUE ‘100’ SELECT-OPTIONS s_mantr TYPE mantr DEFAULT ‘100’.
In an ABAP program you have the following code sequence: DATA var TYPE n LENGTH 1. FIELD –SYMBOLS <fs> TYPE c ASSIGN var TO <fs> CASTING Which type is used to cast the assigned memory area? Please choose the correct answer. The type of var The default type I The default type STRING The type of <fs>.
In which modularization units can you use parameters? There are 3 correct answers to this question. Function modules Methods Dialog modules such as PBO modules Subroutines Event blocks such as START-OF-SELECTION.
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. Enter the name of a data object in the Parameter ID attribute of the screen field Use the GET statement in the program to transport the data from the screen field Use a MOVE statement in a PAI module to copy the data to a data object Define a data object in the program with the same name as the screen field.
Where can you define global data types that are visible system-wide? There are 3 correct answers to this question. In the ABAP Dictionary In a function module In a global class In a method of a global class In a global interface.
The software component for a customer package can be... Please choose the correct answer. Any SAP software component (i.e., SAP_APPL, SAP_BASIS, SAP_HR, etc.) HOME Database layer Application Layer.
How many work areas are available in the Debugger? Please choose the correct answer. 15 9 7 12.
Which of the following predefined data types are character types? There are 3 correct answers to this question. N T D P X.
You write a report that displays mass data in a table using the ALV Grid Control. Which of the following functions can you offer to the user without doing any specific programming? There are 2 correct answers to this question. Sort and filter the data by any column Display details by double-clicking on a row Convert currency amount columns Change column width and sequence.
Which boundary conditions lead to improved access time to an internal table? There are 3 correct answers to this question. Fully qualified key for sorted tables Left justified part of key for sorted tables Index access for hashed tables Left justified part of key for hashed tables Index access for standard tables.
You want to translate dynamic text in a web dynpro. From which abstract class should you inherit? Please choose the correct answer. CL_WD_COMPONENT_SERVICES CL_WD_CONFIGURATION_MODEL CL_WD_CONTEXT_SERVICES CL_WD_COMPONENT_ASSISTANCE.
You have created table ZTAB and you want to create a foreign-key relationship to table SAPTAB. Under which condition is this possible? Please choose the correct answer. The check field in ZTAB must have a data element that does NOT refer to a domain. The check field in ZTAB must have the same domain as the corresponding field of check table SAPTAB. The check field in ZTAB must have the same ABAP Dictionary type as the corresponding field of check table SAPTAB. The check field in ZTAB must have the same name as the corresponding field of check table SAPTAB.
What are the prerequisites when creating an append structure for a standard SAP table? There are 2 correct answers to this question. The fields in the append structure should star with YY or ZZ The table must be copied before the append structure can be created The table cannot have any fields of type FLTP The enhancement category of the table is NOT set to ‘Not enhacable’.
The Internet Communication Manager (ICM)… Please choose the correct answer. Allows SAP NetWeaver Application Server to process HTTP requests. Can not replaced SAP ITS. Replaced SAP ITS. Allows the ABAP stack and the Java stack to exchange data.
What are the advantages of creating a database view to implement a join, instead of formulating the join directly in an Open SQL SELECT statement? There are 2 correct answers to this question. A database view can be reused in other programs An outer join can only be implemented in a database view A secondary index can be created for a database view A database view can be buffered.
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. 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. All work processes have the same structure. It is possible to have multiple enqueue work processes on an SAP NetWeaver Application Server. All work processes communicate with the database. A work process can communicate directly with an external system through a Remote Function Call. All work processes communicate with the dispatcher.
What is the difference between the INITIALIZATION and AT SELECTION-SCREEN OUTPUT events? Please choose the correct answer. - INITIALIZATION can overwrite the default value of a PARAMETERS field - AT SELECTIION-SCREEN OUTPUT can overwrite the default values of a PARAMETERS field - INITIALIZATION cannot change pushbutton texts - AT SELECTION-SCREEN OUTPUT can change pushbutton texts - INITIALIZATION can change the properties of the screen fields - AT SELECTION-SCREEN OUTPUT cannot change the properties of the screen field - INITIALIZATION is only processed once. - AT SELECT-SCREEN OUTPUT can be processed multiple times.
What is data binding? Please choose the correct answer. Connecting a context node in one controller to a context node in another controller Connecting the values of user interface elements to the context attributes of the corresponding controller Connecting an outbound plug on one view to the inbound plug of another view Connecting one Web Dynpro component to another Web Dynpro component.
Which of the following statements dynamically changes the data type of field z1? Please choose the correct answer. Assign z1 to <fs> casting Unassign <fs> Assign z1 to <fs> Move z1 to <fs>.
How can you declare an internal table using the transparent table A as its line type? Please choose the correct answer. DATA gt_itab TYPE a. DATA gt_itab TYPE LINE OF a. DATA gt_itab TYPE REF TO a. DATA gt_itab TYPE TABLE OF a.
Is it possible to have multiple active implementations of business add-ins at a time? There are 2 correct answers to this question. It can have a multiple active implementation. It cannot have a multiple active implementation. It can have multiple active implementations if the Multiple use checkbox is selected. It can have multiple implementations if the Filter-Depend. checkbox is selected.
The following piece of code is used DATA: def TYPE abc, Ghi LIKE xyz. Which of the four elements are data types and which are data objects? Please choose the correct answer. abc, xyz - data type def, ghi - data objects abc - data type def, ghi ,xyz - data objects abc - data type def, ghi - data objects xyz - data type or data objects def, ghi - data objects abc, xyz - data type or data object.
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. 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. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option.
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.
Which of the following are incorrect statements? There are 2 correct answers to this question. TYPES: Str TYPE STRING LENGTH 20. TYPES: date_ty TYPE D LENGTH 10. TYPES: carrid_ty LIKE spfli-s-carr_id. TYPES: werks TYPE C LENGTH 4.
What parameters can you set when you run the Code Inspector? There are 3 correct answers to this question. Object set name Inspection name Work process name Check variant name Background job name.
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 Change the name Create several implementations Redefine the implementation.
What can be implemented using an implicit enhancement option? There are 3 correct answers to this question. Overwrite methods for SAP function modules Additional exceptions in SAP function modules Overwrite methods for global SAP classes Additional parameters in SAP function modules Additional attributes for global SAP classes.
What options do you have when setting a watchpoint? There are 2 correct answers to this question. Stop at predefined conditions for all variables. Stop at predefined conditions for a specific variable. Stop at any change of a specific variable. Stop at any change of all variables.
Which of the following statements are correct? There are 4 correct answers to this question. Static methods can be defined in both the public and private visibility section of the class. None of the above You can call private methods within the public methods without reference to the object or class. Class methods assigned to the public visibility section can be accessed outside the class using the static component selector and the class name. Only public methods can be addressed outside the class.
Which of the following are true statements? There are 3 correct answers to this question. You can also select predefined data types to define the data type of the data element. Field labels are defined for the domain. 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. Reference data types can be used to define the data type of the data element.
What data type you can create in the ABAP Dictionary? Please choose the correct answer. Type group Structure Secondary index Lock object.
Which of the following is a true statement? There are 3 correct answers to this question. A package can be nested. Packages use interfaces and visibility to make their elements visible to other packages. The transport layer is a mandatory input field for the package. All customer repository objects have to be assigned to a package.
An executable ABAP program contains a standard selection screen and uses the event blocks AT SELECTION SCREEN, AT SELECTION-SCREEN OUTPUT, INITIALIZATION, START-OFSELECTION. In which sequence will ABAP runtime call these event blocks? Please choose the correct answer. 1. AT SELECTION-SCREEN OUTPUT 2. INITIALIZATION 3. AT SELECTION-SCREEN 4. START-OF-SELECTION 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. AT SELECTION-SCREEN 4. START-OF-SELECTION 1. INITIALIZATION 2. AT SELECTION-SCREEN 3. AT SELECTION-SCREEN OUTPUT 4. START-OF-SELECTION 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. START-OF-SELECTION 4. AT SELECTION-SCREEN.
Which message types behave the same regardless of the context in which they are called? There are 2 correct answers to this question. X S A I E W.
Which prerequisites must be fulfilled before a repository object can be transported? There are 3 correct answers to this question. A transport layer must be assigned to the package. An application component must be assigned to the repository object. An inactive version of the repository object must exist. The repository object must be assigned to a package. The repository object must be assigned to a change request.
Where do you create online documentation ((F1) help) for fields on the screen? Please choose the correct answer. Table Data element Domain Field Structure.
You created a class by inheriting from a superclass. The superclass contains a public instance method do_something. You want to redefine method do_something. What must you do? Please choose the correct answer. Leave the signature of the method unchanged. Call the implementation in the superclass. Declare the method FINAL. Change the visibility of the method to PROTECTED.
Which comparison operators can you use in a logical expression related to the WHERE clause of the SELECT statement? There are 3 correct answers to this question. GT (greater than) LIKE (fits pattern) EQ (equals) CP (covers pattern) CO (contains only).
Report abuse Consent Terms of use