Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONtest abap c_taw12_740

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
test abap c_taw12_740

Description:
c_taw12_740

Author:
AVATAR

Creation Date:
09/10/2017

Category:
Others

Number of questions: 47
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. Business functions Function modules Transparent tables Module pools Internal tables.
What must before you can create a new transportable function modules? There are 3 correct answers to this question Package Function group Exception class Module pool Transport request.
What must you do to define a database view using the ABAP Dictionary? There are 3 correct answers to this question. Choose the fields from the tables that should be part of the view. Choose the database tables from where the view acquires data. Define the join conditions between the tables. Define buffering settings for the underlying database tables. Define selection criteria for the view.
Which of the following can you assign a search help to? There are 3 correct answers to this question Table type Domain Check table Structure component Data element.
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 FOREIGN_LOCK SYSTEM_FAILURE CX_SY_OPEN_SQL_ERROR.
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question Modification Adjustment: Dictionary Object Selection (Transaction SPDD) to adjust ABAP Dictionary objects Spool Administration: Initial Screen (Transaction SPAD) to adjust ABAP Repository objects Modification Adjustment: Object Selection (Transaction SPAU) to adjust ABAP Repository objects Object Navigator (Transaction SPAU_ENH) to adjust ABAP Dictionary objects.
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 All events Types Instance attributes Constants.
Which of the following interface technologies are available in SAP systems? There are 3 correct answers to this question. HTTP OLE RFC Ethernet ODBC.
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 buffered A secondary index can be created for a database view A database view can be reused in other programs An outer join can only be implemented in a database view.
Which of the following is an implicit enhancement? There are 2 correct answers to this question. Pre-method Protected method Private method Overwrite method.
Which elementary field types are considered a character type? There are 5 correct answers to this question. I X D T C F N XSTRING STRING.
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 one Context Data is shared between controllers through Context mapping Data is transferred from one Context to another by firing plugs Every Web Dynpro controller has multiple Contexts.
What can you use to achieve polymorphism? Please choose the correct answer. Events Reports Subroutines Inheritance.
You write a report that displays mass data in a table. You decide to use the ALV Grid control (class CL_GUI_ALV_GRID) instead of a classical list display with WRITE statements.   Which of the following functions can you offer to the user without doing any specific programming   There are 2 correct answers to this question Convert currency amount columns Change column width and sequence Sort and filter the data by any column Display details by double-clicking on a row.
What can be defined using an implicit enhancement option? There are 3 correct answers to this question Additional parameters in SAP function modules Additional attributes in global SAP classes Additional exceptions in SAP function modules Replacements for global SAP methods Replacement for SAP function modules.
Which actions release a database lock? There are 7 correct answers to this question. The display of an SAP screen COMMIT WORK The display of a dialog message type A ROLLBACK WORK A CALL TRANSACTION An “/n” in the command field ENQUEUE_ The display of a dialog message type E A SUBMIT A call to a function module.
You want to display a dialog box in your ABAP program. Which statement do you use? Please choose the correct answer. WINDOW 200 STARTING AT 5 5. CALL SCREEN 200. SET SCREEN 200. CALL SCREEN 200 STARTING AT 5 5.
Identify the ways to map context structures. There are 2 correct answers to this question. External context mapping Dynamic context mapping Direct context mapping Static context mapping.
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   Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers. DATA: r TYPE p DECIMALS 2, a TYPE i VALUE 201, b TYPE i VALUE 200, c TYPE DATA: r TYPE f, 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. DATA: r TYPE p DECMALS 2, a TYPE i VLAUE 201, b TYPE i VALUE 200, c TYPE f.
Which of the following rules must you follow when you create a static constructor? There are 3 correct answers to this question You can ONLY define static constructors in the public section You must name the method CLASS_CONSTRUCTOR You can use ONLY importing parameters or exceptions You must name the method CONSTRUCTOR You CANNOT use parameters or exceptions.
Which comparison operators can you use in a logical expression related to the WHERE clause of the SELECT statement?                                                                                                                                                                                     There are 3 correct answers to this question. GT (greater than) LIKE (fits pattern) CP (covers pattern) CO (contains only) EQ (equals).
You want to define data structures to hold two fields with data elements s_carr_id and s_carrname. Which of the following declarations can be used to define this data structure? There are 2 correct answers to this question. DATA: BEGIN OF gs_flight, TYPES: BEGIN OF gs_flight, TYPES: BEGIN OF gty_flight DATA BEGIN OF gs_flight,.
Which database objects can you create in the ABAP Dictionary? There are 2 correct answers to this question Indexes Logical databases Foreign key relationships Projection views.
Which of the following customer modifications options are available in the table maintenance generator? There are 2 correct answers to this question. Append searches Search helps Events Maintenance screens.
Your program uses the class CL_GUI_ALV_GRID to generate a classic ALV Grid Control What do you need in your program to react to a use double-clicking a row in the ALV Grid? There are 3 correct answers to this question A SET HANDLER statement to register the handler to the event A method call to refresh the display A handler class A method call to create the event handler A handler method for the double_click event.
You implemented a subclass that inherits the instance constructor from it superclass What can you do with the inherited constructor? There are 2 correct answers to this question Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers. Change the signature Redefine the implementation Create several implementations Change the name.
After which statement will the runtime system initialize the ABAP memory Please choose the correct answer. LEAVE TO TRANSACTION SUBMIT SUBMIT… AND RETURN CALL TRANSACTION.
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 handler method for the event A SET HANDLER statement to register the handler to the event A method to read the registration table A CATCH statement to capture the event A handler class.
What are some of the advantages of using OPEN SQL? There are 2 correct answers to this question It can be used with any DBMS Syntax is checked at design time The application server buffer is NOT used All standard SQL commands can be used.
You r program performs a data base 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 ROLLBACK WORK MESSAGE TYPE X MESSAGE TYPE E MESSAGE TYPE A.
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 write compact syntax instead of a long sequence of statements You can write code that is very easy to read and understand You can reduce the number of intermediate variables.
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 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. Define the two fields in each database table separately.
Your selection screen can be modified at which event? Please choose the correct answer. AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN ON <field_name> AT SELECTION-SCREEN None of the above.
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 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’ 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’.
Which of the following actions can be performed in the Process After Input (PAI) processing block? Please choose the correct answer. Set the GUI status of the screen. Set the title bar. Modify screen attributes dynamically. Check the function code.
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 on VALUE-REQUEST In the event block AT SELECTION-SCREEN OUTPUT In the event block AT SELECTION-SCREEN In the event block INITIALIZATION.
Using the screen system table, what can you modify through a LOOP AT SCREEN … ENDLOOP construct? Please choose the correct answer. Function code of buttons Screen status Attributes of screen elements Values of screen elements.
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. Function group Function module Class method Web service proxy Transaction code.
Which of the following types of SQL statements always bypass the SAP table buffers? There are 2 correct answers to this question. SELECT SUM (sales) SELECT … UP TO 1 ROW SELECT SINGLE SELECT … INNER JOIN….
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 cannot always be displayed. It has been embedded in a window.
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. Is divided into processing blocks. Only assigns executable statements in a processing block to a processing block. Has declarative statements inside of processing blocks that are considered local. Uses event blocks to trigger events in ABAP. Has declarative statements outside of processing blocks that are considered local. Can be tested from the ABAP Workbench by pressing (F8).
What is data binding? Please choose the correct answer. Connecting the values of user interface elements to the context attributes of the corresponding controller 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 a context node in one controller to a context node in another controller.
You are required to add customer source code in the SAP delivered object using the new enhancement framework without modification. How can you find the available enhancement? There are 3 correct answers to this question. Perform a program-related global search for a customer exit. Select from the list of freely selected BAdIs or enhancement spots in the Repository Information System. Perform a program-related global search for GET BADI. Select from the list of application-related BAdIs or enhancement spots in the SAP Application Hierarchy. Search for a Business Transaction Event in the Customizing tree (transaction SPRO).
Which statement is used to generically define the data reference variable z1? Please choose the correct answer. data z1 type any table data z1 type ref to PA0001 data z1 type ref to data data z1 type any.
You create a function group ZATP. What is the name of the corresponding main program? Please choose the correct answer. SAPFZATP SAPLZATP SAPMZATP ZATP.
Which of the following enhancement options does not require any preparation from SAP? Please choose the correct answer. Explicit enhancement point Explicit enhancement sections Implicit enhancement point New BAdIs.
You create a domain in the ABAP dictionary   How can you use this domain?   Please choose the correct answer. As the data type of a variable in an ABAP program As the data type of an input field on a dialog screen As the data type of a selection screen field As the data type of a data element in the ABAP Dictionary.
Report abuse Consent Terms of use