Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONABAP 7.5

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
ABAP 7.5

Description:
ABAP 7.5

Author:
Rodrigo
(Other tests from this author)

Creation Date:
05/12/2022

Category:
Others

Number of questions: 85
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
16_1 - Which of the following can you assign a search help to? There are 3 correct answers to this question Table Type Domain Structure Component Check Table Data Element.
49_1 - What can be implemented using an implicit enhancement option? There are 3 correct answers to this question. Overwrite methods for SAP function modules Additional parameters in SAP function modules Overwrite methods for global SAP classes Additional attributes for global SAP classes Additional exceptions in SAP function modules.
42_1 - What can be exposed in the component interface of a Web dynpro component? Please choose the correct answer. Public attributes of WINDOW controllers Custom methods of the component controller Context nodes of WINDOW controllers Standard hook methods of the component controller.
25_1 - 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? There are 2 correct answers to this question. DATA: r TYPE f, a TYPE i VALUE 201, b TYPE i VALUE 200, c TYPE f. DATA: r TYPE p DECIMALS 2, a TYPE i VALUE 201, b TYPE i VALUE 200, c TYPE p. DATA: r TYPE p DECIMALS 2, a TYPE i VALUE 201, b TYPE i VALUE 200, c TYPE f. DATA: r type p, a type i VALUE 201, b type i VALUE 200, c type i.
06_1 - 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? MOVE……?TO…… MOVE… TO… MOVE-CORRESPONDING…… TO…… WRITE……TO…….
75_1 - What do enhancement spots manage? There are 3 correct answers to this question Explicit enhancement sections New BAdIs Classic BAdIs Explicit enhancement points Implicit enhancement points.
87_1 - Which are the functions of the ABAP dispatcher? There are 3 correct answers to this question. It integrates the presentation layer It requests the data from the database or the buffers 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.
92_1 - What is the difference between a value table and a check table? Please choose the correct answer. A value table is a check table after a foreign key is defined. A check table is defined in the domain, whereas a value table is defined in the data element. No difference; they are the same thing. A value table is defined in the domain, whereas a check table is defined in the data element. A value table does not exist.
28_1 - 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 foreign key table. Create a foreign key for field F of table T1 and make table T2 the check table.
59_1 - 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 ROLLBACK WORK MESSAGE TYPE X MESSAGE TYPE W MESSAGE TYPE A.
165_2 - 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.
118_2 - For which of the following requirements can you implement a functional method? There are 2 correct answers to this question. A factory method that returns an object reference A handler method for an event that has a returning parameter A private static helper method that returns a single value as the result of an algorithm A method to set an instance attribute with one importing parameter and no other parameters.
172_2 - 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 a data element that does NOT refer to a domain. 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 ABAP Dictionary type 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.
135_2 - Which enhancements can provide a screen exit? There are 3 correct answers to this question. Customer exits Classic BAdls Explicit enhancement points. New BAdls Explicit enhancement sections.
125_2 - Which statement will interrupt the processing of the current screen and branch to new screen? Please choose the correct answer. LEAVE TO SCREEN <NNNN> None of the above CALL SCREEN <NNNN> SET SCREEN <NNNN>.
175_2 - 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 Index Table Sorted Table Hashed Table Any Table.
157_2 - Which controller types can exist within a Web Dynpro component? There are 3 correct answers to this question. View controller Window controller User controller Component controller Application controller.
132_2 - What does a Web Dynpro component contain? There are 3 correct answers to this question. Component controller A context plugs between the views Multiple views within a window Exactly one interface controller UI elements.
150_2 - Identify the ways to map context structures. There are 2 correct answers to this question. Static context mapping External context mapping Dynamic context mapping Direct context mapping.
147_2 - 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 View controller Component controller Configuration controller.
179_2 - What parameters can you set when you run the Code Inspector? There are 3 correct answers to this question. Object set name Inspection name Check variant name Background job name Work process name.
173_2 - Each component has an interface; of what does this interface consist? There are 2 correct answers to this question. Interface view Interface context Data Container Interface controller.
139_2 - Each work process is assigned a type of task that can be performed. Which statements related to this are true? There are 3 correct answers to this question. All work processes communicate with the dispatcher. It is possible to have multiple spool work processes on an ABAP application server. To switch a work process type requires a restart of the SAP NetWeaver Application Server ABAP. All work processes communicate with the database. All work processes have the same structure. A work process can communicate directly with an external system through a Remote Function Call. It is possible to have multiple enqueue work processes on an SAP NetWeaver Application Server.
136_2 - Which data element property do you set so that the system logs changes to the content of fields with this data element? Please choose the correct answer. Documentation Input history Change document PARAMETER ID.
148_2 - Which database objects can you create in the ABAP Dictionary? There are 2 correct answers to this question Indexes Logical databases Projection views Foreign key relationships.
182_2 - 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.
130_2 - You have created a Web Dynpro view that shows data for airline connections between cities. You want to display flight data for a specific date in a different view after the user select a date and presses a button. Which of the following actions you must perform? There are 2 correct answers to this question. Edit the handler method in the view controller Create and link plugs between the views Set the interface property for key fields Add a client-side event in the view.
104_2 - 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 Create only local inspections, objects 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.
300_3 - Which type of view cannot be used in a search help? Please choose the correct answer. Maintenance view Database view Candidates key view Help view.
277_3 - The following piece of code is usedDATA: 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, xyz - data type def, ghi - data objects abc - data type def, ghi - data objects xyz - data type or data objects abc - data type def, ghi ,xyz - data objects def, ghi - data objects abc, xyz - data type or data object.
273_3 - In an ABAP program you have the following code sequence:DATA text TYPE string.DATA Text_ref TYPE REF TO string.DATA data_ref TYPE REF TO data.FIELD-SYMBOLS <fs> TYPE anyText = ‘Content of Data Object’GET REFERENCE OF text INTO data_ref.Which of the following pieces of code can you use to output the content of variable text? There are 2 correct answers to this question. text_ref ?= data_ref. WRITE text_ref->*. WRITE data_ref->*. GET REFERENCE OF data_ref->* INTO text_ref. WRITE text_ref->*. ASSIGN data_ref->* TO<fs> WRITE <fs>.
212_3 - How can you add a session breakpoint to your program? There are 2 correct answers to this question. Execute command /h Set a breakpoint in the ABAP editor Set a breakpoint in the ABAP editor and select Save Set a breakpoint in the ABAP debugger and press F8.
289_3 - Which components belong to an elementary search help? There are 2 correct answers to this question. Import / export parameters Attachment to a field Fixed values Selection method.
231_3 - Each work process… There are 3 correct answers to this question. Can make database changes spanning multiple database LUWs. 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. Uses a database connection to a work process established when the SAP NetWeaver Application Server ABAP started. Is independent of other work processes.
285_3 - Which events can exist in all types of programs that actually contain executable statements? Please choose the correct answer. START-OF-SELECTION AT LINE-SELECTION INITIALIZATION AT PF## AT USER-COMMAND LOAD-OF-PROGRAM.
288_3 - FORM routines (subroutines) can be used in which program types? There are 4 correct answers to this question. Class pools Executables Type groups Interface pools Subroutine pools Function groups Module pools.
276_3 - Which objects can share data through context mapping? Please choose the correct answer. Component controllers and view controllers Global classes and component controllers View controller and another view controller Custom controllers and transparent tables.
205_3 - Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question. XSTRING DECFLOAT34 STRING FLOAT DECIMALS.
290_3 - 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. - Enhancement Project - BAdI Implementation - Enhancement Spot Implementation - BAdI Implementation - BadI Implementation - Enhancement Project - BAdI Implementation - Enhancement Spot Implementation.
206_3 - Which desktops are part of the new ABAP debugger? There are 3 correct answers to this question. Objects Break./Watchpoints Desktop 1 List Session.
221_3 - For a given date(variable lv_date), you want to find all the connections from Frankfurt to Sydney with exactly one stopover. You want to fly from the stopover city to Sydney on the same day you arrive in the stopover city. Table ZFLIGHTS hold the following information about flights.-flightid: primary key-cityfrom:departure city-datefrom: departure date-timefrom:departure time-cityto:destination city-dateto:destination date-timeto:destination time. Which of the following Open SQL Queries can you use to find all the possible stopover cities? Please choose the correct answer. SELECT cityto INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT DISTINCT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’ SELECT cityfrom INTO TABLE lt_cities FROM zflights AS destination WHERE cityto IN (SELECT DISTINCT cityfrom FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’ SELECT DISTINCT cityfrom INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’. SELECT DISTINCT cityto INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’.
391_4 - What can be defined using an implicit enhancement option? There are 3 correct answers to this question. Additional attributes in global SAP classes Additional exceptions in SAP function modules Replacement for SAP function modules Additional parameters in SAP function modules Replacements for global SAP methods.
359_4 - What does a view do? There are 4 correct answers to this question. If entered by an inbound plug, can cause an event handler method to be called Can be contained in a window Contains other views Contains a view controller Contains windows.
399_4 - 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 single object Contents of an object set Contents of a package Contents of named user's objects Contents of a transport request.
363_4 - Which of the following enhancements calls a customer function module. There are 2 correct answers to this question. User exit Business Transaction event Customer exit Business Add-in (BADIs).
382_4 - When does the lifetime of a component controller begin and end? Please choose the correct answer. It ends the first time the Web Dynpro application is called at runtime and ends when the Web Dynpro application that called and instantiated the component ends. It lasts from creating data within the controller to cover the whole period during which the component is in use. It begins with the Web Dynpro component and ends with the Web Dynpro application that called it. It begins the first time the Web Dynpro application is called at runtime and ends when the Web Dynpro application that called and instantiated the component ends.
369_4 - What is a plug? There are 4 correct answers to this question. Can be assigned to multiple views Can be defined as default inbound 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 outbound controlling multiple inbound plugs Can be defined as inbound, outbound, or both Can be defined as inbound and be controlled by multiple outbound plugs.
327_4 - A screen has the following PAI flow logic: PROCESS AFTER INPUTFIELD A MODULE check_A FIELD B MODULE check_B CHAIN .FIELD: C, D MODULE check_CD ENDCHAIN 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 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. The screen is displayed again without processing the PBO flow logic. Only fields B and C are ready for input.
352_4 - An executable ABAP program contains a standard selection screen and uses the event blocks AT SELECTION SCREEN, AT SELECTION-SCREEN OUTPUT, INITIALIZATION, START-OFSELECTION. In which sequence will ABAP runtime call these event blocks? Please choose the correct answer. 1. INITIALIZATION 2. AT SELECTION-SCREEN 3. AT SELECTION-SCREEN OUTPUT 4. START-OF-SELECTION 1. AT SELECTION-SCREEN OUTPUT 2. INITIALIZATION 3. AT SELECTION-SCREEN 4. START-OF-SELECTION 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. START-OF-SELECTION 4. AT SELECTION-SCREEN. 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. AT SELECTION-SCREEN 4. START-OF-SELECTION.
351_4 - You Created the following ABAP Code: DATA x TYPE REF TO DATA DATA y TYPE REF TO OBJECT ASSIGN x TO <fs> ASSIGN y TO <fs>. You want to add a declaration of <fs> to the Code. Which of the Following Declarations are Valid? There are 2 correct answers to this question. FIELD-SYMBOLS TYPE REF TO DATA FIELD-SYMBOLS <fs> TYPE ANY FIELD-SYMBOLS <fs> TYPE REF TO ANY FIELD-SYMBOLS <fs>.
340_4 - You want to translate dynamic text in a web dynpro. From which abstract class should you inherit? Please choose the correct answer. CL_WD_COMPONENT_SERVICES CL_WD_COMPONENT_ASSISTANCE CL_WD_CONTEXT_SERVICES CL_WD_CONFIGURATION_MODEL.
365_4 - Which of the following can you define in the technical settings of a transparent table? There are 3 correct answers to this question. Data class Buffering type Table name Delivery class Size category.
310_4 - What properties will be set when you define a table type in the ABAP Dictionary? There are 3 correct answers to this question. Line type Primary key Change document Access mode GET/SET Parameter.
370_4 - Which steps are needed when implementing the singleton concept for class instantiation with minimum coding? There are 3 correct answers to this question. Define the instantiation of the class as private. Define the class as abstract. Save the instance of the class in a static attribute. Create an event that returns the instance of the class. Create an instance of the class in a static constructor.
001 - You can call a module for the FIELD statement to validate user entry on the input field. You can validate the entry on the input field and send an error or a warning message from an ABAP dialog module. False True.
002 - The FIELD statement with the ON INPUT addition is used to conditionally call the ABAP dialog module. The ABAP dialog module is called if the value of the screen field is other than the initial value. True False.
003 - Update tasks are the only way to make changes to the database. False True.
004 - You can use the APPEND statement to fill a sorted internal table. False True.
005 - It is possible to use both buffering and secondary indexes to improve performance of a search help. True False.
006 - The addition NO-INTERVALS for SELECT-OPTIONS will allow only single fields on the selection screen. True False.
007 - The READ statement with the addition BINARY SEARCH for a sorted internal table is better for performance. False True.
008 - The Java stack and the ABAP stack of an SAP NetWeaver Application Server must always be installed together False True.
009 - Subclasses inherit all the components of the parent class. False True.
010 - Local data objects can be defined using ABAP Dictionary types False True.
011 - The data is transferred and displayed on the screen after the processing of the PBO. True False.
012 - Identify the types of controller. Select all that apply (5). Consumer controller View controller Window controller Component controller Custom controller Configuration controller.
013 - ABAP Push Channels (APC) can only use the WebSocket protocol. False True.
014 - Which is not a Golden Rule for Open SQL? Please choose the correct answer. Minimize the Amount of Data Transferred Keep the result set large Reduce the Database Load Minimize the Number of Database Accesses.
015 - Which statement cannot use a subquery (3). None of the above SELECT INSERT DELETE UPDATE.
016 - One of the prerequisites for the replacement object is that the structure type defined for the CDS view should match the structure of the database table. False True.
017 - Nested source code enhancement allows you to enhance the source code plug-in. True False.
018 - Open SQL does not allow you to specify a secondary index during a SELECT. True False.
019 - It is not possible to test a function module if another function module of the same function group contains a syntax error. False True.
020 - What is the central goal of using SAP HANA? Please choose the correct answer. Positive Impact on Business Monitor database for record keeping To set Priorities for system Accelerate Performance.
021 - What is the result of the following arithmetic operation? DATA: int TYPE I int = 5 /10 0 5 1.
022 - ABAP now has predefined functions that behave like functional methods. False True.
023 - The FIELD statement with the ON REQUEST addition calls the ABAP dialog module if any value is entered in the screen field. True Fasle.
024 - There can only be one level in the inheritance tree True False.
025 - Authorizations are handled automatically during access to the database interface to restrict data access of the user. False True.
026 - Both the classic Debugger and the new Debugger can be used on all ABAP code without restriction. False True.
027 - What are functions of the ABAP Managed Database Procedure (AMDP) framework? There are 2 correct answers to this question. It deletes obsolete versions of the database procedure synchronously. It creates the database procedure when the AMDP is first called. It deletes obsolete versions of the database procedure asynchronously It creates the database procedure when the AMDP is first activated.
028 - What are the main points of SAP HANA High Availability Per Datacenter that are available even in the event of a disaster? There are 2 correct answers to this question Shared file systems for only one server High availability configuration Services-Name and index server on all nodes Active clusters for all servers.
029 - The new bottlenecks avoided by addressing two challenges, what are they? There are 2 correct answers to this question. Avoid single network Avoid CPU cache misses Avoid idling CPU cores Avoid optimizing data.
030 - What is the Limitations of ALV for SAP HANA? There are 3 correct answers to this question. Restricted to 10,000 records No unit/ currency split if aggregating amounts/ currency values All unit/ currency restricted to 10,00,00 records Without currency /unit consideration Restricted to 5000 records / unit.
031 - Which of the following statements are correct? (3 Correct) 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. You can use the addition NO-DISPLAY to hide the input field on the selection screen. The structure of the selection table created with SELECT-OPTIONS has four components: SIGN, OPTION, LOW, and HIGH.
Report abuse Consent Terms of use