Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONFull1

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Full1

Description:
My Test1

Author:
Basit304
(Other tests from this author)

Creation Date:
16/11/2021

Category:
Others

Number of questions: 80
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
In which modularization units can you use parameters? There are 3 correct answers to this question. Dialog modules such as PBO modules Event blocks such as START-OF-SELECTION Subroutines Methods Function modules.
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 one database table and copy them to the other database table. 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.
Which of the following statements are true? There are 3 correct answers to this question. You cannot use a pooled or cluster table for a database view. Projection views can have more than one table included for the view definition. The tables included in the maintenance view should have foreign key relationships. The tables included in the help view should have a foreign key relationship.
You need to create a piece of code that can be used by multiple programs. Which of the following techniques does SAP recommend? There are 2 correct answers to this question. Use a method in a global class Use an include program. Use a function module in a function group. Use a method in a local class.
In addition to the primary key of an internal table, how many secondary indexes can you define for an internal table? Please choose the correct answer. 10 1 0 15.
Your selection screen can be modified at which event? Please choose the correct answer. AT SELECTION-SCREEN None of the above AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN ON <field_name>.
When would you call the RFC function module synchronously? There are 2 correct answers to this question. During unidirectional communication During two-way communication During queue processing During interactive communication.
Which of the following can you do with the SAP code inspector? Please choose the correct answer. Perform static code checks Analyze runtime data. Monitor background tasks Monitor runtime behavior.
What are the declarative statements used to define the selection? There are 3 correct answers to this question. SELECT-OPTIONS None of the above PARAMETERS SELECTION-SCREEN.
What is the predefined reference variable used in ABAP OO to address the object itself? Please choose the correct answer. SELF ME SUPER THIS.
The software component for a customer package can be... Please choose the correct answer. HOME Any SAP software component (i.e., SAP_APPL, SAP_BASIS, SAP_HR, etc.) Database layer Application Layer.
Which of the following structures is created when you use a table type to define one of its components? Please choose the correct answer. Flat structure Append structure Deep structure Nested structure.
Which statements are true regarding ABAP inheritance? There are 4 correct answers to this question. You can access the superclass component with the prefix SUPER->. Static constructors do not need to call the superclass’s constructor. Overloading allows a method to have several definitions with different signatures. Polymorphism requires the developer to specify which method to use with inheritance. The static constructor can be overwritten as part of inheritance. The instance constructor can be overwritten as part of inheritance. Instance constructors must call the superclass’s constructor.
You want to create a transparent table. Which of the following must you define to activate the table? There are 3 correct answers to this question. The MANDT field The foreign key A delivery class The primary key A short description.
Which actions release a database lock? There are 7 correct answers to this question. COMMIT WORK ROLLBACK WORK The display of an SAP screen The display of a dialog message type E The display of a dialog message type A An “/n” in the command field DEQUEUE_ A call to a function module A CALL TRANSACTION A SUBMIT.
SAP enhancements for customer exits are managed by which transaction? Please choose the correct answer. Transaction CMOD Neither transaction listed here Application CMOD Transaction SMOD.
Which of the following actions can you performing both the ABAP Editor and in the ABAP Debugger? Please choose the correct answer. Create a breakpoint for a specific statement. Create a breakpoint for a specific message. Create a breakpoint for a specificline. Create a watchpoint for a specific variable.
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 Constants Types All events.
You perform an update task using update function modules and detect an error in the program that calls the update function modules. Which statement can be used to discard all update requests for the current SAP LUW? There are 2 correct answers to this question. DELETE UPDATE. EXIT. MESSAGE axxx(nnn). MESSAGE exxx(nnn). ROLLBACK WORK.
Which you should specify in a non-Unicode system when opening a file in TEXT MODE? There are 2 correct answers to this question. The code page The ENCODING addition The storage order The byte order.
Each work process… There are 3 correct answers to this question. Can make database changes spanning multiple database LUWs. Uses a database connection to a work process established when the SAP NetWeaver Application Server ABAP started. Is independent of other work processes. Can only make database changes within a single database LUW. Uses a pool of database connections established when the SAP NetWeaver Application Server ABAP started.
When must a foreign key have domain equality? Please choose the correct answer. For a check field Never Always For a text 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 a plus (+). It starts with an asterisk (*). It starts with a dollar ($). It starts with an ampersand (&).
What is unique about a functional method? There are 5 correct answers to this question. It must contain a returning parameter. It can contain an exporting parameter. It can be used in logical expressions. It can be used in SELECT statements. It can contain an importing parameter. It must be a singleton. It can contain a changing parameter.
How would you find out if an application program offers a program exit? Please select all the correct answers that apply. Search for the character string CUSTOMER-FUNCTION Look for a customer exit in the SAP reference IMG within an application area Use the Repository Information System Use the Application Hierarchy.
What can you create using the ABAP Dictionary? There are 3 correct answers to this question. Domains Type pools Field symbols Transparent tables Internal tables.
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. Protected Abstract Final Private.
In which sequence are the following ABAP Events triggered? Please choose the correct answer. 1. AT SELECTION-SCREEN 2. INITIALIZATION 3. START-OF-SELECTION 1. INITIALIZATION 2. AT SELECTION-SCREEN 3. START-OF-SELECTION 1. START-OF-SELECTION 2. AT SELECTION-SCREEN 3. INITIALIZATION 1. INITIALIZATION 2. START-OF-SELECTION 3. AT SELECTION-SCREEN.
You use Unified Modelling language (UML) to design your classes. You want to describe the message exchange between objects. Which diagram can you use? Please choose the correct answer. Object diagram Class diagram Component diagram Sequence diagram.
What is the allowed length of the ABAP Dictionary data type DF16_DEC? Please choose the correct answer. The allowed length is between 1 and 15 digits. The allowed length is between 0 and 15 digits. The allowed length is 16 digits. The allowed length is between 0 and 16 digits.
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 ABAP Dictionary to create the lock objects. The lock modules are created automatically Use the Function Builder to create the lock modules and the lock objects Use the Function Builder to create the lock modules. The lock objects are created in the program logic Use the ABAP dictionary to create the lock objects. Use the function builder to create the lock modules.
Which of the following functions does the ABAP Dispatcher perform? There are 2 correct answers to this question. It communicates with other instances in the system. It enables communication between SAP systems and external application systems. It directs HTTP requests from an SAP system to a web server. It distributes user requests among available work processes.
You are making changes to a program that already has transaction code ZZZZ linked to it. Your colleague is testing transaction code ZZZZ in the same system. When does the changed version of the program become visible to your colleague via transact on code ZZZZ? Please choose the correct answer. When the syntax of the program is correct When you execute the program from the ABAP Editor When you activate the program When you save the program.
Which enhancements can provide a screen exit? There are 3 correct answers to this question. Explicit enhancement points Classic BAdIs Customer exits New BAdIs Explicit enhancement sections.
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 requests the data from the database or the buffers. It distributes the requests among the work processes. It saves the processing requests in request queues.
You have been asked to review the following expression, which processes character strings: result = find( val= 'abapABAP' sub ='A' occ = 2 case = 'X' ....). What is the expected value of result? Please choose the correct answer. 2 6 1 4.
Table A and table B are partially buffered. Which of the following SELECT statements always access the database? There are 2 correct answers to this question. SELECT SINGLE CLIENT SPECIFIED a b FROM table A INTO CORRESPONDING FIELDS OF ls_AB. SELECT SINGLE FOR UPDATE a b FROM table A INTO CORRESPONDING FIELDS OF ls_A WHERE c EQ ‘1234’. SELECT a b FROM table A INTO CORRESPONDING FIELDS OF TABLE lt_AB SELECT a b c d FROM table A JOIN table B ON table A~a EQ table B~ eINTO CORRESPONDING FIELDS OF TABLE lt_A_B.
Which of the following statements are true? There are 2 correct answers to this question. A database view is implemented as an inner join. A maintenance view is implemented as an outer join. A maintenance view is implemented as an inner join. A database view is implemented as an outer join.
With what can you simulate multiple inheritance? Please choose the correct answer. INHERITING FROM CLASS CATEGORY REDEFINITION INTERFACES.
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 def, ghi - data objects abc, xyz - data type or data object abc - data type def, ghi - data objects xyz - data type or data objects.
What is the allowed length of the ABAP Dictionary data type DF34_RAW? Please choose the correct answer. The allowed length is between 1 and 34 digits. The allowed length is between 0 and 33 digits. The allowed length is 34 digits. The allowed length is between 1 and 31 digits.
Which database objects can you create in the ABAP Dictionary? There are 2 correct answers to this question. Projection views Foreign key relationships Indexes Logical databases.
What are the differences between displaying in a full screen and in a container? There are 2 correct answers to this question. The full screen requires Dynpro programming. The container requires the use of an additional object (a container control). The only difference is that the container name must be specified when creating the ALV object. Only a full-screen ALV allows the use of event handling. Only an ALV in a container allows the use of event handling. Any type of ALV allows the use of event handling.
Which of the following ABAP standard types are incomplete? There are 2 correct answers to this question. X N STRING F.
Which of the following conditions must be fulfilled when using a GROUP BY clause in a SELECT statement? There are 2 correct answers to this question. All fields in the SELECT clause that are not part of an aggregate function must be listed after GROUP BY. The SELECT statement must also have a WHERE clause. The fields after GROUP BY must have a character type. The table in the FROM clause must be a transparent table.
What are some of the advantages of using OPEN SQL? There are 2 correct answers to this question. It can be used with any supported DBMS Syntax is checked at design time The application server buffer is NOT used All standard SQL commands can be used.
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.
Which type of view uses an inner join in a search help? Please choose the correct answer. Maintenance view Candidate key view Database view Help view.
Which of the following transactions can you use to define transparent tables? Please choose the correct answer. SE38 SM37 SE11 SE16N.
Which of the following predefined data types are character types? There are 3 correct answers to this question. X N P T D.
What does SAP recommend that you use a hashed table? Please choose the correct answer. When a table is very large and you want to access the table by key only When a table is very large and you want to access the table by index only. When a table must be sorted automatically by key in ascending order When a table must be accessible by both index and key.
What data type you can create in the ABAP Dictionary? Please choose the correct answer. Structure Secondary index Type group Lock object.
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 OUTPUT In the event block AT SELECTION-SCREEN on VALUE-REQUEST In the event block AT SELECTION-SCREEN In the event block INITIALIZATION.
How do you add fields to an SAP-delivered transparent table without modification? Please choose the correct answer. Use the database utility to enhance the definition on the database directly. Create an append structure containing the new fields. Add the new fields to the table definition. Define a structure containing the new fields and include it in the table definition.
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. SYSTEM_FAILURE CX_SY_OPEN_SQL_ERROR CX_SY_DATA_ACCESS_ERROR FOREIGN_LOCK.
A customer has asked that you improve performance for a small table with frequent read accesses. What buffering type do you recommend? Please choose the correct answer. Single record Column store Primary key Full table.
Which of the following statements can you use to setup checkpoints in an ABAP program? There are 3 correct answers to this question. BREAK ASSERT CHECK BREAK_POINT LOG-POINT.
Which of the following ABAP standard types are numeric? There are 3 correct answers to this question. P I F D N.
How do you use a sorted internal table? There are 2 correct answers to this question. You can resort the table with SORT You need to specify a key in the table declaration You can read the records by index or key You use APPEND to insert records at the correct position.
Which of the following is an implicit enhancement? There are 2 correct answers to this question. Pre-method Overwrite method Protected method Private method.
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. Needs to match the ABAP Dictionary. Is created in the order of the Data Dictionary. Is created in the order of the ABAP Dictionary.
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 private attributes. All classes that inherit from the friend (subclasses) also have the same access. The friend has access to public attributes. The friend has access to protected attributes. All classes the friend has granted friendship access status to also have the same access.
How can you add a session breakpoint to your program? There are 2 correct answers to this question. Set a breakpoint in the ABAP editor and select Save. Execute command /h Set a breakpoint in the ABAP editor Set a breakpoint in the ABAP debugger and press F8.
A view can only be displayed in which circumstances? Please choose the correct answer. It can always be displayed. It contains an inbound and outbound plug. It has been embedded in a window. It cannot always be displayed.
At most, how many buttons can the application toolbar have on the screen? Please choose the correct answer. 30 10 35 None of the above 20.
What is the default length of the type P data type? Please choose the correct answer. 64 1-16 1 8.
What are characteristics of a hashed internal table? There are 2 correct answers to this question. It can be accessed using the key. It can be accessed using the index. It can have a non-unique key. It must have a unique key.
Which data type is allowed for the reference field of the Currency field? Please choose the correct answer. DEC CURR UNIT CUKY.
What can be defined using an implicit enhancement option? There are 3 correct answers to this question. Additional exceptions in SAP function modules Additional attributes in global SAP classes Replacement for SAP function modules Replacements for global SAP methods Additional parameters in SAP function modules.
Which of the following program types can contain screens? There are 3 correct answers to this question. Interface pools Module pools Executable programs Function groups Class pools.
Which actions release a lock object (with a default value for _SCOPE)? There are 5 correct answers to this question. COMMIT WORK ROLLBACK WORK The display of an SAP screen The display of a dialog message type E The display of a dialog message type A ENQUEUE_ DEQUEUE_ A call to a function module A CALL TRANSACTION An “/n” in the command field.
What can be part of the signature of an instance constructor? There are 2 correct answers to this question. Exporting parameters Exceptions Changing parameters Importing parameters.
Which hook method exists for all controller types? Please choose the correct answer. wddoonopen( ) wddoonclose( ) wddobeforenavigation( ) wddoinit( ).
Identify the types of layout managers. There are 4 correct answers to this question. ColumnLayout FlowLayout RowLayout MatrixLayout TreeLayout GridLayout.
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 Class method Function group Function module Transaction code.
Which prerequisites must be fulfilled before a repository object can be transported? There are 3 correct answers to this question. The repository object must be assigned to a change request. A transport layer must be assigned to the package. The repository object must be assigned to a package. An inactive version of the repository object must exist. An application component must be assigned to the repository object.
Which of the following elements can a string template contain? There are 2 correct answers to this question. Function module calls Functional method calls String processing statements Literals.
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. AT SELECTION-SCREEN START-OF-SELECTION INITIALIZATION END-OF-SELECTION.
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. MODIF ID VALUE-CHECK MEMORY ID DEFAULT.
Your task is to enhance the screen of an SAP standard application. How do you determine if there is a customer exit for this task? Please choose the correct answer. You search in the SAP reference Implementation Guide (IMG) for a suitable user exit You search in the source code of the application for GET BADI statement You use the BAdI Builder (transaction SE19) to check for a suitable Business Add-In(BAdI) You search in the flow logic of the screen for CAL CUSTOMER-SUBSCREEN statement.
Report abuse Consent Terms of use