option
Cuestiones
ayuda
daypo
buscar.php
TEST BORRADO, QUIZÁS LE INTERESE: SAP ABAP C_TAW12_740 PREPARATION
COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
SAP ABAP C_TAW12_740 PREPARATION

Descripción:
SAP ABAP C_TAW12_740 PREPARATION

Autor:
Guindi
OTROS TESTS DEL AUTOR

Fecha de Creación:
16/05/2021

Categoría: Otros

Número Preguntas: 70
COMPARTE EL TEST
COMENTARNuevo Comentario
No hay ningún comentario sobre este test.
Temario:
Which of the following dynpro application can you use to transfer database data to the user interface? 1 correct answer. Interface controller Supply function Inbound plug Context node.
You want to include an element of type 'TABLE' in your Web Dynpro. Which action adds the corresponding columns to the table automatically? 2 correct answers. Generate a 'BIND_TABLE' method using the Web Dynpro method wizard Right click the table and select the 'CREATE BINDING' option Bind the table attribute 'DATA_SOURCE' to the context node Include the method 'BIND TABLE' of interface 'IF_WD_CONTEXT_NODE'.
The component interface of a Web Dynpro component contains three interface views. Which of the following controllers must also exist? 1 correct answer. One custom controller Three windows controllers Three component controllers One configuration controller.
You have created a Web Dynpro view that shows data for airline connection between cities. You want to display flight data for a specific date in a different view after the users selects a date and presses a button. Which of the following actions must you perform? 2 correct answers. Edit the handler method in the view controller Add a client-side event in the view Create and link plugs between the views Set the interface property for key fields.
You want to translate text in a Web Dynpro. From which should you inherit? 1 correct answer. CL_WD_COMPONENT_SERVICES CL_WD_COMPONENT_ASSISTANCE CL_WD_CONFIGURATION_MODEL CL WD CONTEXT SERVICES.
You have two Web Dympro component controller A and B. A uses B for display functions. Which of the following describe the external context mapping beteen A and B? 2 correct answers. The 'Interface Node' property is set on context node of A The 'Interface Node' property is set on context node of B The mapping target is defined on the context node of A The mapping origin is defined on the context node of A.
What can be exposed in the component interface of a web dynpro component? 3 correct answers. Custom methods of the component controller Public attributes of WINDOW controllers Context nodes of the WINDOW controllers Standard hook methods the component controller.
In which controller type can you embed a service call? 1 correct answer. Configuration controller View controller Component controller Interface controller.
When does SAP recommend that you use a full buffering type for a database table? 1 correct answer. When the table is very large and frequently written When the table is very small and frequently written When the table is very large and seldom written When the table is very small and seldom written.
Which of the following types of SQL statements always bypass the SAP table buffers? 2 correct answers. SELECT SUM( sales ) SELECT... UP T0 1 ROWS SELECT... INNER JOIN ... SELECT SINGLE ...
Table USER has the following fields: ID, FIRST_NAME, LAST_NAME. FIRST_NAME and LAST_NAME have a 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? 2 correct answers. SELECT * FROM users INTO TABLE lt_users AS a WHERE first_name = users~last_name SELECT * FROM users INTO TABLE lt_users WHERE first_name = users~last_name SELECT * FROM users INTO TABLE lt_users WHERE first_name = users~last-name.
tableA and tableB are partially buffered. Which of the following SELECT statements always access tha database? 2 correct answers. SELECT SINGLE CLIENT SPECIFIELD a b FROM tableA INTO CORRESPONDING FIELDS OF Is_A_B SELECT abed FROM tableA JOIN tableB ON tableA~a = tableB~e INTO CORRESPONDING FIELDS OF TABLE SELECT SINGLE FOR UPDATE a b FROM tableA INTO CORRESPONDING FIELDS OF Is_A_B WHERE c EQ '1234' SELECT a b FROM tableA INTO CORRESPONDING FIELDS OF TABLE It_A_B.
When are changes to the VB* tables transferred to the database? 1 correct answer. When the main program is executed When the enqueuer work process is executed When an update function module is executed When the update work process is executed.
You want to select all record from a database table where field City contains substring 'BU' in any position. Which WHERE clause can you use in an Open SQL statement? 1 correct answer. WHERE city LIKE '*BU*' WHERE city LIKE '+BU+' WHERE city LIKE '_BU_' WHERE city LIKE '%BU%'.
You want to count all customers within the same country and city. You want to display only the cities where three ar more customers exist. Which of the following SQL statements should you use? 2 correct answers. 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. SELECT country city cust_name COUNT(*) AS number FROM customers INTO TABLE it_customers GROUP BY country city HAVING number >= 3. SELECT country city cust_name FROM customers INTO TABLE it_customers GROUP BY country city HAVING COUNT(*) GE 3.
Which of the following are valid combinations of event visibility and handler method visibility? 2 correct answers. Private event and private handler Public event and protected handler Protected event and public handler Private event and public handler.
You add the CREATE PROTECTED addition to a class definition. From where can you instantiate the class? 3 correct answers. From the class itself From a parent class From any protected class From a child class From a friend class.
In subclass you want to redefine a method of the superclass. Which of the following conditions must be fufilled? 2 correct answers. The superclass method is an instance method The superclass method is abstract The subclass method a lower visibility than the superclass method The subclass method has same visibility as the superclass method.
How would you defined a method of an ABAP class to prevent this method from being available in subclass? 1 correct answer. Final Abstract Protected Private.
DOG is a subclass of ANIMAL, you have created a variable of type ANIMAL that references and instance of the DOG class. Which of the following statement can you use to copy this reference a to new variable fo the type DOG? 1 correct answer. MOVE ... ?TO ... WRITE ... TO ... MOVE ...TO... MOVE-CORRESPONDING ... TO ...
Which of the following steps are required to the set up a shared memory area? 3 correct answers. Declare a catalog object Enable multiple versions of an area root class Set the root object Generate an area root class Call the attach for white method of the area root class.
What the predefined reference variable used in ABAP OO to address the object itself? 1correct answer. ME SUPER SUPER SELF.
You want to add a field ZZPRICE to the SAP standard transparent table EKKO. Which of the following actions results in an enhancement of the SAP standard? 2 correct answers. Create an append structure and add ZZPRICE to it. Add ZZPRINCE to the Customizing include for the table. Insert ZZPRINCE into an SAP structure for the table. Insert ZZPRINCE at the and of the table.
Which of the following customer modification options are available in the table maintenance generator? 2 correct answers. Maintenance screens Events Search helps Append searches.
Which of the following can you define in the technical settings of a transparent table? 3 correct answers. Size category Table name Data class Buffering type Delivery class.
For which of the following purposes can you use the ABAP dictionary. 2 correct answers. To create locks objects To activate the logging in for transparent tables To maintain program translations To create development classes.
You use Unifield Modeling Language (UML) to design your classes. You want to describe the message exchange between objects. Which diagram type can you use? 1 correct answer. Class diagram Object diagram Component diagram Sequence diagram.
You want to add a field of type CURR to a transparent table. What else must you do? 1 correct answer. Create a new field CUKY as a predefined type Add a key field of type CUKY Create a reference to a field of type CUKY Add a check table that contains a field of type CUKY.
A structure has enhancement category 3: Can be enhanced (character type).Which set of elementary type is allowed for the new fields? 1 correct answer. C,D,N,T D,I,SRTIRNG,T C,D,N,X F,I,P,X.
Which of the following transaction can you use to define transparent tables? 1 correct answer. SE16N SE38 SE11 SM37.
You want to create a transparent table in the ABAP dictionary. When is the table physically created in the database? 1 correct answer. When you activate the table When you run the database utility transaction (SE14) When you insert the table name ans select Create Whe you save the table.
Which view types can you to join two tables with an outer join? 2 correct answers. Maintenance view Database view Projection view Help view.
When does SAP recommended that you use a hashed table? 1 correct answer. When a table must to sorted automatically by key in ascending order When a table is very large and you want to access the table by key only When a table is very large and you want to access the table by index only When a table must be accessible by both index and key.
How can you define an internal table in a private method of a class? 3 correct answers. DATA It_itab TYPE TABLE OF DATA It_itab TYPE TABLE OF DATA It_itab TYPE DATA It_itab TYPE < Table Type> DATA It_itab TYPE TABLE OF WITH HEADER LINE.
You want to create a transparent table. Which of the following must you define to activate the table? 3 correct answers. A delivery class A foreign key The primary key The MANDT field A short description.
Which of the following are valid control level changes within a loop over an internal table? 2 correct answers. COLLECT LAST END OF SUM.
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? 1 correct answer. VALUE DEFAULT OBLIGATORY READ-ONLY.
Which of the following structures is created when you use a table type to define one of its components? 1 correct answer. Deep structure Nested structure Flat structure Append 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? 2 correct answers. FIELD-SYMBOLS TYPE REF TO DATA. FIELD-SYMBOLS TYPE any. FIELD-SYMBOLS FIELD-SYMBOLS TYPE REF TO ANY.
Which of the following are fully-specified internal table types? 2 correct answer. Standard Any Index Hashed.
You want to define a formal parameter to a subroutine that accepts only internal tables of types standard and type sorted as actual parameters. Which of the following generic ABAP data types must you use? 1 correct answer. Sorted table Standard table Index table Hashed table.
Which fo the following ABAP standard types are incomplete? 2 correct answers. F N X STRING.
Which statement ends a screen sequence and starts from the initial screen? 1 correct answer. LEAVE TO SCREEN 0 LEAVE SCREEN CALL SCREEN SET SCREEN 0.
Which of the following actions can be performed in the Process After Input (PAI) processing block? 1 correct answer. Set fo the GUI status of the screen Modify screen attributes dynamically Set title bar Check the function code.
Using the system table what can you modify through a LOOP AT SCREEN ... ENDLOOP construct? 1 correct answer. Values of screen elements Function codes of buttons Screen status Attributes of screen elements.
Which ABAP statement can make an element visible that you statically defined as invisible? 1 correct answer. SCREEN-INVISIBLE = 0 SCREEN-ACTIVE = 1 SCREEN-ACTIVE = 0 SCREEN-INVISIBLE = 1.
Which of the following function types in a GUI status are reserved for internal use? 2 correct answers. S - System E - Exit H - Help request T - Transaction.
When is a foreign key check performed on an input/output field? 1 correct answer. If the fields refers to a dictionary field for which an append search is defined If the fields refers to a dictionary field for which a value help is defined If the field refers to a dictionary filed for which a check table is defined If the field refers to a dictionary filed for which a search help is defined.
You want 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 achieve this? 1 correct answer. START-OF-SELECTION AT-SELECTION-SCREEN END-OF-SELECTION INITIALIZATION.
Which of the following ABAP code lines is valid? 3 correct answers. CONSTANTS gc_matnr TYPE matnr VALUE '100' PARAMETERS p_matnr TYPE matnr DAFAULT '100' DATA gc_matnr TYPE matnr DEFAULT '100' SELECT-OPTIONS s_matnr TYPE matnr DAFAULT '100' STATICS s_matnr TYPE matnr TYPE matnr DAFAULT '100'.
How can you add a section breakpoint to your program? 2 correct answers. Set a breakpoint in the ABAP debugger and press F8 Set a breakpoint in the ABAP debugger and select Save Set a breakpoint in the ABAP editor Execute command /h.
You define a generic variable that can hold the ABAP types C,D,N,STRING and T. You want to restrict the use of other ABAP types. Which generic data type must you use in the definition? 1 correct answer. CLIKE SIMPLE DATA CSEQUENCE.
Which type of transport task is used when you modify SAP standard objects? 1 correct answer. Transport of copies Workbench Repair Development/Correction.
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 dast the assigned memory area? 1 correct answer. The default type I The type of var The default type STRING The type of.
You want to move a transport request from the development system to the subsequent system. Which of the following are prerequisites for this? 2 correct answers. The extended program check must show no warnings The transport request must released All tasks of the transport request must be assigned to the same user All object included in the transport request must be activated.
Which of the following includes are generated with you create a function group? 1 correct answer. LxxxxTOP LxxxxUXX LxxxxOO1 LxxxxFOI.
Before you can add programming logic to your ABAP program that checks automations, which of the following do you have to create? NOTE: 2 correct answers: auth. object and auth. role. An authorization profile An authorization role An authorization field An authorization object.
When would you call the RFC function module synchronously? 2 correct answers. During interactive communication During two-way communication During queue processing During unidirectional communication.
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? 1 correct answer. REFRESH_TABLE_DISPLAY in module PAI REFRESH_TABLE_DISPLAY in module PBO SET_TABLE_FOR_FIRST_DISPALY in module PBO SET_TABLE_ FOR_ FIRST_ DISPALY in module PAI.
Which of the following transactions are integrated in the ABAP Workbench tools? 2 correct answers. Process Overview (SM50) Overview of Job Selection (SE37) ABAP Editor (SE38) Class Builder (SE24).
Which of the following can you do with the SAP Code Inspector? 1 correct answer. Monitor runtime behavior Monitor background tasks Perform static code checks Analyze runtime data.
Which the following values are replaceable In debugger mode? 1 correct answer. Tables names Constants Fields names Variables.
What is the SAP recommended naming convention for append structures of standard SAP tables? 1 correct answer. The name of the append structure must start with ZA. The components of an append structure should start with ZZ or YY. The components of an append structure should start with Z or Y The name of the append structure must start with ZZ or YY.
To which ABAP Dictionary definition can you assign fixed values? 1 correct answer. Data element Field of a transparent table Component of a structure Domain.
Which of the following statements dynamically changes the data type of field z1? 1 correct answer. Assign z1 to <fs> casting Assign z1 to <fs> Move z1 to <fs> Unassign <fs>.
What do global types and local types have in common? 1 correct answer. Documentation Field labels Search help Technical information.
What options do you have when setting a watchpoint? 2 correct answers. Stop at predefined conditions for a specific variable Stop at predefined conditions for all variables. Stop at any change of all variables Stop at any change of a specific variable.
Where can you set the GUI status and the GUI title for a classical screen (dynpro)? 1 correct answer. In a module called from PBO of the screen In the attributes of the screen In the properties of the related header UI element In a module called from PAI of the screen.
In which database table type is there a one-to-one relationship between the Dictionary table definition and the relevant physical table in the database? 1 correct answer. Cluster table . Pooled table Transparent table Internal table.
A custom transparent table was created with delivery class A and a table maintenance view was generated for this table. You change the delivery class to C and the table is activated successfully. What additional steps do you have to complete? 1 correct answer. Maintain and transport the table using the Maintain Table Views transaction (SM30). Activate and adjust the database Regenerate the existing maintenance view and adjust the table. Delete the original maintenance view and then create and generate a new one.
Denunciar Test