SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file A. One custom controller B....

30
http://www.gratisexam.com/ C_TAW12_740 Passing Score : 800 Time Limit : 4 min http://www.gratisexam.com/

Transcript of SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file A. One custom controller B....

Page 1: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

C_TAW12_740

Passing Score: 800Time Limit: 4 min

http://www.gratisexam.com/

Page 2: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

Exam A

QUESTION 1Which of the folDynpro application to transaction database data to the user interface?

http://www.gratisexam.com/

A. Interface controller B. Supply function C. Inbound plug D. Context node

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

QUESTION 2You to include an element of type ‘Table' in your Web Dynpro. Which action adds the corresponding columns to the table automatically?

A. Generate a 'BIND_TABLE' method using the Web Dynpro method wizard B. Right click the table and select the 'CREATE BINDING' option C. Bind the table attribute 'DATA_SOURCE' to the context node D. Include the method 'BIND TABLE' of' IF _WD _CONTEXT _NODE'.

Correct Answer: BDSection: (none)Explanation

Explanation/Reference:

QUESTION 3The component interface of a Web Dynpro component contains three interface views. Which of the following controllers must also exist?

Page 3: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

Correct Answer: BSection: (none)Explanation

Explanation/Reference:

QUESTION 4You 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 afterthe users selects a date and presses a button. Which of the following actions must you perform?

A. Edit the handler method in the view controller B. Add a client-side event in the view C. Create and link plugs between the views D. Set the interface property for key fields

Correct Answer: BCSection: (none)Explanation

Explanation/Reference:

QUESTION 5You want to translate text in a Web Dynpro. From which should you inherit?

A. CL_WD_COMPONENT_SERVICES B. CL_WD_COMPONENT_ASSISTANCE C. CL_WD_CONFIGURATION_MODEL D. CL WD CONTEXT SERVICES

Correct Answer: BSection: (none)

Page 4: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

Explanation

Explanation/Reference:

QUESTION 6You 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 Aand B?

http://www.gratisexam.com/

A. The 'Interface Node' property is set on context node of A B. The 'Interface Node' property is set on context node of B C. The mapping target is defined on the context node of A D. The mapping origin is defined on the context node of A

Correct Answer: BDSection: (none)Explanation

Explanation/Reference:

QUESTION 7What can be exposed in the component interface of a web dynpro component?

A. Custom methods of the component controller B. Public attributes of WINDOW controllers C. Context nodes of the WINDOW controllers D. Standard hook methods the component controller

Correct Answer: ACDSection: (none)Explanation

Page 5: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

Explanation/Reference:

QUESTION 8In which controller type can you embed a service call?

A. Configuration controller B. View controller C. Component controller D. Interface controller

Correct Answer: CSection: (none)Explanation

Explanation/Reference:

QUESTION 9When does SAP recommend that you use a full buffering type for a database table?

A. When the table is very large and frequently written B. When the table is very small and frequently written C. When the table is very large and seldom written D. When the table is very small and seldom written

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

QUESTION 10Which of the following types of SQL statements always bypass the SAP table buffers?

A. SELECT SUM( sales ) B. SELECT... UP T0 1 ROWS C. SELECT... INNER JOIN ...

Page 6: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

D. SELECT SINGLE ...

Correct Answer: ACSection: (none)Explanation

Explanation/Reference:

QUESTION 11Table 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 comparefields FIRST_NAME and LAST_NAME to each other. Which of the following SELECT statements can you use?

http://www.gratisexam.com/

A. SELECT * FROM users INTO TABLE lt_users AS a WHERE first_name = users~last_name.B. SELECT * FROM users INTO TABLE lt_users WHERE first_name = users~last_name.C. SELECT * FROM users INTO TABLE lt_users WHERE first_name = users~last-name.

Correct Answer: BCSection: (none)Explanation

Explanation/Reference:

QUESTION 12tableA and tableB are partially buffered. Which of the following SELECT statements always access tha database?

A. SELECT SINGLE CLIENT SPECIFIELD a b FROM tableA INTO CORRESPONDING FIELDS OF Is_A_BB. SELECT abed FROM tableA JOIN tableB ON tableA~a = tableB~e INTO CORRESPONDING FIELDS OF TABLE It_A_BC. SELECT SINGLE FOR UPDATE a b FROM tableA INTO CORRESPONDING FIELDS OF Is_A_B WHERE c EQ'1234'.D. SELECT a b FROM tableA INTO CORRESPONDING FIELDS OF TABLE It_A_B

