Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONTEST PART 3 740

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
TEST PART 3 740

Description:
SAP ABAP 740

Author:
AVATAR

Creation Date:
10/10/2022

Category:
Others

Number of questions: 78
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
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 Standard Table Sorted Table Any Table Hashed Table Index Table.
Which type of view cannot be used in a search help? Please choose the correct answer. Database view Help view Candidates key view Maintenance view.
What is the purpose of the enqueuer work process? Please choose the correct answer. Note: Answers to this question are not verified by our experts, please study yourself and select the appropriate answers. It processes logical locks requests. It processes requests triggered by an active user. It processes requests for a print output It processes update requests.
What can you change in the ABAP Debugger? Please choose the correct answer. Content of an internal table Value of a reference variable Definition of a structure Value of a constant.
You are creating an inspection using the Code Inspector. Which entities can you select for inspection? There are 3 correct answers to this question. Contents of a transport request Contents of a package Contents of an object set Contents of a single object Contents of named user's objects.
Which enhancements can provide a screen exit? There are 3 correct answers to this question. Explicit enhancement sections New BAdIs Classic BAdIs Customer exits Explicit enhancement points.
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 fields to an SAP database table To add code to a standard SAP program To change code in a standard SAP program.
Compared to a predefined ABAP type what additional properties can be assigned to a domain? There are 3 correct answers to this question. Value tables Parameter IDs Fixed values Search helps Conversion exits.
Which of the following is a true statement? There are 2 correct answers to this question. An access key is required to implement an implicit An access key is required to implement business add-ins. An access key is required to enhance an SAP application using a user exit. An access key is required to modify SAP repository objects.
Which data types are incomplete ABAP standard data types? There are 3 correct answers to this question. N I C F P.
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 state_changed event. The t_table type. The gc_const constant.
Each component has an interface; of what does this interface consist? There are 2 correct answers to this question. Interface controller Interface context Data Container Interface view.
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 p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE p. DATA: r type p, a type iVALUE 201, b type iVALUE 200, c type i. 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 f.
What are some of the new features of Open SQL in SAP NetWeaver 7.5? There are 2 correct answers to this question. String expressions CASE expressions Intersection Full Join Tùy chọn 2.
What is the difference between a Unicode and non-Unicode program? Please select all the correct answers that apply. Byte-type data objects cannot be compared to character-type data objects. 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.
What is the best order to provide an event handler for an ALV? Please choose the correct answer. Write the handler, create the ALV, display the ALV, register for the event Write the handler, create the ALV, register for the event, display the ALV Register for the event, write the handler, create the ALV, display the ALV Write the handler, register for the event, create the ALV, display the ALV Create the ALV, write the handler, register for the event, display the ALV.
Which of the following statements are correct? There are 3 correct answers to this question. You can only specify default values for the LOW and HIGH fields of the SELECT-OPTIONS input field. The SELECT-OPTIONS statement creates an internal table with a header line. The internal table is also known as the selection table. The structure of the selection table created with SELECT-OPTIONS has four components: SIGN, OPTION, LOW, and HIGH. You can use the addition NO-DISPLAY to hide the input field on the selection screen.
Which of the following actions can you performing both the ABAP Editor and in the ABAP Debugger? Please choose the correct answer. Create a watchpoint for a specific variable. Create a breakpoint for a specificline. Create a breakpoint for a specific statement. Create a breakpoint for a specific message. Tùy chọn 2.
Using the screen system table, what can you modify through a LOOP AT SCREEN … ENDLOOP construct? Please choose the correct answer. Function code of buttons Attributes of screen elements Values of screen elements Screen status.
You define database view A and maintenance view B in the ASAP Dictionary. What restrictions apply to these views? There are 2 correct answers to this question. The join type of both A and B is an inner join The tables joined in B must have foreign key relationships. The tables joined in A must have foreign key relationships. Only A can be used in the FROM clause of a SELECT statement.
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. Assign function type E to the Cancel button 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. Set the function code assigned to the Cancel button to CANCEL 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.
Which additions to the PARAMETERS statement can you use to fill the input field on the selection screen with a suggested value? There are 2 correct answers to this question. DEFAULT MODIF ID VALUE-CHECK MEMORY ID.
You want to display a dialog box in your ABAP program. Which statement do you use? Please choose the correct answer. CALL SCREEN 200. SET SCREEN 200. CALL SCREEN 200 STARTING AT 5 5. WINDOW 200 STARTING AT 5 5.
Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question. XSTRING STRING DECIMALS DECFLOAT34 FLOAT.
FORM routines (subroutines) can be used in which program types? There are 4 correct answers to this question. Function groups Subroutine pools Interface pools Type groups Class pools Module pools Executables.
Which does the field catalog allow you to do? There are 3 correct answers to this question. Add a field to the display Change the title of a column Produce a striped pattern for the display lines Change the display order of a column Specify the sort order of the display table.
You enhance an SAP standard global class by defining a post-method for an SAP method. The original SAP method has an EXPORTING parameter named PAR 1. What type of parameter is PAR 1 in the post-method? Please choose the correct answer RETURNING IMPORTING CHANGING EXPORTING.
In which of the following source code blocks can you define local data objects? There are 3 correct answers to this question Note: Answers to this question are not verified by our experts, please study yourself and select the appropriate answers. Function module Static method Subroutine PBO module LOAD-OF-PROGRAM.
You want to loop over an internal table without copying each table row to a work area. How can you achieve this using a field symbol? Please choose the correct answer. Note: Answers to this question are not verified by our experts, please study yourself and select the appropriate answers. LOOP ...INTO <field_symbol> ...ENDLOOP. LOOP ... REFERENCE INTO <field_symbol> ... ENDLOOP. LOOP ... INTO <field_symbol> TRANSPORTING ... ENDLOOP. LOOP ...ASSIGNING <field_symbol> ...ENDLOOP.
Which of the following variables is the self-reference variable in ABAP OO? Please choose the correct answer. SUPER ME SENDER THIS.
What are some of the advantages of using OPEN SQL? There are 2 correct answers to this question All standard SQL commands can be used Syntax is checked at design time It can be used with any supported DBMS The application server buffer is NOT used.
Which of the following statements can you use to setup checkpoints in an ABAP program? There are 3 correct answers to this question. ASSERT BREAK LOG-POINT BREAK_POINT CHECK.
You want to translate dynamic text in a web dynpro. From which abstract class should you inherit? Please choose the correct answer. CL_WD_CONFIGURATION_MODEL CL_WD_COMPONENT_ASSISTANCE CL_WD_CONTEXT_SERVICES CL_WD_COMPONENT_SERVICES.
The order of fields for a transparent table in the database… Please choose the correct answer. Is allowed to be different than the ABAP Dictionary. Is created in the order of the ABAP Dictionary. Is created in the order of the Data Dictionary. Needs to match the ABAP Dictionary.
Which statement ends a screen sequence and starts from initial screen? Please choose the correct answer. SET SCREEN 0 LEAVE TO SCREEN LEAVE SCREEN CALL SCREEN.
What ABAP Dictionary object allows you to define fixed values? Please choose the correct answer. View Data element Lock object Domain.
How many kinds of internal tables are supported in the ABAP language? Please choose the correct answer. 1 2 5 3.
When are the changes to the VB* table transferred to the database? Please choose the correct answer. When the update work process is executed When the main program is executed When an update function module is executed When the enqueue work process is executed.
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. Always stop when the external breakpoint is reached. Never stop; external breakpoints operate on users other than your own. May or may not stop, depending on external factors. Do not stop when the external breakpoint is reached.
Which are the functions of the ABA P dispatcher? There are 3 correct answers to this question. 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 integrates the presentation layer. It requests the data from the database or the buffers.
Which of the following can you use to enhance SAP standard tables and structures with fields? There are 2 correct answers to this question. Append structures Customizing includes Field exits Append search helps.
When is a foreign key check performed on an input/output field? Please choose the correct answer. If the field refers to the dictionary field for which a search is defined If the field refers to the dictionary field for which a append search is defined If the field refers to the dictionary field for which a check table is defined If the field refers to the dictionary field for which a value help is defined.
Which hook method exists for all controller types? Please choose the correct answer. wddoonclose( ) wddobeforenavigation( ) wddoinit( ) wddoonopen( ).
Which SELECT statement will always bypass the SAP table buffers? Please choose the correct answer. SELECT … SINGLE … SELECT … ENDSELECT. SELECT … FOR UPDATE … SELECT … INTO TABLE ….
How do you create lock objects and lock modules for use in ABAP programs that access the database? Please choose the correct answer. Use the Function Builder to create the lock modules and the lock objects Use the ABAP dictionary to create the lock objects. Use the function builder to create the lock modules Use the ABAP Dictionary to create the lock objects. The lock modules are created automatically Use the Function Builder to create the lock modules. The lock objects are created in the program logic.
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 CANNOT define parameters. You must define the method as pubic. You can define class-based or classic exceptions.
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 private components Only public components All components.
What can be exposed in the component interface of a Web dynpro component? Please choose the correct answer. Custom methods of the component controller Public attributes of WINDOW controllers Standard hook methods of the component controller Context nodes of WINDOW controllers.
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 Access An authorization role An authorization object.
Which statements are true? There are 5 correct answers to this question. 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 Object Model can define a sort criteria for initial display. The ALV Grid requires a table refresh after programmatically changing the ALV. The ALV Grid can define a sort criteria for initial display.
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. INITIALIZATION START-OF-SELECTION AT SELECTION-SCREEN END-OF-SELECTION.
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 the same name as the corresponding field of check table SAPTAB. 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 a data element that does NOT refer to a domain. The check field in ZTAB must have the same ABAP Dictionary type as the corresponding field of check table SAPTAB. Tùy chọn 2.
When starting the Debugger, what circumstance causes the runtime error DEBUGGING_NOT_POSSIBLE? Please choose the correct answer. Starting a non-exclusive mode in a productive system When more than five sessions are already associated with this login user When the number of debugging sessions on the server exceeds the value defined by the profile parameter rdisp/wpdbug_max_no When more than six sessions are already associated with this login user.
The Internet Communication Manager (ICM)… Please choose the correct answer. Allows the ABAP stack and the Java stack to exchange data. Can not replaced SAP ITS. Allows SAP NetWeaver Application Server to process HTTP requests. Replaced SAP ITS.
In which modularization units can you use parameters? There are 3 correct answers to this question. Function Dialog modules such as PBO modules Subroutines Event blocks such as START-OF-SELECTION Methods.
You have located a new (kernel) Business Add-in(BAdI) in an SAP standard application? What must you create to implement the BAdI, and in which order? Please choose the correct answer. Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers. - Enhancement Project - BAdI Implementation - BadI Implementation - Enhancement Project - Enhancement Spot Implementation - BAdI Implementation - BAdI Implementation - Enhancement Spot Implementation.
What can be part of the signature of an instance constructor? There are 2 correct answers to this question Importing parameters Exceptions Exporting parameters Changing parameters.
Which of the following controller types can exist only once in a Web Dynpro component? There are 2 correct answers to this question. Component controller Configuration controller View controller Window controller.
Which of the following transactions are integrated in the ABAP workbench tools? There are 2 correct answers to this question. Class builder (SE24) Overview of job selection (SM37) ABAP editor (SE38) Process overview (SM50).
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 Message Server Internet Communication Manager (ICM) Software Deployment Manager (SOM).
What data type you can create in the ABAP Dictionary? Please choose the correct answer Structure Lock object Type group Secondary index.
Which of the following repository objects can you maintain in the ABAP Workbench? There are 3 correct answers to this question. Transparent tables Function modules Internal tables Module pools Business functions Tùy chọn 2.
You display the content of an internal table using an ALV grid control. The content of the internal table changes during the program. Which CL_GUI_ALV_GRID class method can you use to display the changed content? Please choose the correct answer. REFRESH_TABLE_DISPLAY in module PBO SET_TABLE_FOR_FIRST_DISPLAY in module PAI SET_TABLE _FOR_FIRST_DISPLAY in module PBO REFRESH_TABLE_DISPLAY in module PAI.
Which of the following enhancements calls a customer function module. There are 2 correct answers to this question. Business Add-in (BADIs) Customer exit User exit Business Transaction event.
What can you do with the code inspector? There are 2 correct answers to this question Create your own inspections, object 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 only local inspections, objects sets and check variants.
What are characteristics of a hashed internal table? There are 2 correct answers to this question. It must have a unique key. It can have a non-unique key. It can be accessed using the key. It can be accessed using the index.
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. /n Jdbg /hx /h.
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 reduce the number of intermediate variables You can write compact syntax instead of a long sequence of statements.
A structure has enhancement category 3, can be enhanced (character-type). Which set of elementary types is allowed for the new fields? Please choose the correct answer. C,D,N,X C,D,N,T D,I,string, T F,I,P,X.
You are making changes to a program that already has a transaction code linked to it. Your colleague is testing the transaction in your development system. At what point can the changed version of the program be tested? Please choose the correct answer. When you perform a syntax check on the program When you activate the program When you save the program When you release the transport requests for the program.
You call a lock module. Which exceptions could the lock module raise when a logical lock CANNOT be set? There are 2 correct answers to this question CX_SY_DATA_ACCESS_ERROR SYSTEM_FAILURE CX_SY_OPEN_SQL_ERROR FOREIGN_LOCK.
You always want to check the user authorization for data entered in an input field of a selection screen.Where do you do this? Please choose the correct answer. In the event block AT SELECTION-SCREEN on VALUE-REQUEST In the event block AT SELECTION-SCREEN In the event block AT SELECTION-SCREEN OUTPUT In the event block INITIALIZATION.
Which of the following standard types is numeric? There are 3 correct answers to this question. Decfloat32 F P I.
Which of the following function types in a GUI status are reserved for internal use? There are 2 correct answers to this question. E-EXIT T-TRANSACTION S- SYSTEM H-HELP REQUEST.
What is the result of the following arithmetic operation? DATA: intTYPEI. int=5*(3/10). Please choose the correct answer. 0 2 1.5 1.
What is the Web Dynpro programming model is based on? Please choose the correct answer. Classic Dynpro programming Business Server Pages (BSPs) Internet Transaction Server (ITS) Model View Controller (MVC).
Which components of the class can be accessed in the implementation of a static method in that class? There are 2 correct answers to this question Instance attributes Types Constants All events.
You want to select all the records from a database table where field CITY contains substring ‘BU’ in any position. Which WHERE clause can you use in an Open SQL select statement? Please choose the correct answer. WHERE city LIKE ‘%BU*’ WHERE city LIKE ‘_BU’ WHERE city LIKE ‘*BU*’ WHERE city LIKE ‘%BU%’.
Report abuse Consent Terms of use