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:
11/10/2017

Category:
Others

Number of questions: 46
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
What can be exposed in the component interface of a Web dynpro component? Please choose the correct answer. Custom methods of the component controller Standard hook methods of the component controller Context nodes of WINDOW controllers Public attributes of WINDOW controllers.
Which of the following ABAP standard types are incomplete? There are 2 correct answers to this question. STRING N X F.
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. It is possible to have multiple enqueue work processes on an SAP NetWeaver Application Server. To switch a work process type requires a restart of the SAP NetWeaver Application Server ABAP. A work process can communicate directly with an external system through a Remote Function Call. It is possible to have multiple spool work processes on an ABAP application server. All work processes communicate with the dispatcher. All work processes have the same structure. All work processes communicate with the database.
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 table will be updated more quickly if you create more indexes The index can be created for specific database systems only The most frequently selected fields should be at the first positions in the index.
Which parameter types can be used in the signature of a functional method? There are 2 correct answers to this question. EXPORTING CHANGING IMPORTING RETURNING.
Which of the following is correct? Please choose the correct answer. None of the above. The screen attributes can be modified in the PROCESS BEFORE OUTPUT event block. The screen attributes can be modified in the PROCESS BEFORE OUTPUT and PROCESS AFTER INPUT event blocks. The screen attributes can be modified in the PROCESS AFTER INPUT event block.
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 frequently written When the table is small and seldom written When the table is large 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 Exceptions Export parameters Changing parameters Import parameters.
What is a plug? There are 4 correct answers to this question. Can be defined as default inbound Can be defined as an exit Can be defined as a startup Can be defined as inbound, outbound, or both Forms the basis of navigation within a Web Dynpro Can be assigned to multiple views Can be defined as inbound and be controlled by multiple outbound plugs Can be defined as outbound controlling multiple inbound plugs.
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 Modify the adapter class Create the BADI implementation Activate the enhancement project.
Which data types are incomplete ABAP standard data types? There are 3 correct answers to this question. C N F P I.
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. Transaction code Web service proxy Function group Class method Function module.
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. Set the interface property for key fields Add a client-side event in the view Create and link plugs between the views Edit the handler method in the view controller.
Which of the following generic types can you use to define a field symbol that will be assigned to a character string? There are 3 correct answers to this question Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers. Type xsequence Type csequence Type any table Type any Type clike.
Which components belong to an elementary search help? There are 2 correct answers to this question. Fixed values Attachment to a field Import / export parameters Selection method.
What features are provided by the database interface? There are 3 correct answers to this question. Data consistency check using foreign key relationships Conversion of Open SQL statements from ABAP statements into the corresponding database statements Access to SAP table buffers Syntax check of Native SQL commands Database independence of application programs.
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. Use the function builder to create the lock modules Use the Function Builder to create the lock modules. The lock objects are created in the program logic Use the Function Builder to create the lock modules and the lock objects Use the ABAP Dictionary to create the lock objects. The lock modules are created automatically.
You defined data reference z1 generically. Which statement would you use to access the content of the referenced variable? Please choose the correct answer. Assign z1 to < fs > Assign z1->* to < fs > Get reference of z1 into wa Assign (z1) to < fs >.
What do you have to take into account before you decide to buffer a table? Please choose the correct answer. The data must always be read from the buffer The database server must allow table buffering The entire table content must be loaded into the table buffer The data read from the buffer may NOT be current.
FORM routines (subroutines) can be used in which program types? There are 4 correct answers to this question. Executables Class pools Module pools Interface pools Function groups Type groups Subroutine pools.
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 an asterisk (*) It starts with an ampersand (&) It start with a plus (+).
Which of the following capabilities is provided by the Application Layer platform of SAP Netweaver? Please choose the correct answer. Master data management Business process management Multi-channel access Database and operating system abstraction.
Which options do you have to read data from multiple tables while using a SELECT statement? There are 3 correct answers to this question. Pooled tables Nested loop statements Join statements Database views Nested select statements.
Which property of the InputField UI element must be bound to a context attribute? Please choose the correct answer. value enable state visible.
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.
What ABAP statements can you use to create an instance of the class CL_GUI_CUSTOM_CONTAINER in an ABAP program? Please choose the correct answer. DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container… DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container…. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container… DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container…..
What does a Web Dynpro component contain? There are 3 correct answers to this question. UI elements Multiple views within a window Component controller A context Exactly one interface controller.
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 any Text = ‘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. ASSIGN data_ref->* TO < fs > WRITE < fs > WRITE data_ref->* . text_ref ?= data_ref. WRITE text_ref->*. GET REFERENCE OF data_ref->* INTO text_ref. WRITE text_ref->*.
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 The application server buffer is NOT used It can be used with any DBMS Syntax is checked at design time.
Which of the following function types in a GUI status are reserved for internal use? There are 2 correct answers to this question. E-EXIT S- SYSTEM T-TRANSACTION H-HELP REQUEST.
Which of the following ABAP dictionary types can you use to define domains? There are 3 correct answers to this question FLOAT NUMC CHAR DATE DEC.
To which context object is the attribute LEAD_SELECTION_INDEX related? Please choose the correct answer. Node Attribute Element Supply function.
What scheduling technique is used by the ABAP debugger dispatcher for processing user requests? Please choose the correct answer. Shortest First Round Robin Multiple Queue First in , First out.
Which boundary conditions lead to improved access time to an internal table? There are 3 correct answers to this question. Index access for standard tables Left justified part of key for hashed tables Fully qualified key for sorted tables Left justified part of key for sorted tables Index access for hashed tables.
What is variable-length structure called? Please choose the correct answer. Nested structure Link structure Flat structure Nested link structure.
Which of the following is a true statement? There are 3 correct answers to this question. All transportable objects have to be assigned to a package. Local repository objects can be transported. Repository objects and cross-client customization objects are assigned to the workbench request. Client-specific customization objects are assigned to the customizing request. Inactive objects can be transported.
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 Activate the enhancement project Write code for methods Create the BADI implementation Modify the adapter class.
How can you find customer exists in an ABAP program? There are 2 correct answers to this question. Search for ‘CL_EXTHANDLER’ in the program. Search for customer exists in the Repository Information System Search for customer exists in the program documentation Search for ‘CALL CUSTOMER’ in the program.
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 AT < itab > REFERENCE INTO < field_symbol >. ENDLOOP. LOOP AT < itab > TRANSPORTING INTO < field_symbol >. ENDLOOP. LOOP AT < itab > ASSIGNING < field_symbol >. ENDLOOP. LOOP AT < itab > INTO < field_symbol >. ENDLOOP.
Which of the following statements are correct? There are 3 correct answers to this question. The SELECT-OPTIONS statement creates an internal table with a header line. The internal table is also known as the selection table. The structure of the selection table created with SELECT-OPTIONS has four components: SIGN, OPTION, LOW, and HIGH. You can use the addition NO-DISPLAY to hide the input field on the selection screen. You can only specify default values for the LOW and HIGH fields of the SELECT-OPTIONS input field.
Which SELECT statement will always bypass the SAP table buffers? Please choose the correct answer. SELECT … FOR UPDATE … SELECT … SINGLE … SELECT … ENDSELECT. SELECT … INTO TABLE ….
You want to read data from two database tables A and B using a database join. Database table B contains details for data records stored in database table A. Your result should contain all combinations of matching rows from A and B plus all rows from A that do not have matching rows in B. Which statement do you use? Please choose the correct answer. SELECT … FROM a INNER JOIN b … SELECT … FROM a JOIN b … SELECT … FROM a LEFT OUTER JOIN b … SELECT … FROM b RIGHT OUTER JOIN a ….
Which of the following are table buffering types? There are 3 correct answers to this question Primary-key Full Generic Column-store Single-record.
What does the Refactoring Assistant allow you to do? There are 2 correct answers to this question. Rename all occurrences of a method Move components between superclasses and subclasses Move between classes and interfaces Rename all subclasses of a method.
When would you call the RFC function module synchronously? There are 2 correct answers to this question. During unidirectional communication During queue processing During two-way communication During interactive communication.
What does the enhancement category for a database table or structure do? There are 3 correct answers to this question. Makes a table Unicode-compliant Specifies the types of changes that can be made to the structure Can produce warnings at incompatible points for the structure Can identify where program behavior may change.
Report abuse Consent Terms of use