Correct Answer: BCSection: (none)

Page 7: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

Explanation

Explanation/Reference:

QUESTION 13When are changes to the VB* tables transferred to the database?

A. When the main program is executed B. When the enqueuer work process is executed C. When an update function module is executed D. When the update work process is executed

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

QUESTION 14You 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 SQLstatement?

A. WHERE city LIKE '*BU*' B. WHERE city LIKE '+BU+' C. WHERE city LIKE '_BU_' D. WHERE city LIKE '%BU%'

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

QUESTION 15You 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 SQLstatements should you use?

Page 8: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

A. SELECT country city COUNT(*) AS number FROM customers INTO TABEL it_customers GROUP BY country city HAVING number GE 3.B. SELECT country city FROM customers INTO TABEL it_customers GROUP BY country city HAVING COUNT(*) >= 3.C. SELECT country city cust_name COUNT(*) AS number FROM customers INTO TABEL it_customers GROUP BY country city HAVING number >= 3.D. SELECT country city cust_name FROM customers INTO TABEL it_customers GROUP BY country city HAVING COUNT(*) GE 3.

Correct Answer: ABSection: (none)Explanation

Explanation/Reference:

QUESTION 16Which of the following are valid combinations of event visibility and handler method visibility?

A. Private event and private handler B. Public event and protected handler C. Protected event and public handler D. Private event and public handler

Correct Answer: ABSection: (none)Explanation

Explanation/Reference:

QUESTION 17You add the CREATE PROTECTED addition to a class definition. From where can you instantiate the class?

http://www.gratisexam.com/

A. From the class itself B. From a parent class C. From any protected class

Page 9: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

D. From a child class E. From a friend class

Correct Answer: ADESection: (none)Explanation

Explanation/Reference:

QUESTION 18In subclass you want to define a method of the superclass. Which of the following conditions must be fufilled?

A. The superclass method is an instance methodB. The superclass method is abstractC. The subclass method a lower visibility than the superclass methodD. The subclass method has same visibility as the superclass method

Correct Answer: BDSection: (none)Explanation

Explanation/Reference:

QUESTION 19How would you defined a method of an ABAP class to prevent this method from being available in subclass?

A. Final B. Abstract C. Protected D. Private

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

Page 10: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

QUESTION 20DOG 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 canyou use to copy this reference a to new variable fo the type DOG?

A. MOVE ... ?TO ... B. WRTIE ... TO ... C. MOVE ...TO... D. MOVE-CORRESPONDING ... TO ...

Correct Answer: ASection: (none)Explanation

Explanation/Reference:

QUESTION 21Which of the following steps are required to the set up a shared memory area?

A. Declare a catalog objectB. Enable multiple versions of an area root classC. Set the root objectD. Generate an area root classE. Call the attach for white method of the area root class

Correct Answer: CDESection: (none)Explanation

Explanation/Reference:

QUESTION 22What the predefined reference variable used in ABAP 00 to address the object itself?

A. MEB. SUPER C. THIS

Page 11: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

D. SELF

Correct Answer: ASection: (none)Explanation

Explanation/Reference:

QUESTION 23You 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?

A. Create an append structure and add ZZPRICE to it. B. Add ZZPRINCE to the Customizing include for the table C. Insert ZZPRINCE into an SAP structure for the table. D. Insert ZZPRINCE at the and of the table.

Correct Answer: ACSection: (none)Explanation

Explanation/Reference:

QUESTION 24Which of the following customer modification options are available in the table maintenance generator?

A. Maintenance screens B. Events C. Search helps D. Append searches

Correct Answer: ABSection: (none)Explanation

Explanation/Reference:

QUESTION 25

Page 12: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

Which of the following can you define in the technical settings of a transparent table?

A. Size category B. Table name C. Data class D. Buffering type E. Delivery class

Correct Answer: ACDSection: (none)Explanation

Explanation/Reference:

QUESTION 26For which of the following purposes can you use the ABAP dictionary.

http://www.gratisexam.com/

