Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONOCTAVA SECCION TEST ABAP

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
OCTAVA SECCION TEST ABAP

Description:
OCTAVA SECCION TEST ABAP

Author:
AlexisTEST
(Other tests from this author)

Creation Date:
21/04/2023

Category:
Others

Number of questions: 41
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Which of the following repository objects can you maintain in the ABAP Workbench? There are 3 correct answers to this question. Transparent tables Internal tables Business functions Function modules Module pools.
Can you search for suitable classic Business Add-Ins (BAdIs)? There are 2 correct answers to this question. Search for suitable entries in the relevant component in the Implementation Guide (IMG) Search in an application program for the method GET_INSTANCE of class CL_EXITHANDLER Search in the Repository Information System and choose Enhancements -> Customer Exits Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object Builder.
Identify the types of layout managers. There are 4 correct answers to this question. GridLayout ColumnLayout TreeLayout MatrixLayout RowLayout FlowLayout.
Which of the following statements are true? There are 2 correct answers to this question A maintenance view is implemented as an outer join A database view is implemented as an inner join A database view is implemented as an outer join A maintenance view is implemented as an inner join.
What is the correct order for using a lock object? Please choose the correct answer. Set the lock, read the data, change the data, release the lock Set the lock, read the data, release the lock, change the data release the lock, Read the data, set the lock, change the data Read the data, set the lock, change the data, release the lock.
When would you call the RFC function module synchronously? There are 2 correct answers to this question. During interactive communication During unidirectional communication During queue processing During two-way communication.
What is a plug? There are 4 correct answers to this question. Can be assigned to multiple views Can be defined as inbound, outbound, or both Can be defined as outbound controlling multiple inbound plugs Forms the basis of navigation within a Web Dynpro Can be defined as a startup Can be defined as an exit Can be defined as default inbound Can be defined as inbound and be controlled by multiple outbound plugs.
How is data shared between Web Dynpro controllers? There are 2 correct answers to this question. By using context mapping from a view controller to a custom controller By using data binding from a view controller to another view controller By using context mapping from a view controller to another view controller By using context mapping from a view controller to the component controller.
Which of the following can you do with the SAP code inspector? Please choose the correct answer. Perform static code checks Monitor runtime behavior Analyze runtime data. Monitor background tasks.
Which desktops are part of the new ABAP debugger? There are 3 correct answers to this question. List Session Break./Watchpoints Objects Desktop 1.
Which events can exist in all types of programs that actually contain executable statements? Please choose the correct answer. AT PF## LOAD-OF-PROGRAM AT USER-COMMAND AT LINE-SELECTION INITIALIZATION START-OF-SELECTION.
Which assignment will lead to a conversion error? Please choose the correct answer. 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 P data object to a type F data object DATA.gv_p TYPE p VALUE '15000', gv_f TYPE f. gv_f = gv_p. 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 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 are true statements? There are 3 correct answers to this question. A reference table and field are required for fields with the data types QUAN and CURR. Search helps can be defined for a table field that is assigned to a predefined data type. Table fields can be assigned to a data element. Table fields can be assigned to an ABAP Dictionary data type directly.
You can use the logical expression IS SUPPLIED for any formal parameter passed to which modularization unit? There are 3 correct answers to this question. Static method Instance method Subroutine (FORM routine) Function module.
What scheduling technique is used by the ABAP debugger dispatcher for processing user requests? Please choose the correct answer. Round Robin Multiple Queue Shortest First First in, First out.
Which controller types can exist within a Web Dynpro component? There are 3 correct answers to this question. User controller Application controller View controller Component controller Window controller.
What is the default length of the type C data type? Please choose the correct answer. Choose one: 1–65535 10 1 100.
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 instantiation of the class as private. Define the class as abstract. Save the instance of the class in a static attribute.
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 super class method is abstract The superclass method is an instance method The subclass method has a lower visibility than the super class method The subclass method has same visibility as the super class method.
What is the difference between a Unicode and non-Unicode program? Please select all the correct answers that apply Offset positioning in a Unicode structure is restricted to flat data objects. Byte-type data objects cannot be compared to character-type data objects. Offset positioning in a Unicode structure is restricted to character data objects. Byte-type data objects cannot be assigned to character-type data objects.
Which statement is used to generically define the data reference variable z1? Please choose the correct answer. data z1 type ref to data data z1 type ref to PA0001 data z1 type any data z1 type any table.
Which of the following interface technologies are available in SAP systems? There are 3 correct answers to this question. Ethernet ODBC HTTP RFC OLE.
Which of the following ABAP code lines is valid? There are 3 correct answers to this question. Choose: STATICS s_mantr TYPE mantr VALUE ‘100’ SELECT-OPTIONS s_mantr TYPE mantr DEFAULT ‘100’ PARAMETERS p_mantr TYPE mantr DEFAULT ‘100’ CONSTANTS gc_mantr TYPE mantr VALUE ‘100’.
What is mandatory for automatic data transport between a variable and an input field on a classical screen (dynpro)? ¿The name of the variable and the name of the input field must be identical. The variable must be declared using the TABLES statement. The property OUTPUT of the input field must be set The variable must be declared using the DATA statement.
Which components belong to an elementary search help? There are 2 correct answers to this question. Selection method Fixed values Attachment to a field Import / export parameters.
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 with 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 without roll out Usually, dialog steps are assigned to different dialog work processes.
You have created the following: - A class with an event definition - A handler class with a method ON EVT that handles this event - A report that instantiates the handler class - A message statement that raises an exception However, the report does not react to the event. How do you analyze this issue? There are 3 correct answers to this question. Choose: Check if the event is triggered by setting a breakpoint at the MESSAGE ... RAISING ... statement. Check if the implementation of the handler method ON_EVT contains the desired logic. Check if the handler method is registered to the correct event. Check if the event is triggered by setting a breakpoint at the RAISE EVENT statement Check if the handler method ON_EVT is defined in a subroutine of the report.
Which view types can you use to join two tables with an outer join? There are 2 correct answers to this question. Projection view Database view Help view Maintenance view.
What is data binding? Please choose the correct answer. Connecting one Web Dynpro component to another Web Dynpro component Connecting an outbound plug on one view to the inbound plug of another view Connecting the values of user interface elements to the context attributes of the corresponding controller Connecting a context node in one controller to a context node in another controller.
Which of the following features do you have to consider when you use shared objects? There are 3 correct answers to this question. Memory bottlenecks result in runtime errors and have to be caught Concurrent write accesses are supported Data is saved as attributes of objects Data is saved as tables of objects Concurrent read accesses are supported.
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 Only A can be used in the FROM clause of a SELECT statement The tables joined in B must have foreign key relationships.
What is unique about a singleton? There are 2 correct answers to this question. Choose: It must be instantiated using a public instance constructor. It must be instantiated using a protected instance constructor. must be instantiated using a static private constructor. It must be instantiated using a static protected constructor. It cannot be defined as FINAL. It must be defined as FINAL. It must be instantiated using a private instance constructor. It must be instantiated using a static public constructor.
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 database view can be buffered A secondary index can be created for a database view.
What will happen at runtime when accessing a buffered table? Please choose the correct answer. Choose one: If table data is read using indexes, the table buffer will not be filled. All SELECT statements will read data from the buffer. If data is read from the table buffer, the existing indexes are not used. Following an update to a buffered record, all table buffers in the system will be updated.
DOG is a subclass of ANIMAL. You have created a variable of type ANIMAL that references an instance of the DOG class. Which of the following statements can you use to copy this reference to a new variable of type DOG? Please choose the correct answer. MOVE-CORRESPONDING…… TO…… MOVE……?TO…… WRITE……TO…… MOVE…. TO…..
Function modules provide which types of parameters? There are 4 correct answers to this question. Input/output (changing) Output Return values Input Exceptions.
Which data type is allowed for the reference field of the Currency field? Please choose the correct answer. UNIT CUKY CURR DEC.
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 REF TO a. DATA gt_itab TYPE LINE OF a. DATA gt_itab TYPE a. DATA gt_itab TYPE TABLE OF a.
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 CHANGING RETURNING IMPORTING EXPORTING.
Which of the following settings can you define for both structures and transparent tables in the ABAP Dictionary? There are 2 correct answers to this question. Foreign key relationships Size category Enhancement category Storage type.
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. CAST(arg FOR type) CASTING(arg FOR type) CAST(arg AS type) CASTING(arg AS type) Should have chosen .
Report abuse Consent Terms of use