Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONTEST 740 PART 2

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

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:
When starting the Debugger, what circumstance causes the runtime error DEBUGGING_NOT_POSSIBLE? Please choose the correct answer. When more than five sessions are already associated with this login user When more than six sessions are already associated with this login user Starting a non-exclusive mode in a productive system When the number of debugging sessions on the server exceeds the value defined by the profile parameter rdisp/wpdbug_max_no.
You define a database view A and maintenance view B in the ABAP dictionary. What restrictions apply to these views? There are 2 correct answers to this question The tables joined in A must have foreign key relationships Only B can have either a left outer join or an inner join The tables joined in B must have foreign key relationships Only A can be used in the FROM clause of a SELECT statement .
Which of the following are features of the Context in Web Dynpro? There are 2 correct answers to this question Every Web Dynpro controller has multiple Contexts Every Web Dynpro controller has one Context Data is shared between controllers through Context mapping Data is transferred from one Context to another by firing plugs.
Which of the following are incomplete ASAP pre-defined data types? There are 3 correct answers to this question. T N P D x .
Which of the following elements can a string template contain? There are 2 correct answers to this question. String processing statements Literals Functional method calls Function module calls.
Which statement will interrupt the processing of the current screen and branch to new screen? Please choose the correct answer. SET SCREEN <NNNN> None of the above LEAVE TO SCREEN <NNNN> CALL SCREEN <NNNN>.
What is the purpose of implicit enhancement points? Please choose the correct answer. To add code to a standard SAP program To create a secondary index for an SAP database table To change code in a standard SAP program To add fields to an SAP database table.
What must exist before you can create a new transportable function module? There are 3 correct answers to this question. Type group Function group Module pool Package Change request.
Which data types are incomplete ABAP standard data types? There are 3 correct answers to this question. F N P I C.
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_SALV_TABLE Use the Screen Painter 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.
You have created a screen on which the user enters data that is to be inserted into table T1. How do you ensure that the content of field F in table T1 is checked against table T2? Please choose the correct answer. Create a foreign key for the assigned field of field F of table T1 in table T2 and make table T1 the check table. Create a foreign key for the assigned field of field F of table T1 in table T2 and make table T2 the check table. Create a foreign key for field F of table T1 and make table T2 the check table. Create a foreign key for field F of table T1 and make table T2 the foreign key table.
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.
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 implement an implicit enhancement point. An access key is required to implement business add-ins. An access key is required to enhance an SAP application using a user exit.
What is the root class in the RTTS inheritance tree? Please choose the correct answer. CL_ABAP_DATADESCR CL_ABAP_COMPLEXDESCR CL_ABAP_TYPEDESCR CL_ABAP_ELEMDESCR.
Which prerequisites must be fulfilled before a repository object can be transported? There are 3 correct answers to this question. 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. A transport layer must be assigned to the package. The repository object must be assigned to a change request.
Which type of view uses an inner join in a search help? Please choose the correct answer. Candidate key view Database view Maintenance view Help view.
Which of the following structures is created when you use a table type to define one of its components? Please choose the correct answer. Nested structure Deep structure Append structure Flat structure.
What scheduling technique is used by the ABAP debugger dispatcher for processing user requests? Please choose the correct answer. First in , First out Round Robin Shortest First Multiple Queue.
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. 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 Use the GET statement in the program to transport the data from the screen field.
Which of the following program types can contain screens? There are 3 correct answers to this question Interface pools Class pools Function groups Executable programs Module pools.
A view can only be displayed in which circumstances? Please choose the correct answer. It has been embedded in a window. It cannot always be displayed. It can always be displayed. It contains an inbound and outbound plug.
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 multiple implementations if the Filter-Depend. checkbox is selected. 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.
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. /hx Jdbg /n /h.
What happens when an authorization check fails? Please choose the correct answer. A CX_AUTH_FAILED type exception is raised. The program is terminated. The system field SY-SUBRC is set to a value other than zero. A type E message is displayed.
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. Insert ZZPRICE at the end of the table Insert ZZPRICE into an SAP structure for the table Add ZZPRICE to the customizing include for the table Create an append structure and add ZZPRICE to it.
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 DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f. DATA: r TYPE f, 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.
Each ABAP program that actually contains executable statements… There are 2 correct answers to this question. Assigns every executable statement to a processing block regardless of it being in a processing block. Has declarative statements outside of processing blocks that are considered local. Is divided into processing blocks. Has declarative statements inside of processing blocks that are considered local. Uses event blocks to trigger events in ABAP. Can be tested from the ABAP Workbench by pressing (F8).
In which order do you implement a new BAdI? Please choose the correct answer. Create BAdI Implementation + Create Enhancement Spot Implementation Create Enhancement Spot Implementation + Create BAdI Implementation Create Enhancement Project + Create BAdI Implementation Create BAdI Implementation + Create Enhancement Project.
Which of the following ABAP code lines is valid? There are 3 correct answers to this question. PARAMETERS p_mantr TYPE mantr DEFAULT ‘100’ SELECT-OPTIONS s_mantr TYPE mantr DEFAULT ‘100’ DATA gc_mantr TYPE mantr DEFAULT ‘100’ CONSTANTS gc_mantr TYPE mantr VALUE ‘100’ STATICS s_mantr TYPE mantr VALUE ‘100’.
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.
What must you specify in a Unicode system when opening a file in TEXT MODE? Please choose the correct answer. The byte order The ENCODING addition The code page The Layer page.
Each ABAP program starts with an introductory statement. Which statements are correct? There are 2 correct answers to this question. The introductory statement must never be modified. The introductory statement must be the first line in the program. The introductory statement must be the first statement in the program. The introductory statement can be modified.
Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question. FLOAT XSTRING DECFLOAT34 STRING DECIMALS.
Which statements are true about a class that has granted friendship to another class? There are 4 correct answers to this question. The friend has access to protected attributes. All classes the friend has granted friendship access status to also have the same access. All classes that inherit from the friend (subclasses) also have the same access. The friend has access to private attributes. The friend has access to public attributes.
You are writing an ABAP declaration using the data element S_CARR_ID. Which of the following statements correctly define a data object? There are 2 correct answers to this question CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’ DATA gv_id LIKE s_carr_id DATA gv_id TYPE s_carr_id DATA gv_id TYPE s_carr_id DEFAULT ‘QF’.
Which of the following predefined data types are character types? There are 3 correct answers to this question T D N X P.
Which are the functions of the ABA P dispatcher? There are 3 correct answers to this question. It performs a roll-in and roll-out of user context. It integrates the presentation layer. It saves the processing requests in request queues. It requests the data from the database or the buffers. It distributes the requests among the work processes.
What must you do to define a database view using the ABAP Dictionary? There are 3 correct answers to this question. Choose the database tables from where the view acquires data. Define the join conditions between the tables. Define selection criteria for the view. Define buffering settings for the underlying database tables. Choose the fields from the tables that should be part of the view.
What are some of the new features of Open SQL in SAP NetWeaver 7.5? There are 2 correct answers to this question. Intersection String expressions Full Join CASE expressions.
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? There are 3 correct answers to this question. A CATCH statement to capture the event A handler class A handler method for the event A method to read the registration table A SET HANDLER statement to register the handler to the event.
When are the changes to the VB* table transferred to the database? Please choose the correct answer. When the enqueue work process is executed When an update function module is executed When the main program is executed When the update work process is executed.
Which of the following predefined ABAP types is incomplete? Please choose the correct answer. XSTRING P STRING F.
Which screen in the ABAP Dictionary allows you to log data changes to the table? Please choose the correct answer. Utilities -> Database Object -> Database Utility Delivery and Maintenance tab Technical Settings Attributes tab Utilities -> Settings.
How can you search for classic Business Add-Ins (BAdIs)? There are 2 correct answers to this question. Search the relevant component in the Implementation Guide (IMG). Search in the application program for the GET BADI statement. Search in the application program for the CALL BADI statement. Search in the application program for the method GET_ INSTANCE of class CL_EXITHANDLER.
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 data objects in ABAP programs To define the data type of a table field or structure component To define technical properties of data elements.
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 the same ABAP Dictionary type 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.
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’.
Which of the following statements regarding the event AT SELECTIONSCREEN ON HELP-REQUEST FOR <FIELD> is correct? Please choose the correct answer. 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. 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. None of the above.
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. May or may not stop, depending on external factors. Never stop; external breakpoints operate on users other than your own. Always stop when the external breakpoint is reached. Do not stop when the external breakpoint is reached.
Which controller types can exist within a Web Dynpro component? There are 3 correct answers to this question. Component controller Application controller Window controller View controller User controller.
In which modularization units can you use parameters? There are 3 correct answers to this question. Subroutines Methods Event blocks such as START-OF-SELECTION Function modules Dialog modules such as PBO modules.
What features are provided by the database interface? There are 3 correct answers to this question. Access to SAP table buffers Database independence of application programs Syntax check of Native SQL commands Conversion of Open SQL statements from ABAP statements into the corresponding database statements Data consistency check using foreign key relationships.
How can Unicode checks be made? There are 2 correct answers to this question. Cannot be enforced In any system (after release 6.10) by specifying the program has Unicode checks active Only in a Unicode system or as part of a conversion to a Unicode system By running Transaction UCCHECK.
You create a function group ZATP. What is the name of the corresponding main program? Please choose the correct answer. SAPFZATP SAPLZATP ZATP SAPMZATP.
Which of the following regarding search helps is a true statement? Please select all the correct answers that apply. The interface for the search help is defined by the IMP (import) and EXP (export) flag of the search help parameter. The LPos parameter defines the position of the search help parameter in the search hit list. The SPos parameter defines the position of the input field on the dialog screen. The text table for the selection method is automatically populated if the text table is attached to the database table being used as the selection method.
When does SAP recommend that you use a full buffering type for a database table? Please choose the correct answer. When the table is small and frequently written When the table is small and seldom written When the table is large and seldom written When the table is large and frequently written.
A screen has the following PAI flow logic: PROCESS AFTER INPUT FIELD A MODULE check_A FIELD B MODULE check_B CHAIN. FIELD: C, D MODULE check_CD ENDCHAIN CHAIN. FIELD: C, B. MODULE check_CB ENDCHAIN What happens if the application sends a type E message during the check_CB module processing? Please choose the correct answer. The screen is displayed again without processing the PBO flow logic. Only fields B and C are ready for input The screen is displayed again and the PBO flow logic is processed. Only fields B and C are ready for input. The screen is NOT displayed again. Processing terminates and the user must restart the ABAP program. The screen is displayed again without processing the PBO flow logic. All fields are ready for input.
Where can you set the GUI status and the GUI title for a classical screen (dynpro)? Please choose the correct answer. In a module called from PBO of the screen In the properties of the related header UI element In the attributes of the screen In a module called from PAI of the screen.
What does Software Layer Aware Debugging allow you to do? There are 3 correct answers to this question. Debug a large portion of code Trace executing code Specify as much or as little code to debug Debug only a small portion of code Bypass authorization objects.
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 any change of a specific variable. Stop at predefined conditions for a specific variable. Stop at any change of all variables.
Which of the following includes are generated when you create a function group? Please choose the correct answer. LxxxxF01 LxxxxTOP LxxxxO01 LxxxxUXX.
A user runs an ABAP program, enters an incorrect value on the selection screen, and chooses Execute. Which event block must send the error message in order to display the selection screen again? Please choose the correct answer AT SELECTION-SCREEN ON HELP-REQUEST AT SELECTION-SCREEN AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN ON VALU E-REQUEST.
What can be part of the signature of an instance constructor? There are 2 correct answers to this question Changing parameters Exporting parameters Exceptions Importing parameters.
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.
Which of the following tasks does the BADI implementing class perform? Please choose the correct answer. Filtering Inserting Sequencing Deleting.
Which assignment will lead to a conversion error? Please choose the correct answer. A type C data object with the value '1.50E4' to a type I data object DATA.gv_c(6) TYPE c VALUE '1.50E4', gv_i TYPE i. gv_i = gv_c. A type P data object to a type F data object DATA.gv_p TYPE p VALUE '15000', gv_f TYPE f. gv_f = gv_p. An XSTRING type data object to a STRING type data object DATA.gv_xstring TYPE xstring, gv_string TYPE string. gv_xstring = 'AF00'. gv_string = gv_xstring. A type C data object with the value '123' to a type C data object with length 2 DATA.gv_c3(3) TYPE c VALUE '123', gv_c2(2) TYPE c. gv_c2 = gv_c3.
Which of the following controller types can exist only once in a Web Dynpro component? There are 2 correct answers to this question. Window controller Component controller View controller Configuration controller.
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 reduce the number of intermediate variables You can write code that is very easy to read and understand You can write compact syntax instead of a long sequence of statements.
In which controller type can you embed a service call? Please choose the correct answer. Configuration controller Component controller Interface controller View controller.
In a subclass, you want to redefine a method of the super class. Which of the following conditions must be fulfilled? There are 2 correct answers to this question. The subclass method has same visibility as the super class method The superclass method is an instance method The subclass method has a lower visibility than the super class method The super class method is abstract.
Your program performs a database update by calling function modules in an update task. Which ABAP statements can be used in the program to discard all update requests for the current SAP logical unit of work(LUW)? There are 3 correct answers to this question MESSAGE TYPE E MESSAGE TYPE A MESSAGE TYPE W MESSAGE TYPE X ROLLBACK WORK.
How would you define a method of an ABAP class to prevent this method from being available in a subclass? Please choose the correct answer. Final Protected Abstract Private.
You write the following ABAP statement: SELECT SINGLE carrid, connid, cityfrom, cityto FROM spfli INTO @gs_spfli WHERE carrid = @pa_car AND connid = @pa_con. How are the selected fields placed into target structure gs_spfli? Please choose the correct answer. From left to right Into fields with the same name Into fields with the same name and same type Into fields with the same type.
What is variable-length structure called? Please choose the correct answer. Flat structure Nested structure Link structure Nested link structure.
Which of the following statements correctly define a data object with the type of data element s_conn_id? There are 3 correct answers to this question. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. PARAMETERS pa_id TYPE s_conn_id. DATA gv_id TYPE REF TO s_conn_id. DATA gv_id LIKE s_conn_id. DATA gv_id TYPE s_conn_id.
Which hook method exists for all controller types? Please choose the correct answer. wddoonclose( ) wddoonopen( ) wddoinit( ) wddobeforenavigation( ).
Which ABAP Dictionary object can reference a domain? Please choose the correct answer. Database table field Data element Structure Table type.
You want to define two database tables with different structures. Both tables should contain the fields CHANGE_DATE and CHANGE_TIME. How do you implement this in order to minimize the maintenance effort? Please choose the correct answer. Define the two fields in each database table separately. Define an append structure with these two fields and assign this append structure to both database tables. Define a structure with these two fields and include this structure in both database tables. Define the two fields in one database table and copy them to the other database table.
Report abuse Consent Terms of use