Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONCTAW_12_731 Practice.

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
CTAW_12_731 Practice.

Description:
SAP ABAP.

Author:
SAUL.
(Other tests from this author)

Creation Date:
25/09/2014

Category:
Computers

Number of questions: 22
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
You want to display data in a view of a Web Dynpro component. However, the data you want to display are stored in the context of the component controller. What is the best way to display the data? Bind the controls that display the data to the context of the component controller. Copy the context of the component controller to the context of the view controller and bind the controls that display the data to the context of the view controller. Map the context of the component controller to the context of the view controller and bind the controls that display the data to the context of the view controller. Move the context of the component controller to the context of the view controller and bind the controls that display the data to the context of the view controller. Perform a MOVE-CORRESPONDING of the context of the component controller to the context of the view controller and bind the controls that display the data to the context of the view controller.
You Want To Create A Web Dynpro Component With Two Views. The Selection View Contains Two Input Fields For Departure And Arrival City And A Button To Trigger The Search For Flight Connections Between These Two Cities. The Resulting View Contains A Table That Displays The Found Flight Connections And A Button To Navigate Back To The Selection View. In Each View You Have Defined An Outbound Plug That Will Be Fired By Pressing The Button On The View. Furthermore, You Have Defined An Inbound Plug In Each View. Which Is The Easiest Way To Define The Navigation Structure Between The Two Views? Select The Best Answer. Embed Both Views In One Window. Within That Window, Connect The Outbound Plug Of The Selection View With The Inbound Plug Of The Result View And The Outbound Plug Of The Result View With The Inbound Plug Of The Selection View. Embed each view in its own Window. Then connect the outbound plug of the selection view with the inbound plug of the result view and the outbound plug of the result view with the inbound plug of the selection view. Create a combi view that contains two View Container UI element controls. Embed the combi view in a Window, and the two other views in the View Container UI elements. Then connect the outbound plug of the selection view with the inbound plug of the result view and the outbound plug of the result view with the inbound plug of the selection view. Create a combi window that contains two View Container UI element controls. Embed the two views in the View Container UI elements. Then connect the outbound plug of the selection view with the inbound plug of the result view and the outbound plug of the result view with the inbound plug of the selection view.
You want to debug a program because you need to track an erroneous behavior at runtime. In which ways can you start the ABAP Debugger? There is more than one correct answer to this question. You can execute the program from the first line on in debugging mode with Execute -> Debugging. If there appears a screen during execution, you can enter /h to switch to debugging mode You can set a breakpoint by selecting a line of the source code of the program in the ABAP editor. You can set a breakpoint with the ABAP statement BREAK-POINT.
Which kinds of enhancements can BAdIs provide? There is more than one correct answer to this question. Functional enhancements Screen enhancements Menu enhancements Data element enhancements Table enhancements.
Choose the correct redefinition of the superclass method in class lcl_super_course. *Super Class Definition CLASS lcl_super_course DEFINITION. PUBLIC SECTION. METHODS: get_course_name IMPORTING im_name type string. ENDCLASS. *Sub Class Method ReDefinition A CLASS lcl_sub_course DEFINITION INHERITING FROM lcl_super_course. PRIVATE SECTION. METHODS: get_course_name IMPORTING im_name type string. ENDCLASS. B CLASS lcl_sub_course DEFINITION INHERITING FROM lcl_super_course. PUBLIC SECTION. METHODS: get_course_name IMPORTING im_name type string. ENDCLASS. C CLASS lcl_sub_course DEFINITION INHERITING FROM lcl_super_course. PRIVATE SECTION. METHODS: get_course_name REDEFINITION. ENDCLASS. D CLASS lcl_sub_course DEFINITION INHERITING FROM lcl_super_course. PUBLIC SECTION. METHODS: get_course_name REDEFINITION. ENDCLASS. SubClass Definition D SubClass Definition A SubClass Definition C SubClass Definition B.
What is the result of a list output in a non-Unicode system, and What is the result in a Unicode system? DATA field(5) TYPE c VALUE 'ABCDE'. ABCD ABCDE BCDE CDEAB.
Mark the operators used to widen cast of a class. (More than one answer is correct) = =? -> => ?TO ?=.
A field symbol can point to an procedural object? False True.
Which of the following statements accurately describe a client in an SAP system? A client represents a completely independent business entity A client has its own database. A client corresponds to a customer. A client may represent an entire company.
Why must a field symbol be assigned to the referenced data object? Because dereferencing of the generic fata reference is only allowed in the ASSIGN statement. However,generecally typed symbols can be used (almost) everywhere.
Which work process types are there in an AS ABAP system? Dialog work process Message Server Update work process Internet Communication Manager (ICM) Background work process Enqueue work process Spool work process.
Application Link Enabling (ALE) allows you to: Choose the correct answer(s). Exchange data only between SAP systems, as long as they have the same release status Exchange data across system boundaries, but only for SAP applications Exchange data between collaborating enterprises, using certain formats and technologies The communication between different systems of your system landscape Update your order data using the appropriate BAPI, only once every 24 hours.
When is the transport of development objects for a development request triggered?Choose the correct answer(s). When an object is saved When an object is activated When a task is released When a request is released.
which boundary conditions lead to improved access time to an internal table? (Choose three) Fully qualified key for sorted tables Index access for hashed tables Left justified part of key for sorted tables Index access for standard tables Left justified part of key for hashed tables.
For what should you use the modularization? Choose the correct answer(s). For performance improvement For a better overview of program layout To encapsulate a function that is required many times within a program for multiple use To implement the central maintainability of a function within a program To make a function available across the system.
BC400_S_BOOKING is a Dictionary structure. Which syntax do you use to create an internal table with the same structure as BC400_S_BOOKING? Choose the correct answer(s). DATA gt_itab TYPE bc400_s_booking. DATA gt_itab TYPE TABLE OF bc400_s_booking. DATA gt_itab TYPE LINE OF bc400_s_booking. DATA gt_itab LIKE bc400_s_booking.
When you create a screen, you must: a. Design the screen layout in the layout editor. b. Set the general screen attributes on the attribute screen. c. Write the flow logic in the flow logic editor. d. Set the field attributes in the field list. Select the correct order:. a, b, c, d c, d, b, a b, a, d, c d, b, a, c.
The function keys that contain proposals, which comply with the SAP system’s ergonomic standards are: Choose the correct answer(s). Reserved Recommended Freely All of the above.
Suppose you have a class X that inherits from class Y. After an up-cast a reference variable that is statically typed TYPE REF TO Y points to an instance of class X. What components of class X can you access with this reference variable? Choose the correct answer(s). Components defined in class X Components inherited from class Y Components redefined in class X Components defined in class X and redefined in its subclasses.
Suppose that you copy an instance reference of a class that implements an interface to a reference variable that is typed on the interface (up-cast). What components can you access with this reference variable? Choose the correct answer(s). The components of the interface The components of the class that are not defined in the interface All components of the class The components of the interface for which alias names have been defined.
Suppose that a reference variable that is typed on an interface contains an instance reference of a class that implements this interface and you copy this to a reference variable that is typed on the class (down cast). Which of the following components can you access with this reference variable? The components of the interface The components from the class that are not defined on the interface All components of the class The components of the interface for which alias names have been defined.
Which of the following statements are correct? Choose the correct answer(s). You can create function modules using the Class Builder. A global class can contain a local class. A global interface can contain a local interface. A global class can contain a local interface. Nested definition of classes is when a local class is within a global class. Using the Class Builder, a local class can be converted into a global class. A local class can be copied using the Class Builder. The copy is then a global class. You can use the Refactoring Assistant to move the methods to a different class within an inheritance hierarchy. You can use the Refactoring Assistant to design model diagrams.
Report abuse Consent Terms of use