Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONMini 1

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Mini 1

Description:
MY TEST1

Author:
B
(Other tests from this author)

Creation Date:
09/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:
You have 2 objects: O1 of type class C1 and O2 of type class C2. Class C2 is a subclass of class C1. Which of the following statements implements an up cast? Please choose the correct answer. MOVE O1 ?TO O2. MOVE O1 TO O2. O1 = O2. O2 ?= O1.
What is mandatory for automatic data transport between a variable and an input field on a classical screen (dynpro)? Please choose the correct answer. The variable must be declared using the TABLES statement. The variable must be declared using the DATA statement. The property OUTPUT of the input field must be set. The name of the variable and the name of the input field must be identical.
What is unique about a functional method? There are 5 correct answers to this question. It can contain a changing parameter. It can contain an importing parameter. It can contain an exporting parameter. It can be used in logical expressions. It must contain a returning parameter. It can be used in SELECT statements. It must be a singleton.
Which of the following features do you have to consider when you use shared objects? There are 3 correct answers to this question. Data is saved as attributes of objects Data is saved as tables of objects Memory bottlenecks result in runtime errors and have to be caught Concurrent read accesses are supported Concurrent write accesses are supported.
Which of the following interface technologies are available in SAP systems? There are 3 correct answers to this question. RFC Ethernet ODBC HTTP OLE.
You have written a method implementation containing the following access to an internal table defined as a changing parameter of the method. READ TABLE ct_itab INTO cs_struc INDEX 1. What are the possible type definitions for parameter ct_itab? There are 3 correct answers to this question Sorted Table Index Table Any Table Standard Table Hashed Table.
Which components belong to an elementary search help? There are 2 correct answers to this question. Fixed values Import / export parameters Attachment to a field Selection method.
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 … INNER JOIN… SELECT SUM (sales) SELECT SINGLE.
Where should the labels for fields be stored? Please choose the correct answer. Domain Structure Data element Field Table.
Which of the following statements regarding search helps are true? There are 3 correct answers to this question. You can use a maintenance view for the search help selection method. Help views can also be used for the selection method for search help. You can use transparent tables for the search help selection method. You can use a database view for the search help selection method.
Which statements are considered obsolete and cannot be used in ABAP Objects? Please select all the correct answers that apply. TABLES DATA ... TYPE ... OCCURS DATA ... BEGIN OF ... OCCURS INFOTYPES RANGES LEAVE ON CHANGE OF SEARCH LOOP AT dbtab.
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. Add ZZPRICE to the customizing include for the table Insert ZZPRICE at the end of the table Create an append structure and add ZZPRICE to it. Insert ZZPRICE into an SAP structure for the table.
You are asked to enhance the GUI status of an SAP standard application. How do you identify which menu exit function code you can use? Please choose the correct answer. It starts with an ampersand (&). It starts with a plus (+). It starts with an asterisk (*). It starts with a dollar ($).
Which of the following predefined ABAP types is incomplete? Please choose the correct answer. F STRING XSTRING P.
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. 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. 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 OTHERS option.
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? Please choose the correct answer. Set the function code assigned to the Cancel button to CANCEL and handle it in a module with the addition AT EXIT-COMMAND. Use the LOOP AT SCREEN. ... ENDLOOP statement to set the "required" property of the input fields to zero. Assign function type E to the Cancel button and handle it in a module with the addition AT EXIT-COMMAND. Set the function type assigned to the Cancel button to S and handle it in a module with the addition AT EXIT-COMMAND.
ABAP is a programming language that… There are 4 correct answers to this question. Separates program code from language text. Controls the business logic. Executes on all three levels of the three-tier architecture. Interacts with the user. Processes and formats data.
Which of the following statements regarding the event AT SELECTIONSCREEN ON HELP-REQUEST FOR <FIELD> is correct? Please choose the correct answer. None of the above. This 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. This 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. This event will display (F1) help for the input field on the selection screen.
You defined data reference z1 generically. Which statement would you use to access the content of the referenced variable? Please choose the correct answer. Assign z1 to <fs> Assign (z1) to <fs> Get reference of z1 into wa Assign z1->* to <fs>.
If you are using external debugging (debugging of HTTP and RFC requests, which arrive in your ABAP system), what will the Debugger do? Please choose the correct answer. Do not stop when the external breakpoint is reached. Always stop when the external breakpoint is reached. May or may not stop, depending on external factors. Never stop; external breakpoints operate on users other than your own.
Which of the following is correct? Please choose the correct answer. 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. The screen attributes can be modified in the PROCESS BEFORE OUTPUT and PROCESS AFTER INPUT event blocks.
Which of the followings components are part of SAP NetWeaver AS ABAP version 7.1x and higher? There are 2 correct answers to this question. SAP GUI for Java Internet Communication Manager (ICM) Software Deployment Manager (SOM) Message Server.
Which of the following is a true statement? There are 2 correct answers to this question. An access key is required to modify SAP repository objects. An access key is required to enhance an SAP application using a user exit. An access key is required to implement an implicit enhancement point. An access key is required to implement business add-ins.
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. Create an event that returns the instance of the class. Define the class as abstract. Define the instantiation of the class as private. Save the instance of the class in a static attribute.
Which action on the underlying dictionary objects triggers a database table conversion? Please choose the correct answer. Reducing the size of the field. Inserting an APPEND structure Inserting a field of type reference Changing the order of non-key fields.
Which of the following can you do with the SAP code inspector? Please choose the correct answer. Perform static code checks Monitor runtime behavior Monitor background tasks Analyze runtime data.
Your colleague has asked you to analyze an ABAP program that does not behave correctly when a button is pressed on the initial screen. You want to start the Debugger when the button is pressed so that you can perform your analysis. What system command do you type in the command field? Please choose the correct answer. /h /hx /n Jdbg.
What is the maximum number of watchpoints that can exist at one time? Please choose the correct answer. No limit 10 6 8.
How do you add fields to an SAP-delivered transparent table without modification? Please choose the correct answer. Define a structure containing the new fields and include it in the table definition. Create an append structure containing the new fields. Use the database utility to enhance the definition on the database directly. Add the new fields to the table definition.
Which of the following rules must you follow when you create a static constructor? There are 2 correct answers to this question. You must name the method CONSTRUCTOR. You must define the method as pubic. You CANNOT define parameters. You can define class-based or classic exceptions.
Which of the following ABAP statements throws an error at the syntax check? Please choose the correct answer. DATA variable(5) TYPE t. DATA variable(5) TYPE n. DATA variable DATA variable(5) TYPE p.
You are writing a program that uses ABAP class. Which components of the class can you create directly from the program? Please choose the correct answer. Only protected components Only public components All components Only private components.
What does a view do? There are 4 correct answers to this question. Contains windows Can be contained in a window Contains other views If entered by an inbound plug, can cause an event handler method to be called Contains a view controller.
Which of the following program types can contain screens? There are 3 correct answers to this question. Function groups Executable programs Module pools Class pools Interface pools.
In an ABAP program, you to assign an initial value to an elementary data object when you define it. Which addition must you use? Please choose the correct answer. OBLIGATORY DEFAULT READ-ONLY VALUE.
What is the best order to provide an event handler for an ALV? Please choose the correct answer. Write the handler, register for the event, create the ALV, display the ALV Write the handler, create the ALV, register for the event, display the ALV Create the ALV, write the handler, register for the event, display the ALV Register for the event, write the handler, create the ALV, display the ALV Write the handler, create the ALV, display the ALV, register for the event.
Which of the following are true statements? There are 3 correct answers to this question. Reference data types can be used to define the data type of the data element. You can also select predefined data types 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. Field labels are defined for the domain.
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 - data type def, ghi ,xyz - data objects abc, xyz - data type def, ghi - 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.
You write a report that displays mass data in a table. You decide to use the ALV Grid control (class CL_GUI_ALV_GRID) instead of a classical list display with WRITE statements. Which of the following functions can you offer to the user without doing any specific programming? There are 2 correct answers to this question. Convert currency amount columns Change column width and sequence Display details by double-clicking on a row Sort and filter the data by any column.
Which parameter types can be used in the signature of a functional method? There are 2 correct answers to this question. EXPORTING CHANGING RETURNING IMPORTING.
Report abuse Consent Terms of use