A. To create locks objectsB. To activate the logginging for transparent tablesC. To maintain program translationsD. To create development classes

Correct Answer: ABSection: (none)Explanation

Explanation/Reference:

QUESTION 27You use Unifield Modeling Language (UML) to design your classes. You want to describe the message exchange between objects. Which diagram type can youuse?

Page 13: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

A. Class diagram B. Object diagram C. Component diagram D. Sequence diagram

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

QUESTION 28You want to add a field of type CURR to a transparent table. What else must you do?

A. Create a new field CUKY as a predefined typeB. Add a key field of type CUKYC. Create a reference to a field of type CUKYD. Add a check table that contains a field of type CUKY

Correct Answer: CSection: (none)Explanation

Explanation/Reference:

QUESTION 29A structure has enhancement category 3: Can be enhanced (character type).Which set of elementary type is allowed for the new fields?

A. C,D,N,T B. D,I,SRTIRNG,T C. C,D,N,X D. F,I,P,X

Correct Answer: ASection: (none)Explanation

Page 14: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

Explanation/Reference:

QUESTION 30Which of the following transaction can you use to define transparent tables?

A. SE16N B. SE38 C. SE11 D. SM37

Correct Answer: CSection: (none)Explanation

Explanation/Reference:

QUESTION 31You want to create a transparent table in the ABAP dictionary. When is the table physically created in the database?

A. When you activate the tableB. When you run the database utility transaction (SE14) C. When you insert the table name ans select Create D. Whe you save the table

Correct Answer: ASection: (none)Explanation

Explanation/Reference:

QUESTION 32Which view types can you to join two tables with an outer join?

Page 15: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

http://www.gratisexam.com/

A. Maintenance view B. Database view C. Projection view D. Help view

Correct Answer: ADSection: (none)Explanation

Explanation/Reference:

QUESTION 33When does SAP recommended that you use a hashed table?

A. When a table must to sorted automatically by key in ascending order B. When a table is very large and you want to access the table by key only C. When a table is very large and you want to access the table by index only D. When a table must be accessible by both index and key

Correct Answer: BSection: (none)Explanation

Explanation/Reference:

QUESTION 34How can you define an internal table in a private method of a class?

A. DATA It_itab TYPE TABLE OF B. DATA It_itab TYPE TABLE OF

Page 16: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

C. DATA It_itab TYPE D. DATA It_itab TYPE < Table Type>.E. DATA It_itab TYPE TABLE OF WITH HEADER LINE

Correct Answer: ABDSection: (none)Explanation

Explanation/Reference:

QUESTION 35You want to create a transparent table. Which of the followih=ng must you define to activate the table?

A. A delivery class B. A foreign key C. The primary key D. The MANDT field E. A short description

Correct Answer: ACESection: (none)Explanation

Explanation/Reference:

QUESTION 36Which of the following are valid control level changes within a loop over an internal table?

A. COLLECT B. LAST C. END OF D. SUM

Correct Answer: BCSection: (none)Explanation

Page 17: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

Explanation/Reference:

QUESTION 37In an ABAP Program, you want to assign an initial value to an elementary data object when you define it. Which addition must you use?

http://www.gratisexam.com/

A. VALUE B. DEFAULT C. OBLIGATORY D. READ-ONLY

Correct Answer: ASection: (none)Explanation

Explanation/Reference:

QUESTION 38Which of the following structures is created when you use a table type to define one of its components?

A. Deep structure B. Nested structure C. Flat structure D. Append structure

Correct Answer: ASection: (none)Explanation

Explanation/Reference:

QUESTION 39

Page 18: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

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 adeclaration of <fs> to the code. Which of the following declarations are valid?

A. FIELD-SYMBOLS TYPE REF TO DATA. B. FIELD-SYMBOLS TYPE any. C. FIELD-SYMBOLS . D. FIELD-SYMBOLS TYPE REF TO ANY.

Correct Answer: BCSection: (none)Explanation

Explanation/Reference:

QUESTION 40Which of the following are fully-specified internal table types?

A. Standard B. Any C. Index D. Hashed

Correct Answer: ADSection: (none)Explanation

Explanation/Reference:

QUESTION 41You 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 thefollowing generic ABAP data types must you use?

A. Sorted table B. Standard table C. Index table D. Hashed table

