option
Cuestiones
ayuda
daypo
buscar.php

TEST BORRADO, QUIZÁS LE INTERESE: Taw 12 Model 1

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
Taw 12 Model 1

Descripción:
SAP Certified Development Associate- ABAP with SAP NetWeaver 7.40 v5.0 (C_TAW12_

Autor:
AVATAR
Pedro
OTROS TESTS DEL AUTOR

Fecha de Creación: 03/01/2024

Categoría: Informática

Número Preguntas: 84
COMPARTE EL TEST
COMENTARNuevo Comentario
No hay ningún comentario sobre este test.
Temario:
What do global types and local types have in common? Documentation Field labels Search help Technical information.
You always want to check the user authorization for data entered in an input field of a selection screen. Where do yo do this? In the event block AT SELECTION-SCREEN In the event block AT SELECTION-SCREEN OUTPUT In the event block INITIALIZATION In the event block AT SELECTION-SCREEN on VALUE-REQUEST.
You want to move a transport request from the development system to the subsequent system. Which of the following are prerequisites for this? (Choose two) 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.
You add the CREATE PROTECTED addition to a class definition. From where can you instantiate the class? (Choose three) From the class itself From a parent class From any protected class From a child class From a friend class.
You want to include an element of type Table in your Web Dynpro. Which action adds the corresponding columns to the table automatically? (Choose two) 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' IF _WD _CONTEXT _NODE'.
You want to add a field of type CURR to a transparent table. What else must you do? 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.
How can you define an internal table in a private method of a class? (Choose two) 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 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? (Choose two) 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.
You want to display a dialog box in your ABAP program. Which statement do you use? WINDOW 200 STARTING AT 5 5. SET SCREEN 200. CALL SCREEN 200. CALL SCREEN 200 STARTING AT 5 5.
Which of the following tools belong to the ABAP Workbench? (Choose three) Form Builder Function Builder Screen Painter Class Builder Easy Access Menu.
Which ABAP statement using the local type gty_1 correctly defines a data object? (Choose two) DATA gv_1 TYPE gty_1. DATA gv_1 LIKE gty_1. CONSTANTS gc_1 TYPE gty_1 VALUE '1'. DATA gv_1 TYPE gty_1 DEFAULT '1'.
Which of the following steps are required to the set up a shared memory area? (Choose three) 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.
Which components belong to an elementary search help? (Choose two) Fixed values Import / export parameters Selection method Attachment to a field.
Which view types can you do to join two tables with an outer join? (Choose two) Maintenance view Database view Projection view Help view.
In subclass you want to define a method of the superclass. Which of the following conditions must be fufilled? (Choose two) 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.
You are establishing the business logic layer for a Web Dynpro Component. Which service types are available in the Service Call wizard? (Choose three) Transaction code Web service proxy Class method Function module Function group.
You have defined a classical screen (dynpro) with mandatory input fields. You want to exit the screen using the Cancel button even if not all of the mandatory fields have been filled. What is necessary to achieve this? Set the function type assigned to the Cancel button to S and handle it in a module with the addition AT EXIT-COMMAND. Assign function type E to the Cancel button and handle it in a module with the addition AT EXIT-COMMAND. Set the function code assigned to the Cancel button to CANCEL and handle it in a module with the addition AT EXIT-COMMAND. Use the LOOP AT SCREEN. ... ENDLOOP statement to set the "required" property of the input fields to zero.
Which type of transport task is used when you modify SAP standard objects? (Choose two) Transport of copies Workbench Repair Development/Correction.
Which statement ends a screen sequence and starts from the initial screen? (Choose two) LEAVE TO SCREEN 0 LEAVE SCREEN CALL SCREEN SET SCREEN 0.
Compared to a predefined ABAP type what additional properties can be assigned to a domain? (Choose three) Fixed values Conversion exits Value tables Parameter IDs Search helps.
In an ABAP program you have the following code sequence: DATA var TYPE n LENGTH1. FIELD-SYMBOLS <fs> TYPE c. ASSING var TO <fs> CASTING. Which type is used to dast the assigned memory area? The default type I The type of var The default type STRING The type of.
Before you can add programming logic to your ABAP program that checks automations, which of the following do you have to create? An authorization profile An authorization role An authorization field An authorization object.
Which of the following statement can you use to set up checkpoints in an ABAP program? (Choose three) ASSERT BREAK CHECK BREAK-POINT LOG-POINT.
When would you call the RFC function module synchronously? (Choose two) During interactive communication During two-way communication During queue processing During unidirectional communication.
Which of the following compatibilities is Provided by the Application Platform layer of SAP NetWeaver? (Choose two) Master data management Database and operating system abstraction Bussines process management Multi-channel access.
You are writing the function module that will be called from external systems vi remote function call (RFC).How do you report an error back to the external caller? A. Write the error data into an CHANGING parameter than is passed by value B. Write the error data into an EXPORTING parameter than is passed by reference C. Write the error data into a TABLES parameter than is passed by reference D. Write the error data into a RECEIVING parameter than is passed by value.
Which of the following are valid control level changes within a loop over an internal table? (Choose two) COLLECT LAST END OF SUM.
How can you add a section breakpoint to your program? (Choose two) 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 want to create a transparent table in the ABAP dictionary. When is the table physically created in the database? When you activate the table When you run the database utility transaction (SE14) When you insert the table name ans select Create When you save the table.
In which controller type can you embed a service call? Configuration controller View controller Component controller Interface controller.
Where can you define global data types that are visible system-wide? (Choose three) In a method of a global class In the ABAP Dictionary In a function module In a global class In a global interface.
Which statements are allowed for processing internal tables? (Choose three) SELECT INSERT DELETE MODIFY UPDATE.
How do you add fields to an SAP-delivered transparent table without modification? Use the database utility to enhance the definition on the database directly Add the new fields to the table definition Create an append structure containing the new fields Define a structure containing the new fields and include it in the table definition.
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? MOVE-CORRESPONDING ... TO ... WRITE ... TO ... MOVE ...TO...
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? Class diagram Object diagram Component diagram Sequence diagram.
When does SAP recommend that you use a full buffering type for a database table? 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 are fully-specified internal table types? (Choose two) Standard Any Index Hashed.
Which of the following Data Types are allowed in ABAP? (Choose two) DECFLOAT64 DECFLOAT16 DECFLOAT34 DECFLOAT32.
What parameters can you set when you run the code inspector? (Choose three) Background job name Check variant name Object set name Inspection name Work process name.
How do you create lock objects and lock modules for use in ABAP programs that's access the database? Use the ABAP Dictionary to create the lock objects, Use the funcitons builder to create the lock modules The lock objects are created automatically Use the function builder to create the lock modules and the lock objects Use the function builder to create the lock modules Use the ABAP Dictionary to create the lock objects. The lock module is created automatically.
Which of the following statement create a data object? (Choose three) type class-data Class parameters constants.
What is data binding? Connecting a context node in one controller to a context node in another controller Connecting an outbound plug of one view to the inbound plug of another view 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.
You have created a screen on which the user enters data that is to be inserted into table T1. How do you ensure that the content of field F in table T1 is checked against T2? Create a foreign-key for field F of table T1 and make table T2 the check table Create a foreign-key for the assigned field of field F of table T1 in table T2 and make table T2 the check table Create a foreign-key for the assigned field F of table T1 in table T2 and and make table T1 the check table Create a foreign-key for field F of table T1 and make table T2 and the foreign-key table.
Which database objects can you create in the ABAP Dictionary? (Chosee two) Foreign key relationships Indexes Logical databases Views.
You have created the following. A class with an event definition. A Handler class with a method ON_EVT that handles this event. A report that instantiates the handler class. A message statement that raises an exception however AND the report does not react to the event. How do you analyze this issue? Check if the event is triggered by setting a breakpoint at MESSAGE...RAISING...statement Check if the handler method is registered to the correct event Check if the implementation of the handler method ON_EVT contains the desired logic Check if the handler method ON_EVT is defined in a subroutine of the report Check if the event is triggered by setting a breakpoint at the RAISE EVENT statement.
A function module that has 2 classical exceptions is called with actual parameter value in such a way that both exception conditions are fulfilled. How will the runtime system be had? NO exceptions will be raised in the calling program AND sy-subrc has the value specified for the OTHER option. Both exceptions will be raised in the calling program AND sy-subrc hac the value specified for the second exception. Both exceptions will be raised in the calling program AND sy-subrc has the value specified for the OTHER option. The first exception that occurs will be raised in the calling program AND sy-subrc has the value specified for the first exception.
You created a class by inheriting from a superclass. The superclass contains a public instance method 'do something'. You want to redefine mehtod 'do something'. What must you do? Leave the signature of the method unchanged Declare the method FINAL Call the implementation of the superclass Change the visibility of the method to PROTECTED.
A customer has asked that you improve performance for a small table with frequent read accesses, what buffering type do you recomend? Column store Primary key Full table Single record.
You want to loop over an internal table without copying each table row fo a work area. How do you achieve this using a field symbol? LOOP...ASSIGNING...ENDLOOP LOOP...INTOTRANSPORT...ENDLOOP LOOP...INTO...ENDLOOP LOOP-REFERENCE INTCL.ENDLOOP.
Which of the following actions can you perform in both the ABAP editor and in the ABAP debugger? Create a breakpoint for a specific line Create a breakpoint for a specific Message Create a breakpoint for a specific statement Create a watch point for a specific variable.
Which additions to the PARAMETERS statements can you sue to fill the input field of the selection screen with a suggested value? (Choose two) MODIF ID VALUE-CHECK DEFAULT MEMORY ID.
You want to read a single line of an internal table using table expression itab[...]. How can you identify the line? (Choose three) Specify a regular expression Specify a WHERE Condition Specify a secondary table key Specify a free table key Specify the line index.
What type of method is generated automatically by the web Dynpro Explorer when you assign an action to a button UI element Supply function Standard hook method Event handler method Ordinary method.
What can be part of the signature of an instance constructor? (Choose two) Importing parameters Exporting parameters Changing parameters Exceptions.
What are some of the new features of open SQL in SAP Netweaver 7.5? (Choose two) Intersection CASE expresions Full join String expressions.
Which of the following incomplete ABAP are pre-defined data types? (Choose three) X N T P D.
What type of ABAP Dictionary view is implemented as an INNER JOIN? Maintenance view Projection view Database view Help views.
You defined database view A and maintanace view B in the ABAP Dictionary. What restrictions apply to these views? (Choose two) The tables joined in B must have foreign key relationship The tables joined in A must have foreign key relationship Only A can be used in tyhe FROM clause of a SELECT statement The join of both A and B is an inner join.
A user runs an ABAP program and enters an incorret value on the selection screen and chooses execute. Which event block must send the error messages in order to display the selection screen again? AT SELECTION-SCREEN ON VALUE REQUEST AT SELECTION-SCREEN ON HELP-REQUEST AT SELECTION-SCREEN AT SELECTION-SCREEN OUTPUT.
You build a dialgo screen with an input field in an ABAP program. How do you ensure that the contents of the screen field can be accessed in the program? Use the GET statement in the program to transport the data from the screen field Define a data object in the program with the same name as the screen field Enter the name of a data object in the parameter ID attribute of the screen field Use a MOVE statement in a PAO module to copy the data object.
A screen has the following PAI flow login: PROCESS AFTER INPUT. FIELD A MODULE check_A FIELD B MODULE Check_b CHAIN FIELD: C AND D. MODULE check_CD ENDCHAIN CHAIN FIELD: C AND B MODULE check_CB ENDCHAIN. What happens is the application sends a type E message during the check_CB module processing? The screen is NOT displayed again processing terminates, and the user must restart the ABAP program. The screen is displayed again without processing the PBO flow logic only fields B and care ready for input. The screen is displayed again and the PBO flow logic is processes only fields B and care ready for input. The screen is displayed again without processing the PBO flow logic All are ready for input.
Which ABAP Dictionary object can reference a domain? Database table field Structure Data element Table type.
What pre-defined ABAP data type is deep? X N STRING DECFLOAT34.
Which are the functions of the ABAP dispatcher? (Choose three) It distributes the request among the work processes It performs a roll-in and roll-out of user context It integrates the presentation layer It request the data from the database or the buffers It saves the processing request in request queues.
What ABAP statements can you use to create instance of class CL_GUI_CUSTOM_CONTAINER in an ABAP program DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATEDATA go_container... DATA: go_container TYPE REF TO CL_GUI_CUSOM_CONTAINER. CREATEOBJECT go_container... DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER CREATEDATA go_container... DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER CREATEOBJECT go_container...
Which enhacement can provide a screen exit (Choose three) Customer exits Explicit enhacement points New BADIS Explicit ehacement sections Classic BADIS.
You enhace a SAP standard global class by defining a post-method for a SAP method, the original SAP method has an EXPORTING parameter named PARI. What type of parameter is PARI in the post-method? IMPORTING RETURNING CHANGING EXPORTING.
What are the reasons to use modularization (Choose three) Portability across DBMS Improved performance Promotes reusability Improved transaprency Easier maintenance.
After which statement will the runtime system initialize the ABAP memory? SUBMIT... AND RETURN SUBMIT CALL TRANSACTION LEAVE TO TRANSACTION.
You want to deploy a program that processes character type data. When you implement the program, you can either use the classical string statement or the newer string expressions and functions what are the main benefits of using the newer string expressions and string functions? (Choose two) You can write code that is very easy to read and understand You can reduce the number of intermediate variables You can write compact syntax instead a long sequence of statements You can improve the performance significantly.
Which of the following components are part of SAP Netweaver AS ABAP version 7.1x and higher? (Choose two) Message Server Software Deployement Manager (SDM) Internet Communication Manager (ICM) SAP GUI for Java.
What must exist before you can create a new transportable function module? (Choose three) Function group Module pool Type group Package Change request.
Which of the following rules must you follow when you create a static constructor (Choose three) You CANNOT define parameters You mus define the method as public You can define class-based or classic exceptions You must name the method CONSTRUCTOR.
Which of the following statements correctly define a data object with the data type of data element s_conn_id? (Choose three) CONSTANTS gc_id TYPE s_conn_id VALUE '0400' DATA: gv_id TYPE REF TO s_conn_id DATA: gv_id TYPE s_conn_id PARAMETER pa_id TYPE s_con_id DATA: gv_id LIKE s_conn_id.
Which of the following rules must you follow when creating subscreens? (Choose two) Subscreens CANNOT have a field of type OK Subscreens can have a dialog module containing SET PF-STATUS Subscreens can call other subscreens Subscreens CANNOT have an AT EXIT-COMMAND module.
Which of the following conditions must be fulfilled when using a GROUP BY clause in a SELECT statement? (Choose two) The SELECT statement must also have a WHERE clause All fields in the SELECT clause that are not part of an aggregate function must be listed after GROUP BY The table in the FROM clause must be a transparent table The fields after GROUP BY must have a character type .
Which of the following data types are predefined ABAP data types? (Choose three) DECFLOAT34 STRING XSTRING FLOAT DECIMALS.
Which of the following controller types can exist only once in a Web Dynpro component? (Choose two) Window controller Component controller Configuration controller View controller.
You need to perform a downcast. What should you do? (Choose two) Catch the exception CX_SY_MOVE_CAST_ERROR Use the operator “=“ Perform the downcast only if an upcast has already been done for the object reference Assign a subclass reference to a superclass reference.
Which of the following repository objects can you maintain in the ABAP Workbench? (Choose three) Function modules Internal tables Busines funcions Transparent tables Module pools.
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? (Choose two) TYPES: BEGIN OF gty_flight DATA: BEGIN OF gs_flight DATA BEGIN OF gs_flight TYPES: BEGIN OF gs_flight.
What are characteristics of a hashed internal table? (Choose two) It can be accessed using the key It must have a unique key It can have a non-unique key It can be accessed using the index.
Which of the following functions does the ABAP Dispatcher perform? (Choose two) It directs HTTP requests from an SAP system to a web server It enables communication between SAP systems and external application systems It distributes user requests among available work processes It communicates with other instances in the system.
What process is used to establish the automatic transport of data between the view controller's context-attributes and the UI element in its layout? Context mapping Data migration Data binding View assembly.
Denunciar Test