Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONCurso de Literatura 1

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Curso de Literatura 1

Description:
Aprenda a

Author:
Marcos
(Other tests from this author)

Creation Date:
25/08/2017

Category:
Art

Number of questions: 99
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Which of the folDynpro application to transaction database data to the user interface? 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? 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'.
The component interface of a Web Dynpro component contains three interface views. Which of the following controllers must also exist? 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? 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 WebDynpro. From which should you inherit? CL_WD_COMPONENT_SERVICES CL_WD_COMPONENT_ASSISTANCE CL_WD_CONFIGURATION_MODEL CL WD CONTEXT SERVICES.
You have two WebDynpro component controller A and B. A uses 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 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 webdynpro component? 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? Configuration controller View controller Component controller Interface controller.
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 types of SQL statements always bypass the SAP table buffers? 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? 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? 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 It_A_B 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? 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 'BIT' in any position. Which WHERE clause can you use in an Open SQL statement? WHERE city LIKE '*BU*' WHERE city LIKE '+BU+' WHERE city LIKE '_BU_' WHERE city LIKE '%BU%'.
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 COUNT(*) AS number FROM customers INTO TABEL it_customers GROUP BY country city HAVING number GE 3. SELECT country city FROM customers INTO TABEL it_customers GROUP BY country city HAVING COUNT(*) >= 3. SELECT country city cust_name COUNT(*) AS number FROM customers INTO TABEL it_customers GROUP BY country city HAVING number >= 3. SELECT country city cust_name FROM customers INTO TABEL it_customers GROUP BY country city HAVING COUNT(*) GE 3.
Which of the following are valid combinations of event visibility and handler method visibility? 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? 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 define a method of the superclass. Which of the following conditions must be fufilled? 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? 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 for the type DOG? MOVE ... ?TO ... WRTIE ... TO ... MOVE ...TO... MOVE-CORRESPONDING ... TO ...
Which of the following steps are required to the set up a shared memory area? 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 is the predefined reference variable used in ABAP 00 to address the object itself? ME SUPER THIS 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? 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? Maintenance screens Events Search helps Append searches.
Which of the following can you define in the technical settings of a transparent table? Size category Table name Data class Buffering type Delivery cla.
For which of the following purposes can you use the ABAP dictionary. To create locks objects To activate the logginging for transparent tables To maintain program translations To create development classes.
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? 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? 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? 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? SE16N SE38 SE11 SM37.
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 Whe you save the table.
Which view types can you to join two tables with an outer join? Maintenance view Database view Projection view Help view.
When does SAP recommended that you use a hashed table? 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? 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 followih=ng must you define to activate the table? 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? 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? VALUE DEFAULT OBLIGATORY D. READ-ONLY.
Which of the following structures is created when you use a table type to define one of its components? 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? 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? 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? Sorted table Standard table Index table D. Hashed table.
Which fo the following ABAP standard types are incomplete? F N X STRING.
Which statement ends a screen sequence and starts from the initial screen? 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? 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? 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? 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? S - System E - ExiT H - Help request T - Transaction.
When is a foreign key check performed on an input/output field? 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? START-OF-SELECTION AT-SELECTION-SCREEN END-OF-SELECTION INITIALIZATION.
Which of the following ABAP code lines is valid? 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? 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 /.
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? CLIKE SIMPLE DATA CSEQUENCE.
Which type of transport task is used when you modify SAP standard objects? 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? 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? 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? 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? An authorization profile An authorization role An authorization field An authorization object.
When would you call the RFC function module synchronously? 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? 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? Process Overview (SM50) Oveview of Job Selection (SE37) ABAP Editor (SE38) Class Builder (SE24).
Which of the following can you do with the SAP Code Inspector? Monitor runtime behavior Monitor background tasks Perform static code checks Analyze runtime data.
Which the following values are remplaceable In debugger mode? Tables names Constants Fields names Variables.
What is the SAP recommended naming convention for append structures of standard SAP tables? 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? 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? 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? Documentation Field labels Search help Technical information.
What options do you have when setting a watchpoint? (Choose two) 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)? 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? 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? 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.
Which action ono the underlying dictionary object triggers a database table conversion? A. Reducing the size of a field B. Inserting an append structure C. Inserting a field of type reference D. Changing the order of non-key fields.
Which of the following statement can you use to set up checkpoints in an ABAP program? ASSERT BREAK CHECK BREAK-POINT LOG-POINT.
Which of the following can you do with the ABAP debugger? Analyze internal tables Analyze memory usage Compare data objects Analyze SQL traces Change source code.
To which of the following must you assign newly created SAP repository objects? Transport task Transport request Package Function group.
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? Write the error data into an CHANGING parameter than is passed by value Write the error data into an EXPORTING parameter than is passed by reference Write the error data into a TABLES parameter than is passed by reference Write the error data into a RECEIVING parameter than is passed by value.
Which of the following compatibilities is Provided by the Application Platform layer of SAP NetWeaver? Master data management Database and operating system abstraction Bussines process management Multi-channel access.
Which task does the dispatcher perform? Distributes request 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 must you do to be able to use a Business Add-In (BA-dl)? Modify the adapter class Write code for methods Create the Ba-dl implementation Activate the enhancement project.
Which of the following is an implicit enhancement? Pre-method Protected method Overwrite method Private method.
Which of the following can you use to enhance SAP standard tables and structures with fields? Appends search helps Customizing includes Fields exits Appends structures.
Which of the following characters is the first of a menu exit function code? & - + *.
How can you find customer exits in an ABAP program? Search for customer exits in the Repository Information System Search for 'CL_EXITHANDLER' in the program Search for 'CALL_CUSTOMER' in the program Search for customer exits in the program documentation.
Which of the following enhancements calls customer function module? Business Add-in(BA-dl) User exit Customer exit Business Transaction Event.
Which objects can share data through context mapping? View controller and another view controller Component controllers and view controllers Custom controllers and transparent tables Global classes and component controllers.
Which of the following variables is the self-reference variable in ABAP OO? THIS SENDER ME SUPER.
Which components belong to an elementary search help? (Choose two) Fixed values Import / export parameters Selection method Attachment to a field.
Which of the following tasks does the BADI implementing class perform? Filtering Sequencing Inserting Deleting.
What can you create using the ABAP Dictionary? (Choose three) Domains Type pools Transparent tables Field symbols Internal tables.
What can you use to achieve polymorphism? Events Subroutines Inheritance Reports.
What happens when an authorization check fails? The program is terminated. The system field SY-SUBRC is set to a value other than zero. A type E message is displayed. A CX_AUTH_FAILED type exception is raised.
Which parameter types can be used in the signature of a functional method? (Choose two) EXPORTING IMPORTING RETURNING CHANGING.
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 prox Class method Function module Function group.
Which of the following predefined ABAP types is incomplete? F P XSTRING STRING.
You have implemented a class CL_CUSTOMER in which you defined a private attribute. From where can you access this attribute directly? (Choose two) From all methods of all subclasses of CL_CUSTOMER From all methods of the class CL_CUSTOMER From all methods of a class to which CL_CUSTOMER grants friendship From any program using the class CL_CUSTOMER.
Which of the following features do you have to consider when you use shared objects? (Choose three) Data is saved as attributes of objects Concurrent write accesses are supported Memory bottlenecks result in runtime errors and have to be caught Concurrent read accesses are supported Data is saved as tables of objects.
Which assignment will lead to a conversion error? An XSTRING type data object to a STRING type data object DATA. gv_xstring TYPE xstring, gv_string TYPE string. gv_xstring = 'AF00'. gv_string = gv_xstring. A type C data object with the value '123' to a type C data object with length 2 DATA. gv_c3(3) TYPE c VALUE '123', gv_c2(2) TYPE c. gv_c2 = gv_c3. A type P data object to a type F data object DATA. gv_p TYPE p VALUE '15000', gv_f TYPE f. gv_f = gv_p. A type C data object with the value '1.50E4' to a type I data object DATA. gv_c(6) TYPE c VALUE '1.50E4', gv_i TYPE i. gv_i = gv_c.
You created a transparent table and during activation got a warning message 'Enhancement category for table missing". What do you have to do to eliminate the warning message? Select any option other than Not Classified from the enhancement category. Change the Data Class and Size category in the technical settings. Provide the correct reference field for the Currency or Quantity field. Select the option Not Classified from the enhancement category.
How is an ABAP program with several dialog steps executed? The program is always executed in just one dialog work process without roll out. The ABAP dispatcher takes over the entire execution without assigning any work process. The program is always executed in just one dialog work process with roll out. Usually, dialog steps are assigned to different dialog work processes.
You perform an update task using update function modules and detect an error in the program that calls the update function modules. Which statement can be used to discard all update requests for the current SAP LUW? (Choose two) EXIT. ROLLBACK WORK. MESSAGE axxx(nnn). MESSAGE exxx(nnn). DELETE UPDATE.
Report abuse Consent Terms of use