Cuestiones
ayuda
option
Mi Daypo

TEST BORRADO, QUIZÁS LE INTERESERTFL

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del test:
RTFL

Descripción:
menciones honorificas

Autor:
AVATAR

Fecha de Creación:
29/05/2016

Categoría:
Personalidad

Número preguntas: 99
Comparte el test:
Facebook
Twitter
Whatsapp
Comparte el test:
Facebook
Twitter
Whatsapp
Últimos Comentarios
No hay ningún comentario sobre este test.
Temario:
Which of the following statements can you use to set up checkpoints in an ABAP program? ASSERT BREAK BREAK POINT LOG-POINT CHECK.
In an ABAP Program you have the following code sequence: DATA var TYPE n LENGTH 1 FIELD-SYMBOLS <fs> TYPE c ASSING var TO <fs> CASTING Which type is used to cast the assigned memory area? The type of var The type of <fs> The default type STRING The default type I.
Which of the following includes are generated when you create a function group? LxxxxTOP LxxxxUXX LxxxxO01 LxxxxF01.
Which type of transport task is used when you modify SAP standard objects? Repair Workbrench Development/Correction Transport of copies.
Before you can add programming logic to your ABAP program that checks authorizations, which of the following do you have to create? An authorization object An authorization role An authorization field An authorization profile.
Which of the following transactions are integrated in the ABAP workbrench tools? Class Builder (SE24) ABAP Editor(SE38) Process Overview (SM50) Overview of Job Selection (SM37).
You define a generic variable that can hold the ABAP types C,D,N, STRING and T. You want to restrict the unit of other ABAP types. Which generic data type must you use in the definition? CLIKE SIMPLE CSEQUENCE DATA.
Which of the following can you do with the ABAP Debugger? Compare data objects Analyze internal tables Analyze memory usage Change source code Analyze SQL traces.
Which of the following customer modification options are available in the table maintenace generator? Maintenance Screens Events Append Searches Search help.
Which of the following values are replaceable in debugger mode? Variables Constraint Table Names Field Names.
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? ASSIGN data_ref.->* TO <fs> WRITE <fs>. Text_ref ?= data_ref. WRITE text_ref->* WRITE data_ref->* GET REFERENCE OF data_ref->* INTO text_ref. WRITE text_ref->*.
You display the content of an internal table using an ALV Grid Control. The content of the internal table changes during the program. Which CL_GUI_ALV_GRID class method can you use to display the changed content REFRESH_TABLE_DISPLAY in module PBO SET_TABLE_FOR_FIRST_DISPLAY in module PBO REFRESH_TABLE_DISPLAY in module PAI SET_TABLE_FOR_FIRST_DISPLAY in module PAI.
You want to develoup a validation routine for a selection screen field, If a wrong value is entered into the field an error message should be displayed and the focus should move to the field Which event do you use to achive this? AT SELECTION-SCREEN END-OF-SELECTION START-OF-SELECTION INITIALIZATION.
A structure has enhancement category 3. Can be enhanced (character-type). Which set of elementary types is allowed for the new fields? C, D, N, T C, D, N, X D, I, STRING, T F, I, P, X.
When does SAP recommend that you use hashed table? When the table is very large and you want to access the table by key only When a table must be accessible by both index and key When a table is very large and you want to access the table by index only. When a table must to be sorted automatically by key in ascending order.
Which of the following are valid control level changes within a loop over an internal table? END of <f> LAST COLLECT SUM.
To which of the following must you assign newly created SAP Repository objects? Package Function group Transport task Transport request.
You are writing a function module that will be called from external systems via remote function call (RFC). How do you report an error back to the external caller? Write the error data into a EXPORTING parameter that is passed by reference Write the error data into a CHANGING parameter that is passed by value Write the error data into a RECEIVING parameter that is passed by value Write the error data into a TABLES parameter that is passed by reference.
Which task does the dispatcher perform? Distribute requests to the work processes Administrates the lock table in shared memory. Executes programs that run without user interaction. Verifies the correctness of ABAP programs.
Which of the following can you define in the technical settings of a transparent table? Data class Size category Buffering type Delivery class Table name.
You want to add a field of type CURR to a transparent table What else must you do? Create a reference to a field of type CUKY Create a new field CUKY as a predefined type. Add a check table that contains a field of type CUKY. Add a key field of type CUKY.
Which of the following transactions can you use to define transparent tables? SE11 SE38 SM37 SE16N.
You want to add a field ZZPRICE to the SAP standard transparent table EKKO. Which of the following actions result in an enhancement of the SAP standard? Create an Append stucture and Add ZZPRICE to it Add ZZPRICE to the Customizing include for the table Insert ZZPRICE at the end of the table. Insert ZZPRICE into a SAP structure for the table.
Which action on the underlying dictionary object triggers a database table conversion? Reducing the size of a field Inserting a field of type reference Changing the order of non-key fields Inserting an append structure.
You want to create a transparent table in the ABAP Dictionary When the table is physically created in the database? When you activate the table When you run the database transaction utility transaction (SE14). When you save the table When you insert the table name and select Create.
You want to create a transparent table Which of the following must you define to activate the table? A delivery class A short description The primary key A foreign Key The MANDT field.
For which of the following purposes can you use the ABAP Dictionary? To activate loggings for transparent tables To create lock objects To maintain program translations To create development classes.
When would you call the RFC module synchronously? During interactive communication During two-way communication During queue processing During unidirectional communication.
Which of the following ABAP code lines is valid? PARAMETERS p_matnr TYPE matnr DEFAULT ‘100’ CONSTANTS gc_mantr TYPE matnr VALUE ‘100’ Statics s_matnr TYPE matnr VALUE ‘100’ SELECT-OPTIONS s_matnr TYPE matnr DEFAULT ‘100’ DATA gc_mantr TYPE matnr DETFAUL ‘100’.
How can you add a session breakpoint to your program Set a breakpoint in the ABAP Debugger and press F8 Set a breakpoint in the ABAP Editor Execute command /h Set a breakpoint in the ABAP Debugger and select save.
You want to move a transport request from the development system to the subsequent system Which of the following are prerequisites for this? The transport request must be relased All objects included in the transport request must be activated All tasks of the transport request must be assigned to the same user The extended program check must show no warnings.
You want to select data from two tables and store the results in a structure. Table PARTNER contains the fields PART_ID and KIND. Table CONTRACT contains the fields CONT_ID, COND_TYPE, and DIVISION. The structure is defined as follows: DATA: BEGIN OF wa_result, Part_id TYPE partner-part_id, cont_id TYPE contract-cont_id, Cont_type TYPE contract-cont_type, END OF wa_result, It_result TYPE TABLE OF wa_result. How can you replace the following SELECT statement with an outer join? SELECT part_id FROM partner INTO wa_result WHERE kind = ‘Residential’. SELECT cont_idFROM contact INTO wa-result-cont_id WHERE part EQ wa_partner-part_id AND division EQ ‘Water’. APPEND wa_result to It_result. ENDSELECT. IF sy-subrc <> 0. CLEAR wa_result-cont_id. APPEND wa_result TO It_result. ENDIF. ENDSELECT. SELECT part_id cont_id FROM partner AS a LEFT JOIN contract AS b ON a~part_id = b~part_id INTO CORRESPONDING FIELDS OF TABLE it_result WHERE kind = ‘Residential’ AND division EQ ‘Water’. SELECT part_id cont_id FROM partner LEFT JOIN contract ON partner-part_id = contract-part_id AND partner-kind EQ ‘Residential’ INTO CORRESPONDING FIELDS OF TABLE it_result WHERE division EQ ‘Water’. SELECT part_id cont_id FROM partner AS a LEFT JOIN contract AS b ON a~part_id = b~part_id b~division EQ ‘Water’ INTO TABLE it_result WHERE kind = ‘Residential’ SELECT part_id cont_id FROM partner LEFT JOIN contract ON partner-part_id = contract-part_id AND contract-division EQ ‘Water’ INTO TABLE it_result WHERE kind = ‘Residential’ .
For a given date (variable lv_date) You want to find all the connections from Franfurt to Sydney with exactly one stopover, you want to fly from the stopover city to Sydney, on the same day that you arrive in the stopover city Table ZFLGIHTS holds the following information about flights: Flightid: primary key Cityfrom: departure city Datefrom: departure date Timefrom: departure time Cityto: destinatation city Dateto: destination time Timeto: destination time Which of the following open SQL Queries can you use to find all the stopover cities? SELECT cityfrom INTO TABLE it_9cities FROM zflights AS destination WHERE cityto IN ( SELECT DISTINCT cityrom FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘Franfurt’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’. SELECT cityfrom INTO TABLE it_cities FROM zflights AS destination WHERE cityfrom IN ( SELECT DISTINCT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘Franfurt’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’. SELECT DISTINCT cityto INTO TABLE it_cities FROM zflights AS destination WHERE cityfrom IN ( SELECT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘Franfurt’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’. SELECT DISTINCT cityfrom INTO TABLE it_cities FROM zflights AS destination WHERE cityfrom IN ( SELECT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘Franfurt’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’.
TableA and tableB are partially buffered. Which of the following SELECT statements always access the database? SELECT SINGLE FOR UPDATE a b FROM tableA INTO CORRESPONDING FIELDS OF ls_A WHERE c EQ ‘1234’ SELECT a b FROM tableA INTO CORRESPONDIND FIELDS OF TABLE it_AB SELECT a b c d FROM tableA JOIN tableB ON tableA~a EQ tableB~e INTO CORRESPONDING FIELDS OF TABLE TABLE it_A_B. SELECT SINGLE CLIENT SPECIFIED a b FROM tableA INTO CORRESPONDING FIELDS OF ls_AB.
Table USER has the following fields: ID, FIRST_NAME, LAST_NAME, FIRST_NAME, LAST_NAME have the same basic type and length. You want to compare fields FIRST_NAME and LAST_NAME to each other. Which of the following SELECT statements can you use? SELECT * FROM users AS a INTO TABLE it_users WHERE a~first_name = a~last_name SELECT * FROM users INTO TABLE it_users WHERE first_name = users~last_name SELECT * FROM users INTO TABLE it_users WHERE first_name = users-last_name SELECT * FROM users AS a INTO TABLE it_users WHERE a~first_name = last_name.
You count all customers within the same country and city. You want to display only the cities where three or more customers exist. Which of the following SQL statements should you use? SELECT country city cust_name FROM customers INTO TABLE it_customers GROUP BY country city cust_name HAVING COUNT( * ) GE 3. SELECT country city cust_name COUNT( * ) AS number FROM customers INTO TABLE it_customers GROUP BY country city HAVING number >= 3. SELECT country city COUNT( * ) AS number FROM customers INTO TABLE it_customers GROUP BY country city HAVING number GE 3. SELECT country city FROM customers INTO TABLE it_customers GROUP BY country city HAVING COUNT( * ) >= 3. .
Which of the following types of SQL statements always bypass the SAP table buffers? SELECT … INNER JOIN … SELECT SUM( sales ) SELECT SINGLE SELECT … UP TO 1 ROWS.
DOG is a subclass of ANIMAL. You have created a variable of type ANIMAL that references an instance of DOG class. Which of the following statements can you use to copy this reference to a new variable of type DOG? MOVE … TO … MOVE-CORRESPONDING … TO … WRITE … TO … MOVE … ?TO ….
Which of the following steps are required to set up a shared memory area? Call the attach_for_write method of the area root class Set the root object Enable multiple versions of an area root class Declare a catalog object Generate an area root class.
You add the CREATE PROTECTED addition to a class definition From where can you instantiate the class? From any protected class From a friend class From a child class From a parent class From the class itself.
How would you define a method of an ABAP class to prevent this method from being available in a subclass? Protected Final Private Abstract.
Which of the following are valid combinations of event visibility and handler method visibility? Private event and private handler Private event and public handler Public event and protected handler Protected event and public handler.
In a subclass you want to redefine a method of the superclass Which of the following conditions must be fulfilled? The superclass method is abstract The subclass method has same visibility as the superclass method The subclass method has a lower visibility than the superclass method The superclass method is an instance method.
You use Unified Modeling Language (UML) to design your classes. You want to describe the message exchange between objects Which diagram type can you use? Component diagram Sequence diagram Object diagram Class diagram.
What is the predefined reference variable used in ABAP OO to address the object itself? Super This Me self.
How can you define an internal table in a private method of a class? DATA it_itab TYPE TABLE OF <Dictionary Table> DATA it_itab TYPE TABLE OF <Dictionary Table> WITH HEADER LINE DATA it_itab TYPE TABLE OF <Structure Type> DATA it_itab TYPE <Table Type> DATA it_itab TYPE <Dictionary Table>.
Which of the following characters is the first of a menu exit function code? & + - *.
Which of the following enhancements calls a customer function module? User Exit Customer exit Business Transaction Event Business Add-In (BAdI).
Which of the following actions can be performed in the process After Input (PAI) processing block? Set the (tittlebar) Modify screen attributes dynamically Set the GUI status of the screen Check the function code.
Which ABAP statement can make an element visible that you statically defined as invisible? SCREEN-ACTIVE = 1 SCREEN-ACTIVE = 0 SCREEN-INVISIBLE = 0 SCREEN-INVISIBLE = 1.
Which statement ends a screen sequence and starts from the initial screen? CALL SCREEN SET SCREEN 0 LEAVE SCREEN LEAVE TO SCREEN 0.
Using the screen system table, what can you modify through a LOOP AT SCREN … END LOOP construct? Values of screen elements Attributes of screen elements Screen status Function codes of buttons.
When is foreign key check performed on an input/output field? If the field refers to a dictionary field for which an append search is defined If the field refers to a dictionary field for which a check table is defined If the field refers to a dictionary field for which a value help is defined If the field refers to a dictionary field for which a search help is defined.
Which of the following function types in a GUI status are reserved for the internal use? H – Help request E – Exit T – Transaction S – System.
Which view types can you use to join two tables with outer join? Maintenance view Projection view Database view Help view.
Which of the following capabilities is provided by the Application Platform layer of SAP NetWeaver? Master data management Database and operating system abstraction Business process management Multi-channel access.
Which of the following ABAP standard types are incomplete? N X F STRING.
In an ABAP program, you want to assign an initial value to an elementary data object when you define it. Which addition must you use? READ-ONLY OBLYGATORY DEFAULT VALUE.
Which of the following structures is created when you use a table type to define one of the components? Deep structure Flat structure Append structure Nested structure.
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? FIELD-SYMBOLS <fs> FIELD-SYMBOLS <fs> TYPE ANY FIELD-SYMBOLS <fs> TYPE REF ANY FIELD-SYMBOLS <fs> TYPE REF TO DATA.
Which of the following ABAP statements throws an error at the system check? DATA variable. DATA variable(5) TYPE t. DATA variable(5) TYPE n. DATA variable(5) TYPE p.
You want to define a format parameter to a subroutine that accepts only internal tables of type standard and type stored as actual parameters. Which of the following generic ABAP data types must you use? Hashed table Sorted table Standard table Index table.
You want to include an element of type ‘Table’ in your Web Dynpro. Which action adds the corresponding columns to the table automatically? Right click the table and select the ‘CREATE BINDING’ option Generate a ‘BIND_TABLE’ method using the Web Dynpro method wizard Bind the table attribute ‘DATA_SOURCE’ to the context node Include the method ‘BLIND_TABLE’ of IF_WD_CONTEXT_NODE.
The component interface of a Web Dynpro component contains three interfaces views. Which of the following controllers must also exist? Three component controllers Three windows controllers One custom controller One configuration controller.
You have created a Web Dynpro view that shows data for airline connections between cities. You want to display flight data for specific date in a different view after the user selects a date and presses a button. Which of the following actions must you perform? Create and link plugs between the views Add a client-side event in the view Set the interface property for key fields Edit the handler method in the view controller.
In which controller type can you embed a service call? Component controller Configuration controller View controller Interface controller.
Which of the following items are used in a Web Dynpro application to transport database data to the user interface? Supply function Inbound plug Interface controller Context node.
You have two Web Dynpro component controllers A and B for display functions. Which of the following describe the external context mapping between A and B? The ‘Interface Node’ property is set on context nodes for B The mapping target is defined on the context node of A The ‘Interface Node’ property is set on context nodes for A The mapping target is defined on the context node of B.
What can be exposed in the component interface of a Web Dynpro component? Public attributes of WINDOW controllers Context nodes of WINDOW controllers Standard hook methods of the component controller Custom methods of the component controller.
A transport company keeps track of its available capacity in two tables, table VEHICLES and table TRANSPORT. To accept a new transport of a certain capacity, a vehicle with sufficient capacity must be found in the table VEHICLES. If a record is found, a new record is created in the table TRANSPOR. The capacity is then adjusted in the VEHICLES. You have four function modules at your disposal: UPD_VEHI_A and UPD_VEHI_B update matching record in table VEHICLES. If an error occurs both issues a message of type X. If no error occurs only UPD_VEHI_A issues a message of type I. UPD_TRAN_A and UPD_TRAN_B create a single record in table TRANSPORT. If an error occurs both issues a message of type X. If no error occurs only UPD_TRANS_A issues a message of type I. Which of the following function module calls ensures a single logical unit of work? 1. UPD_VEHI_A 2. UPD_TRAN_A 1. UPD_TRAN_B 2. UPD_VEHI_B 1. UPD_TRAN_A 2. UPD_VEHI_B 1. UPD_VEHI_A 2. UPD_TRAN_B.
When does SAP recommend that use a full buffering type for a database table? When the table is very large and seldom written When the table is very large and frequently written When the table is very small and frequently written When the table is very small and seldom written .
When are changes to the VB* tables transferred to the database? When an update function module is executed When the main program is executed When the enqueue work process is executed When the update work process is executed .
You want to select all 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? WHERE city LIKE ‘_BU_’ WHERE city LIKE ‘%BU%’ WHERE city LIKE ‘+BU+’ WHERE city LIKE ‘*BU*’.
You want to translate a dynamic text in a dynpro, which of the following must you inherit for this? CL_WD_COMPONENT_ASSISTANCE CL_WD_COMPONENT_SERVICES CL_WD_CONFIGURATION_MODEL CL_WD_CONTEXT_SERVICES .
How do you insert a subscreen in the initial screen? Choose the correct answer Use SET SUBSCREEN in a PBO module in the initial screen Use CALL SUBSCREEN in the flow logic of the initial screen Use SET SUBSCREEN in the flow logic of the initial screen Use CALL SUBSCREEN in a PBO module in the initial screen .
Which of the following is an implicit enhancement?( Protected Method Premethod Private Method Overwrite Method .
What property of the element InputField UI should be bound to context attribute? Enable Visible Value State.
What compontents belong to an elementary search help? Fixed values Import / Export Parameters Selection method Attachment field.
What is mandatory for automatic data transport between a variable and an input field on a classical screen (dynpro)? The name of the variable and the name of the input field must be identical The variable must be declared using the TABLES statement The property OUTPUT of the input field must be set The variable must be declared using the DATA statement .
Using the screen system table What can you modify through a boucle in SCREEN … ENDLOOP? Values of the screen GUI Status Function code Attributes of the screen elements .
You are working with the new ABAP debugger and you want to change the content of an internal table, What actions are allowed?( Delete selected rows Change the content of the row and Press Enter Delete all the content of an internal table Change the content of the row and press SAVE Delete the table of memory .
Which prerequisites must be fulfilled before a repository object can be transported? An Application component must be assigned to the repository object The repository object must be assigned to a package The repository object must be assigned to a change request An inactive version of the repository object must exist A transport layer must be assigned to the package .
How can you find if a client exists in an ABAP program? Search for ‘CL_EXTHANDLER’ in the program. Búsqueda para el cliente existe en la documentación del programa Search for ‘CALL CUSTOMER’ in the program Search for client in the repository information system .
You want to use a BAdI to extend the functions of an SAP program. Which of the following tasks in necessary? Create an enhancement project using a customer exit Implement a class that implements that BAdI interface Call the BAdI Define an Interface for the BAdI .
What can you change in ABAP debugger? Value of a reference variable Constant value Content of an internal table Structure definition .
Which of the following you have to create to be able to use the business Add in (BADI)?( Create the Badi implementation Activate the enhancement proyect Write code for methods Modify the adapter class .
When you analize a program what tasks can you do using the code inspector? Determine database tables used Discover used variables Inspect memory usage Evaluate the necessary time for program execution Execute extended check program .
You have 2 objects: O1 of type class C1 and O2 of type class C2. Class C2 is a subclass of superclass C1. Which of the following implements an up cast? O1 = O2. MOVE O1 TO O2. MOVE O1 ?TO O2. O2 ?= O1. .
Which of the following can you do with the SAP Code inspector? Analyze Runtime Data Monitor background tasks Monitor runtime behavior Perform Static code checks .
Which of the following are fully-specified internal table types? Hashed Index Standard Any.
Which Hook method exists for all controller types? Wddoonopen() Wddoinit() Wddoonclose() Wddobeforenavegation() .
To which context object is the attribute LEAD_SELECTION_INDEX related? Attribute Node Element Supply function .
You are establishing the business logic layer for a web dynpro component. Which service types are available in the service call wizard? Function module Function group Web service proxy Transactioncode Class method .
How do you establish a context mapping within a dynpro? Through the drag and drop thechnique Through the wizard assistant Set the target node in the interface controller Combine the controller views in the window controllers .
Which of the following are standard BAPIS? Getlist Getdetail Create,Change,Delete,Cancel Customer exits .
What must you do to define a database view using the ABAP Dictionary? Choose the fields from the tables that should be part of a view Define buffering settings for the underlying database tables Define the join condition between the table Define selection criteria for the view Choose the database tables from where the view acquires data .
You have written an ABAP executable program that displays the flight connections between cities for your customer. You hand over your program to your customer maintenance and need to explain to the customer's programmer the properties of event blocks Event Blocks starts with event key word and end with the start of any other modularization block. For example , another event block or subroutine. Event Blocks are executed in sequence they occur in the program. The ABAP runtime decides in which sequence to execute the event blocks Event blocks can be nested , for example , you can have event blocks inside another event blocks .
Which event is assigned for a statement writted if there is no specified block? START-OF-SELECTION AT-SELECTION SCREEN LOAD OF PROGRAM INITIALIZATION.
How do you start an executable program in a synchronous call? SUBMIT … VIA SELECTION-SCREEN CALL PROGRAM CALL SCREEN SELECT OPTIONS .
Denunciar test Consentimiento Condiciones de uso