option
Questions
ayuda
daypo
search.php
ERASED TEST, YOU MAY BE INTERESTED ON SAP ABAP MINI 11
COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
SAP ABAP MINI 11

Description:
C_TAW12_750 - SAP - ABAP with SAP NetWeaver 7.50

Author:
tariq554
Other tests from this author

Creation Date:
31/05/2020

Category: Others

Number of questions: 40
Share the Test:
New CommentNuevo Comentario
No comments about this test.
Content:
Each component has an interface; of what does this interface consist? There are 2 correct answers to this question. Interface view Data Container Interface controller Interface context.
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 screen in the ABAP Dictionary allows you to log data changes to the table? Please choose the correct answer. Attributes tab Utilities Settings Technical Settings Delivery and Maintenance tab Utilities Database Object Database Utility.
How do you embed a subscreen in a main screen? Please choose the correct answer. Use SET SUBSCREEN in a PBO module of the main screen. Use SET SUBSCREEN in the flow logic of the main screen. Use CALL SUBSCREEN in the flow logic of the main screen. Use CALL SUBSCREEN in a PBO module of the main screen.
What can be implemented using an implicit enhancement option? There are 3 correct answers to this question. Additional exceptions in SAP function modules Additional parameters in SAP function modules Overwrite methods for SAP function modules Additional attributes for global SAP classes Overwrite methods for global SAP classes.
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 W MESSAGE TYPE X ROLLBACK WORK MESSAGE TYPE A MESSAGE TYPE E.
Identify the types of controller. There are 5 correct answers to this question. Component controller View controller Consumer controller Configuration controller Window controller Custom controller.
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 seldom written When the table is large and frequently written When the table is small and frequently written When the table is large and seldom written.
What can be part of the signature of an instance constructor? There are 2 correct answers to this question Importing parameters Exporting parameters Changing parameters Exceptions.
Which enhancements can provide a screen exit? There are 3 correct answers to this question. Customer exits Classic BAdIs New BAdIs Explicit enhancement sections Explicit enhancement points.
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. Into fields with the same name From left to right Into fields with the same name and same type Into fields with the same type.
Can you search for suitable classic Business Add-Ins(BAdIs)? There are 2 correct answers to this question Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object Builder Search in an application program for the method GET_INSTANCE of class CL_EXITHANDLER Search for suitable entries in the relevant component in the Implementation Guide (IMG) Search in the Repository Information System and choose Enhancements - >Customer Exits.
Which of the following ABAP standard types are incomplete? There are 2 correct answers to this question. X STRING F N.
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.
What is the event block that all of your code changes belongs to if you do not explicitly code any event blocks in an executable program? Please choose the correct answer. START-OF-SELECTION INITIALIZATION AT SELECTION-SCREEN OUTPUT LOAD-OF-PROGRAM.
Which objects can share data through context mapping? Please choose the correct answer. View controller and another view controller Component controllers and view controllers Custom controllers and transparent tables Global classes and component controllers.
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 dollar ($). It starts with a plus (+). It starts with an asterisk (*). It starts with an ampersand (&).
Which of the following must you do to be able to use a Business Add-in(BADI)? There are 2 correct answers to this question Write code for methods Activate the enhancement project Modify the adapter class Create the BADI implementation.
Which boundary conditions lead to improved access time to an internal table? There are 3 correct answers to this question. Left justified part of key for hashed tables Index access for hashed tables Index access for standard tables Left justified part of key for sorted tables Fully qualified key for sorted tables.
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. ROLLBACK WORK. MESSAGE axxx(nnn). EXIT. MESSAGE exxx(nnn).
Identify the ways to map context structures. There are 2 correct answers to this question. Dynamic context mapping External context mapping Direct context mapping Static context mapping.
Which statement ends a screen sequence and starts from initial screen? Please choose the correct answer. LEAVE TO SCREEN SET SCREEN 0 LEAVE SCREEN CALL SCREEN.
Which of the following statements are true? There are 3 correct answers to this question. The tables included in the maintenance view should have foreign key relationships. Projection views can have more than one table included for the view definition. You cannot use a pooled or cluster table for a database view. The tables included in the help view should have a foreign key relationship.
Which of the following rules must you follow when you create a static constructor? There are 2 correct answers to this question You must define the method as pubic. You can define class-based or classic exceptions. You must name the method CONSTRUCTOR. You CANNOT define parameters.
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. def, ghi - data objects abc, xyz - data type or data object abc - data type def, ghi - data objects xyz - data type or data objects abc, xyz - data type def, ghi - data objects abc - data type def, ghi ,xyz - data objects.
Your program uses class CL_GUI_ALV_GRID to generate a classic ALV Grid Control. What do you need in your program to react to a user double-clicking a row in the ALV Grid? There are 3 correct answers to this question. A handler method for the double_click event A method call to refresh the display A method call to raise the double_click event A SET HANDLER statement to register the handler to the event A handler class.
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 Sorted Table Standard Table Hashed Table Index Table Any Table.
What is the Web Dynpro programming model is based on? Please choose the correct answer. Model View Controller (MVC) Classic Dynpro programming Internet Transaction Server (ITS) Business Server Pages (BSPs).
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. 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 implementation of the handler method ON_EVT contains the desired logic. Check if the event is triggered by setting a breakpoint at the MESSAGE ... RAISING ... statement. Check if the handler method ON_EVT is defined in a subroutine of the report.
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 options are valid Open SQL? There are 3 correct answers to this question CROSS JOIN FULL JOIN RIGHT OUTER JOIN LEFT OUTER JOIN INNER JOIN.
How can you search for classic Business Add-Ins (BAdIs)? There are 2 correct answers to this question. Search in the application program for the method GET_ INSTANCE of class CL_EXITHANDLER. Search in the application program for the CALL BADI statement. Search the relevant component in the Implementation Guide (IMG). Search in the application program for the GET BADI statement.
Which of the following statements are true? There are 2 correct answers to this question. A maintenance view is implemented as an inner join. A database view is implemented as an outer join. A database view is implemented as an inner join. A maintenance view is implemented as an outer join.
In which of the following source code blocks can you define local data objects? There are 3 correct answers to this question Static method LOAD-OF-PROGRAM Function module Subroutine PBO module.
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. LOOP ...INTO <field_symbol> ...ENDLOOP. LOOP ... REFERENCE INTO <field_symbol> ... ENDLOOP. LOOP ... INTO <field_symbol> TRANSPORTING ... ENDLOOP. LOOP ...ASSIGNING <field_symbol> ...ENDLOOP.
You create a domain in the ABAP dictionary. How can you use this domain? Please choose the correct answer. To define the data type of a table field or structure component To define data objects in ABAP programs To define technical properties of data elements To describe the value range of a table field or structure component.
You have 2 objects: O1 of type class C1 and O2 of type class C2. Class C2 is a subclass of class C1. Which of the following statements implements an up cast? Please choose the correct answer. O1 = O2. MOVE O1 TO O2. MOVE O1 ?TO O2. O2 ?= O1.
What is the correct order for using a lock object? Please choose the correct answer. 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 Set the lock, read the data, change the data, release the lock.
What do you need to consider when creating a secondary index on a table? There are 2 correct answers to this question The index must always be unique The most frequently selected fields should be at the first positions in the index The index can be created for specific database systems only The table will be updated more quickly if you create more indexes.
Which objects are automatically created when you create a new function group? Please choose the correct answer. A function pool and two function modules A function pool and two module pools A function pool and two subroutine pools A function pool and two include programs.
Report abuse