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

Description:
C_TAW12_750 - SAP - ABAP with SAP NetWeaver 7.50

Author:
AVATAR
sap
Other tests from this author

Creation Date:
29/05/2020

Category: Others

Number of questions: 40
Share the Test:
New CommentNuevo Comentario
No comments about this test.
Content:
Which prerequisites must be fulfilled before a repository object can be transported? There are 3 correct answers to this question. An inactive version of the repository object must exist. A transport layer must be assigned to the package. The repository object must be assigned to a change request. The repository object must be assigned to a package. An application component must be assigned to the repository object.
What is the purpose of the enqueuer work process? Please choose the correct answer. It processes update requests. It processes logical locks requests. It processes requests for a print output It processes requests triggered by an active user.
The data buffered on each application server… Please choose the correct answer. Depends on the users. Is never the same. Is always the same. Is does not the same.
What does the Refactoring Assistant allow you to do? There are 2 correct answers to this question. Move between classes and interfaces Move components between superclasses and subclasses Rename all occurrences of a method Rename all subclasses of a method.
In which order do you implement a new BAdI? Please choose the correct answer. Create BAdI Implementation Create Enhancement Spot Implementation Create Enhancement Project Create BAdI Implementation Create BAdI Implementation Create Enhancement Project Create Enhancement Spot Implementation Create BAdI Implementation.
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.
What are the reasons to use modularization?  There are 3 correct answers to this question. Easier maintenance Portability across DBMS Improved performance Promotes reusability Improved transparency.
Which of the following transactions can you use to define transparent tables? Please choose the correct answer. SE11 SM37 SE16N SE38.
What is the root class in the RTTS inheritance tree? Please choose the correct answer. CL_ABAP_COMPLEXDESCR CL_ABAP_TYPEDESCR CL_ABAP_ELEMDESCR CL_ABAP_DATADESCR.
Which of the following customer modifications options are available in the table maintenance generator? There are 2 correct answers to this question. Search helps Maintenance screens Append searches Events.
A class is defined as follows: CLASS my_class DEFINITION. PUBLIC SECTION. METHODS do_something. EVENTS state_changed. CLASS-METHODS static1. PRIVATE SECTION. TYPES t table TYPE STANDARD TABLE OF t001 WITH NON-UNIQUE DEFAULT KEY. CONSTANTS gc_const TYPE IVALUE 1. ENDCLASS. Which components of the class can static method static1 address directly? There are 2 correct answers to this question. The gc_const constant The t_table type. The state_changed event. The do_something method.
What are the prerequisites when creating an append structure for a standard SAP table? There are 2 correct answers to this question The enhancement category of the table is NOT set to ‘Not enhacable’ The table cannot have any fields of type FLTP The fields in the append structure should start with YY or ZZ The table must be copied before the append structure can be created.
What can you use to achieve polymorphism? Please choose the correct answer. Reports Events Inheritance Subroutines.
Which of the following elements can a string template contain? There are 2 correct answers to this question. Function module calls String processing statements Literals Functional method calls.
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. Class diagram Component diagram Sequence diagram Object diagram.
A function module that has 2 classical exceptions is called with actual parameter values in such a way that both exception conditions are fulfilled. How will the runtime system behave? Please choose the correct answer. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option. No exception will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the second except on. The first exception that occurs will be raised. In the calling program, sy-subrc has the value specified for the first exception.
What pre-defined ABAP data type is deep? Please choose the correct answer. N STRING X DECFLOAT34.
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 Index Table Sorted Table Standard Table Any Table Hashed Table.
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. MEMORY ID VALUE-CHECK MODIF ID DEFAULT.
What are characteristics of a hashed internal table? There are 2 correct answers to this question. It can have a non-unique key. It can be accessed using the key. It can be accessed using the index. It must have a unique key.
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. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. AT SELECTION-SCREEN 4. START-OF-SELECTION 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. START-OF-SELECTION 4. AT SELECTION-SCREEN 1. AT SELECTION-SCREEN OUTPUT 2. INITIALIZATION 3. AT SELECTION-SCREEN 4. START-OF-SELECTION.
In which event block can you overwrite the default value of a PARAMETERS field on the selection screen? Please choose the correct answer. INITIALIZATION AT SELECTION-SCREEN START-OF-SELECTION PROCESS BEFORE OUTPUT.
Which action on the underlying dictionary objects triggers a database table conversion? Please choose the correct answer. Reducing the size of the field. Changing the order of non-key fields Inserting an APPEND structure Inserting a field of type reference.
What can you create using the ABAP Dictionary? There are 3 correct answers to this question. Type pools Transparent tables Internal tables Domains Field symbols.
When starting the Debugger, what circumstance causes the runtime error DEBUGGING_NOT_POSSIBLE? Please choose the correct answer. When more than five sessions are already associated with this login user Starting a non-exclusive mode in a productive system When more than six sessions are already associated with this login user When the number of debugging sessions on the server exceeds the value defined by the profile parameter rdisp/wpdbug_max_no.
What must exist before you can create a new transportable function module? There are 3 correct answers to this question. Function group Change request Package Module pool Type group.
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.
In which program types can you create dialog screens? There are 3 correct answers to this question Interface pool Class pool Module pool Function group Executable program.
You write a program that updates a data record in the data base using the following statement: UPDATE scar FROM Is_scarr. Which of the following tasks does the Database Interface perform? There are 2 correct answers to this question It applies a logical lock to the updated data record. It translates the statement to native SQL It checks the authorization of the current user It restricts the access to the log-on client.
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 class A handler method for the double_click event A method call to refresh the display A SET HANDLER statement to register the handler to the event A method call to raise the double_click event.
What are the advantages of defining texts symbols in executable programs? There are 2 correct answers to this question They can store up to 256 characters. They are easier to maintain than literals. The text of the text symbol can be changed at runtime They facilitate multilingual functionality.
What must you do to define a database view using the ABAP Dictionary? There are 3 correct answers to this question. Define selection criteria for the view. Define the join conditions between the tables. Choose the fields from the tables that should be part of the view. Choose the database tables from where the view acquires data. Define buffering settings for the underlying database tables.
What are some of the new features of Open SQL in SAP NetWeaver 7.5? There are 2 correct answers to this question. CASE expressions Full Join String expressions Intersection.
What do global types and local types have in common? Please choose the correct answer. Documentation Search help Technical information Field labels.
You define database view A and maintenance view B in the ASAP Dictionary. What restrictions apply to these views? There are 2 correct answers to this question. The tables joined in B must have foreign key relationships. The tables joined in A must have foreign key relationships. The join type of both A and B is an inner join Only A can be used in the FROM clause of a SELECT statement.
Which of the following statements regarding search helps are true? There are 3 correct answers to this question. Help views can also be used for the selection method for search help. You can use transparent tables for the search help selection method. You can use a database view for the search help selection method. You can use a maintenance view for the search help selection method.
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 ENCODING addition The storage order The byte order The code page.
What scheduling technique is used by the ABAP debugger dispatcher for processing user requests? Please choose the correct answer. First in , First out Multiple Queue Round Robin Shortest First.
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 Into fields with the same name and same type From left to right Into fields with the same type .
When are the changes to the VB* table transferred to the database? Please choose the correct answer. When an update function module is executed When the enqueue work process is executed When the update work process is executed When the main program is executed.
Report abuse