Page 19: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

Correct Answer: CSection: (none)Explanation

Explanation/Reference:

QUESTION 42Which fo the following ABAP standard types are incomplete?

A. F B. N C. X D. STRING

Correct Answer: BCSection: (none)Explanation

Explanation/Reference:

QUESTION 43Which statement ends a screen sequence and starts from the initial screen?

A. LEAVE TO SCREEN 0 B. LEAVE SCREEN C. CALL SCREEN D. SET SCREEN 0

Correct Answer: ADSection: (none)Explanation

Explanation/Reference:

QUESTION 44Which of the following actions can be performed in the Process After Input (PAI) processing block?

Page 20: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

A. Set fo the GUI status of the screen B. Modify screen attributes dynamically C. Set title bar D. Check the function code

Correct Answer: BDSection: (none)Explanation

Explanation/Reference:

QUESTION 45Using the system table what can you modify through a LOOP AT SCREEN ... ENDLOOP construct?

A. Values of screen elements B. Function codes of buttons C. Screen status D. Attributes of screen elements

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

QUESTION 46Which ABAP statement can make an element visible that you statically defined as invisible?

A. SCREEN-INVISIBLE = 0 B. SCREEN-ACTIVE = 1. C. SCREEN-ACTIVE = 0. D. SCREEN-INVISIBLE = 1.

Correct Answer: CDSection: (none)Explanation

Page 21: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

Explanation/Reference:

QUESTION 47Which of the following function types in a GUI status are reserved for internal use?

http://www.gratisexam.com/

A. S - System B. E - ExitC. H - Help request D. T - Transaction

Correct Answer: ABDSection: (none)Explanation

Explanation/Reference:

QUESTION 48When is a foreign key check performed on an input/output field?

A. If the fields refers to a dictionary field for which an append search is defined B. If the fields refers to a dictionary field for which a value help is defined C. If the field refers to a dictionary filed for which a check table is defined D. If the field refers to a dictionary filed for which a search help is defined

Correct Answer: CSection: (none)Explanation

Explanation/Reference:

QUESTION 49

Page 22: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

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 moveto the field. Which event do you use to achieve this?

A. START-OF-SELECTION B. AT-SELECTION-SCREEN C. END-OF-SELECTION D. INITIALIZATION

Correct Answer: BSection: (none)Explanation

Explanation/Reference:

QUESTION 50Which of the following ABAP code lines is valid?

A. CONSTANTS gc_matnr TYPE matnr VALUE 100'. B. PARAMETERS p_matnr TYPE matnr DAFAULT "100'. C. DATA gc_matnr TYPE matnr DEFAULT '100'. D. SELECT-OPTIONS s_matnr TYPE matnr DAFAULT '100'. E. STATICS s_matnr TYPE matnr TYPE matnr DAFAULT '100'.

Correct Answer: ABSection: (none)Explanation

Explanation/Reference:

QUESTION 51How can you add a section breakpoint to your program?

A. Set a breakpoint in the ABAP debugger and press F8 B. Set a breakpoint in the ABAP debugger and select Save C. Set a breakpoint in the ABAP editor D. Execute command /h

Page 23: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

Correct Answer: BCSection: (none)Explanation

Explanation/Reference:

QUESTION 52You 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 mustyou use in the definition?

A. CLIKE B. SIMPLE C. DATA D. CSEQUENCE

Correct Answer: ASection: (none)Explanation

Explanation/Reference:

QUESTION 53Which type of transport task is used when you modify SAP standard objects?

A. Transport of copiesB. WorkbenchC. RepairD. Development/Correction

Correct Answer: CDSection: (none)Explanation

Explanation/Reference:

QUESTION 54In 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

Page 24: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

type is used to dast the assigned memory area?

A. The default type I B. The type of var C. The default type STRING D. The type of

Correct Answer: BSection: (none)Explanation

Explanation/Reference:

QUESTION 55You want to move a transport request from the development system to the subsequent system. Which of the following are prerequisites for this?

A. The extended program check must show no warningsB. The transport request must releasedC. All tasks of the transport request must be assigned to the same userD. All object included in the transport request must be activated

Correct Answer: BDSection: (none)Explanation

Explanation/Reference:

QUESTION 56Which of the following includes are generated with you create a function group?

