Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONCheckPoint2

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
CheckPoint2

Description:
Check point 2

Author:
Basit304
(Other tests from this author)

Creation Date:
19/11/2021

Category:
Others

Number of questions: 81
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
The statements CALL BADI and GET BADI are used for which type of BAdIs? Please choose the correct answer. Classical BAdI None of the above Classical DDic New BAdI.
Which of the following can you define in the technical settings of a transparent table? There are 3 correct answers to this question. Data class Delivery class Size category Table name Buffering type.
Which of the following types of SQL statements always bypass the SAP table buffers? There are 2 correct answers to this question. SELECT … UP TO 1 ROW SELECT SINGLE SELECT … INNER JOIN… SELECT SUM (sales).
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? Please choose the correct answer. START-OF-SELECTION INITIALIZATION AT SELECTION-SCREEN END-OF-SELECTION.
Which of the following function types in a GUI status are reserved for internal use? There are 2 correct answers to this question. H-HELP REQUEST S- SYSTEM T-TRANSACTION E-EXIT.
You want to add a field type CURR to a transparent table. What else must you do? Please choose the correct answer. Create a new field CUKY as a pre-defined type. Create a reference to a field of type CUKY. Add a key fieldof type CUKY. Add a check table that contains a field of type CUKY.
The code of an executable program does NOT contain any event keywords. What event block does the code belong to? Please choose the correct answer. START-OF-SELECTION AT SELECTION-SCREEN INITIALIZATION LOAD-OF-PROGRAM.
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 REF TO a. DATA gt_itab TYPE LINE OF a. DATA gt_itab TYPE TABLE OF a.
Which objects are automatically created when you create a new function group? Please choose the correct answer. A function pool and two function modules A function pool and two include programs A function pool and two subroutine pools A function pool and two module pools.
Each ABAP program that actually contains executable statements… There are 2 correct answers to this question. Is divided into processing blocks. Has declarative statements inside of processing blocks that are considered local. Only assigns executable statements in a processing block to a processing block. Has declarative statements outside of processing blocks that are considered local. 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). Uses event blocks to trigger events in ABAP.
Which statement will interrupt the processing of the current screen and branch to new screen? Please choose the correct answer. SET SCREEN <NNNN> CALL SCREEN <NNNN> LEAVE TO SCREEN <NNNN> None of the above.
A class is defined as follows: CLASS my_class DEFINITION. PUBLIC SECTION. METHODS do_something. EVENTS state_changed. CLASS-METHODS static1. PRIVATE SECTION. TYPES t table TYPE STANDARD TABLE OF t001 WITH NON-UNIQUE DEFAULT KEY. CONSTANTS gc_const TYPE IVALUE 1. ENDCLASS. Which components of the class can static method static1 address directly? There are 2 correct answers to this question. The t_table type. The do_something method. The state_changed event. The gc_const constant.
You create a domain in the ABAP dictionary. How can you use this domain? Please choose the correct answer. To describe the value range of a table field or structure component To define technical properties of data elements To define data objects in ABAP programs To define the data type of a table field or structure component.
Which options do you have to read data from multiple tables while using a SELECT statement? There are 3 correct answers to this question. Nested select statements Nested loop statements Join statements Database views Pooled tables.
Which desktops are part of the new ABAP debugger? There are 3 correct answers to this question. Break./Watchpoints Objects Session Desktop 1 List.
Which of the following actions can be performed in the Process After Input (PAI) processing block? Please choose the correct answer. Set the GUI status of the screen. Set the title bar. Check the function code. Modify screen attributes dynamically.
What can you enhance using BAdIs? There are 3 correct answers to this question. Data elements Menus Screens Database tables Source code.
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question. SPAD SPDD SPAU SPAU_ENH.
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.
What do enhancement spots manage? There are 3 correct answers to this question. Classic BAdIs Explicit enhancement points Implicit enhancement points Explicit enhancement sections New BAdIs.
Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question. DECFLOAT34 XSTRING DECIMALS FLOAT STRING.
You want to read a single line of an internal table using table expression itab[ ...]. How can you identify the line? There are 3 correct answers to this question. Specify a WHERE condition. Specify a free table key. Specify a secondary table key. Specify the line index. Specify a regular expression.
In an ABAP program you have the following code sequence: DATA text TYPE string. DATA Text_ref TYPE REF TO string. DATA data_ref TYPE REF TO data. FIELD-SYMBOLS <fs> TYPE any Text = ‘Content of Data Object’ GET REFERENCE OF text INTO data_ref. Which of the following pieces of code can you use to output the content of variable text? There are 2 correct answers to this question. text_ref ?= data_ref. WRITE text_ref->*. ASSIGN data_ref->* TO<fs> WRITE <fs> GET REFERENCE OF data_ref->* INTO text_ref. WRITE text_ref->*. WRITE data_ref->*.
Which components belong to an elementary search help? There are 2 correct answers to this question. Attachment to a field Selection method Import / export parameters Fixed values.
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. Modify the adapter class Create the BADI implementation Activate the enhancement project Write code for methods.
How can you search for classic Business Add-Ins (BAdIs)? There are 2 correct answers to this question. Search in the application program for the GET BADI statement. Search in the application program for the method GET_ INSTANCE of class CL_EXITHANDLER. Search in the application program for the CALL BADI statement. Search the relevant component in the Implementation Guide (IMG).
An ABAP program processes the following expression: r = a / b + c Which of the following data declarations would cause the runtime environment to use fixed-point arithmetic for the above expression? Please choose the correct answer. DATA: r TYPE f, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE p. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f. DATA: r type p, a type iVALUE 201, b type iVALUE 200, c type i.
How do you use a sorted internal table? There are 2 correct answers to this question. You use APPEND to insert records at the correct position You can read the records by index or key You need to specify a key in the table declaration You can resort the table with SORT.
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. EQ (equals) GT (greater than) CP (covers pattern) LIKE (fits pattern) CO (contains only).
Under which circumstances will the classic Debugger start as the Debugger? There are 2 correct answers to this question. None; the new Debugger will always start as the Debugger. When five modes already exist for this logon session. When the number of debugging sessions exceeds half the number of dialog sessions. When you specify the default as the classic Debugger in the settings of the Object Navigator. If you manually switched to the classic Debugger during your last session.
What is the default selection screen number for the ABAP program? Please choose the correct answer. 1000 None of the above 100 1100.
Which of the following statements create a data object? There are 3 correct answers to this question. TYPES PARAMETERS CLASS-DATA CONSTANTS CLASS.
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 Hashed table Index table.
You created a transparent table and during activation got a warning message "Enhancement category for table missing". What do you have to do to eliminate the warning message? Please choose the correct answer. Select any option other than Not Classified from the enhancement category Change the Data Class and Size category in the technical settings. Provide the correct reference field for the Currency or Quantity field. Select the option Not Classified from the enhancement category.
What does a Web Dynpro component contain? There are 3 correct answers to this question. Multiple views within a window UI elements Component controller A context Exactly one interface controller.
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.
To reserve an area on the screen for an ALV Grid Control, you must do the following: Please choose the correct answer. Create an object (instantiate the object) of the class CL_GUI_ALV_GRID Create an object (instantiate the object) of the class CL_GUI_CUSTOM_CONTAINER Use the Screen Painter Create an object (instantiate the object) of the class CL_SALV_TABLE.
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.
How is an ABAP program with several dialog steps executed? Please choose the correct answer. The program is always executed in just one dialog work process without roll out The ABAP dispatcher takes over the entire execution without assigning any work process. The program is always executed in just one dialog work process with roll out. Usually, dialog steps are assigned to different dialog work processes.
A class is defined as follows: CLASS my_class DEFINITION. PUBLIC SECTION. METHODS do_something. EVENTS state_changed. CLASS-METHODS static1. PRIVATE SECTION. TYPES t table TYPE STANDARD TABLE OF t001 WITH NON-UNIQUE DEFAULT KEY. CONSTANTS gc_const TYPE IVALUE 1. ENDCLASS. Which components of the class can static method static1 address directly? There are 2 correct answers to this question. The do_something method. The t_table type. The state_changed event. The gc_const constant.
To reserve an area on the screen for an ALV Grid Control, you must do the following: Please choose the correct answer. Create an object (instantiate the object) of the class CL_GUI_CUSTOM_CONTAINER Create an object (instantiate the object) of the class CL_GUI_ALV_GRID Create an object (instantiate the object) of the class CL_SALV_TABLE Use the Screen Painter.
What can you do with the code inspector? There are 2 correct answers to this question. Create only local inspections, objects sets and check variants Choose from only the performance, security and user interface check categories Create an object set to represent the programs and objects to be inspected Create your own inspections, object sets and check variants.
Which statements are true? There are 5 correct answers to this question. The ALV Object Model uses a reference to the data table for display. The ALV Object Model requires a table refresh after programmatically changing the ALV. The ALV Grid requires a table refresh after programmatically changing the ALV. The ALV Object Model can define a sort criteria for initial display. The ALV Grid can define a sort criteria for initial display. The ALV Grid uses a reference to the data table for display.
What properties will be set when you define a table type in the ABAP Dictionary? There are 3 correct answers to this question. Change document GET/SET Parameter Primary key Access mode Line type.
Which of the following tasks does the BADI implementing class perform? Please choose the correct answer. Deleting Filtering Inserting Sequencing.
Which desktops are part of the new ABAP debugger? There are 3 correct answers to this question. Break./Watchpoints Objects Session Desktop 1 List.
FORM routines (subroutines) can be used in which program types? There are 4 correct answers to this question. Executables Module pools Function groups Class pools Interface pools Subroutine pools Type groups.
You have been asked by a customer to develop Open SQL code to convert the value of argument "arg" into the ABAP Dictionary type specified. Which SQL syntax do you use to meet this requirement? Please choose the correct answer. CASTING(arg AS type) CAST(arg AS type) CASTING(arg FOR type) CAST(arg FOR type).
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. Web service proxy Transaction code Function module Class method Function group.
Which does the field catalog allow you to do? There are 3 correct answers to this question. Specify the sort order of the display table Add a field to the display Produce a striped pattern for the display lines Change the title of a column Change the display order of a column.
When you define local classes in ABAP, which syntactical sequence must you follow? Please choose the correct answer. PRIVATE SECTION, PROTECTED SECTION, PUBLIC SECTION PUBLIC SECTION, PROTECTED SECTION, PRIVATE SECTION The order is handled automatically. The order doesn’t matter.
Identify the ways to map context structures. There are 2 correct answers to this question. Direct context mapping Static context mapping External context mapping Dynamic context mapping.
To which context object is the attribute LEAD_SELECTION_INDEX related? Please choose the correct answer. Supply function Element Attribute Node.
Which of the following ABAP data types are compatible with the generic character-type CLIKE? There are 3 correct answers to this question. DECFLOAT STRING C XSTRING N.
Which of the elementary data types is deep? Please choose the correct answer. X XSTRING N DECFLOAT34.
Which rules do you have to consider when working with pooled tables? There are 2 correct answers to this question. Only key fields should be used in WHERE condition An append structure can be created Only key fields should be used in ORDER BY clauses All fields can be used in indexes.
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’.
You created a transparent table and during activation got a warning message "Enhancement category for table missing". What do you have to do to eliminate the warning message? Please choose the correct answer. Select any option other than Not Classified from the enhancement category Change the Data Class and Size category in the technical settings. Provide the correct reference field for the Currency or Quantity field. Select the option Not Classified from the enhancement category.
How can you improve the performance when accessing a large data volume database table? Please choose the correct answer. Change the table type in the dictionary. Switch the database table to fully buffered. Define appropriate indexes for the database table. Apply the appropriate data class and size category.
What must before you can create a new transportable function modules? There are 3 correct answers to this question. Module pool Function group Transport request Package Exception class.
What are some of the new features of Open SQL in SAP NetWeaver 7.5? There are 2 correct answers to this question. Intersection CASE expressions Full Join String expressions.
Which components belong to an elementary search help? There are 2 correct answers to this question. Fixed values Attachment to a field Selection method Import / export parameters.
When you add programming logic to your ABAP program that checks authorizations, which of the following do you have to create? There are 2 correct answers to this question. An authorization profile An authorization role An authorization Access An authorization object.
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? Please choose the correct answer. View assembly Data binding Data migration Context mapping.
Which of the following function types in a GUI status are reserved for internal use? There are 2 correct answers to this question. S- SYSTEM E-EXIT H-HELP REQUEST T-TRANSACTION.
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 all subclasses of CL_CUSTOMER From all methods of the class CL_CUSTOMER From all methods of a class to which CL_CUSTOMER grants friendship From any program using the class CL_CUSTOMER.
What can be defined using an implicit enhancement option? There are 3 correct answers to this question. Response: Replacement for SAP function modules Additional exceptions in SAP function modules Additional attributes in global SAP classes Additional parameters in SAP function modules Replacements for global SAP methods.
You want to define data structures to hold two fields with data elements s_carr_id and s_carrname. Which of the following declarations can be used to define this data structure? There are 2 correct answers to this question. TYPES: BEGIN OF gty_flight DATA: BEGIN OF gs_flight, DATA BEGIN OF gs_flight, TYPES: BEGIN OF gs_flight,.
Which of the following capabilities is provided by the Application Layer platform of SAP Netweaver? Please choose the correct answer. Database and operating system abstraction Business process management Master data management Multi-channel access.
Which of the following is a true statement? There are 3 correct answers to this question. Local repository objects can be transported. Client-specific customization objects are assigned to the customizing request. Inactive objects can be transported. Repository objects and cross-client customization objects are assigned to the workbench request. All transportable objects have to be assigned to a package.
Which are the functions of the ABA P dispatcher? There are 3 correct answers to this question. It integrates the presentation layer. It distributes the requests among the work processes. It performs a roll-in and roll-out of user context. It saves the processing requests in request queues. It requests the data from the database or the buffers.
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 Declare a catalog object Set the root object Enable multiple versions of an area root class Call the attach_for_write method of area root class.
A class is defined as follows: CLASS my_class DEFINITION. PUBLIC SECTION. METHODS do_something. EVENTS state_changed. CLASS-METHODS static1. PRIVATE SECTION. TYPES t table TYPE STANDARD TABLE OF t001 WITH NON-UNIQUE DEFAULT KEY. CONSTANTS gc_const TYPE IVALUE 1. ENDCLASS. Which components of the class can static method static1 address directly? There are 2 correct answers to this question. The do_something method. The t_table type. The state_changed event. The gc_const constant.
Which of the following ABAP code lines is valid? There are 3 correct answers to this question. STATICS s_mantr TYPE mantr VALUE ‘100’ PARAMETERS p_mantr TYPE mantr DEFAULT ‘100’ DATA gc_mantr TYPE mantr DEFAULT ‘100’ SELECT-OPTIONS s_mantr TYPE mantr DEFAULT ‘100’ CONSTANTS gc_mantr TYPE mantr VALUE ‘100’.
Which of the following statements are true? There are 2 correct answers to this question. A conversion routine can be assigned to a data element. 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.
Which elementary field types are considered a character type? There are 5 correct answers to this question. N XSTRING I T X C STRING F D.
Identify the types of controller. There are 5 correct answers to this question. Custom controller Component controller Window controller Configuration controller Consumer controller View controller.
What must exist before you can create a new transportable function module? There are 3 correct answers to this question. Function group Change request Module pool Package Type group.
You Created the following ABAP Code: DATA x TYPE REF TO DATA DATA y TYPE REF TO OBJECT ASSIGN x TO <fs> ASSIGN y TO <fs> You want to add a declaration of <fs> to the Code. Which of the Following Declarations are Valid? There are 2 correct answers to this question. FIELD-SYMBOLS <fs> FIELD-SYMBOLS TYPE REF TO DATA FIELD-SYMBOLS <fs> TYPE REF TO ANY FIELD-SYMBOLS <fs> TYPE ANY .
You want to read a single line of an internal table using table expression itab[ ...]. How can you identify the line? There are 3 correct answers to this question. Specify a WHERE condition. Specify a regular expression. Specify a free table key. Specify the line index. Specify a secondary table key.
Which of the following can you use to enhance SAP standard tables and structures with fields? There are 2 correct answers to this question. Field exits Customizing includes Append search helps Append structures.
Report abuse Consent Terms of use