http://www.gratisexam.com/

A. LxxxxTOP

Page 25: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

B. LxxxxUXX C. LxxxxOO1 D. LxxxxFOI

Correct Answer: ABSection: (none)Explanation

Explanation/Reference:

QUESTION 57Before you can add programming logic to your ABAP program that checks automations, which of the following do you have to create?

A. An authorization profile B. An authorization role C. An authorization field D. An authorization object

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

QUESTION 58When would you call the RFC function module synchronously?

A. During interactive communication B. During two-way communication C. During queue processing D. During unidirectional communication

Correct Answer: ABSection: (none)Explanation

Explanation/Reference:

Page 26: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

QUESTION 59You 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_GRIDclass method can you use to display the changed content?

A. REFRESH_TABLE_DISPLAY in module PAI B. REFRESH_TABLE_DISPLAY in module PBO C. SET_TABLE_FOR_FIRST_DISPALY in module PBO D. SET_TABLE_ FOR_ FIRST_ DISPALY in module PAI

Correct Answer: BSection: (none)Explanation

Explanation/Reference:

QUESTION 60Which of the following transactions are integrated in the ABAP Workbench tools?

A. Process Overview (SM50) B. Oveview of Job Selection (SE37) C. ABAP Editor (SE38) D. Class Builder (SE24)

Correct Answer: BCDSection: (none)Explanation

Explanation/Reference:

QUESTION 61Which of the following can you do with the SAP Code Inspector?

A. Monitor runtime behavior B. Monitor background tasks C. Perform static code checks

Page 27: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

D. Analyze runtime data

Correct Answer: CSection: (none)Explanation

Explanation/Reference:

QUESTION 62Which the following values are remplaceable In debugger mode?

A. Tables names B. Constants C. Fields names D. Variables

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

QUESTION 63What is the SAP recommended naming convention for append structures of standard SAP tables?

A. The name of the append structure must start with ZA.B. The components of an append structure should start with ZZ or YY.C. The components of an append structure should start with Z or Y.D. The name of the append structure must start with ZZ or YY.

Correct Answer: BSection: (none)Explanation

Explanation/Reference:

QUESTION 64

Page 28: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

To which ABAP Dictionary definition can you assign fixed values?

A. Data elementB. Field of a transparent tableC. Component of a structureD. Domain

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

QUESTION 65Which of the following statements dynamically changes the data type of field z1?

http://www.gratisexam.com/

A. Assign z1 to <fs> castingB. Assign z1 to <fs>C. Move z1 to <fs>D. Unassign <fs>

Correct Answer: ASection: (none)Explanation

Explanation/Reference:

QUESTION 66What do global types and local types have in common?

A. Documentation

Page 29: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

B. Field labelsC. Search helpD. Technical information

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

QUESTION 67What options do you have when setting a watchpoint? (Choose two)

A. Stop at predefined conditions for a specific variable.B. Stop at predefined conditions for all variables.C. Stop at any change of all variables.D. Stop at any change of a specific variable.

Correct Answer: ADSection: (none)Explanation

Explanation/Reference:

QUESTION 68Where can you set the GUI status and the GUI title for a classical screen (dynpro)?

A. In a module called from PBO of the screenB. In the attributes of the screenC. In the properties of the related header UI elementD. In a module called from PAI of the screen

Correct Answer: ASection: (none)Explanation

Explanation/Reference:

Page 30: SAP.Test4prep.C TAW12 740.v2016-12-29.by.domenic · PDF file  A. One custom controller B. Three windows controllers C. Three component controllers D. One configuration controller

http://www.gratisexam.com/

QUESTION 69In which database table type is there a one-to-one relationship between the Dictionary table definition and the relevant physical table in the database?

A. Cluster tableB. Pooled tableC. Transparent tableD. Internal table

Correct Answer: CSection: (none)Explanation

Explanation/Reference:

QUESTION 70A 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 thetable is activated successfully. What additional steps do you have to complete?

A. Maintain and transport the table using the Maintain Table Views transaction (SM30).B. Activate and adjust the database.C. Regenerate the existing maintenance view and adjust the table.D. Delete the original maintenance view and then create and generate a new one.

Correct Answer: DSection: (none)Explanation

Explanation/Reference:

http://www.gratisexam.com/