option
Questions
ayuda
daypo
search.php
ERASED TEST, YOU MAY BE INTERESTED ON SAP ABAP MINI 6
COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
SAP ABAP MINI 6

Description:
C_TAW12_750 - SAP - ABAP with SAP NetWeaver 7.50

Author:
AVATAR
SAP
Other tests from this author

Creation Date:
29/05/2020

Category: Others

Number of questions: 39
Share the Test:
New CommentNuevo Comentario
No comments about this test.
Content:
A class is defined as follows: CLASS my_class DEFINITION. PUBLIC SECTION. METHODS do_something. EVENTS state_changed. CLASS-METHODS static1. PRIVATE SECTION. TYPES t table TYPE STANDARD TABLE OF t001 WITH NON-UNIQUE DEFAULT KEY. CONSTANTS gc_const TYPE IVALUE 1. ENDCLASS. Which components of the class can static method static1 address directly? There are 2 correct answers to this question. The t_table type. The do_something method. The gc_const constant The state_changed event.
You want to read a single line of an internal table using table expression itab[ ...]. How can you identify the line? There are 3 correct answers to this question. Specify a secondary table key. Specify a free table key. Specify a regular expression. Specify a WHERE condition. Specify the line index.
Which boundary conditions lead to improved access time to an internal table? There are 3 correct answers to this question. 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.
Which of the following are true statements? There are 3 correct answers to this question. Reference data types can be used to define the data type of the data element. Field labels are defined for the domain. The technical attributes of the data element can be defined by a domain, that is, the data type, the field length, and the number of decimal places. You can also select predefined data types to define the data type of the data element.
Which of the following ABAP statements throws an error at the syntax check? Please choose the correct answer. DATA variable DATA variable(5) TYPE p. DATA variable(5) TYPE n. DATA variable(5) TYPE t.
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question SPAD SPDD SPAU SPAU_ENH.
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? Please choose the correct answer. DATA CSEQUENCE SIMPLE CLIKE.
What is the allowed length of the ABAP Dictionary data type DF16_DEC? Please choose the correct answer. The allowed length is 16 digits. The allowed length is between 1 and 15 digits. The allowed length is between 0 and 16 digits. The allowed length is between 0 and 15 digits.
What type of method is generated automatically by the Web Dynpro Explorer when you assign an action to a button UI element? Please choose the correct answer. Supply function Standard hook method Ordinary method Event handler method.
How would you define a method of an ABAP class to prevent this method from being available in a subclass? Please choose the correct answer. Protected Abstract Private Final.
You define a database view A and maintenance view B in the ABAP dictionary. What restrictions apply to these views? There are 2 correct answers to this question The tables joined in B must have foreign key relationships The tables joined in A must have foreign key relationships Only B can have either a left outer join or an inner join Only A can be used in the FROM clause of a SELECT statement.
What is unique about a singleton? There are 2 correct answers to this question. It must be instantiated using a static protected constructor. must be instantiated using a static private constructor. It must be instantiated using a private instance constructor. It must be defined as FINAL. It cannot be defined as FINAL. It must be instantiated using a protected instance constructor. It must be instantiated using a public instance constructor. It must be instantiated using a static public constructor.
Which of the following function types in a GUI status are reserved for internal use? There are 2 correct answers to this question. E-EXIT S- SYSTEM H-HELP REQUEST T-TRANSACTION.
Which of the following rules must you follow when creating subscreens? There are 2 correct answers to this question. Subscreens can have a dialog module containing SET PF-STATUS. Subscreens CANNOT have an AT EXIT-COMMAND module. Subscreens can call other subscreens. Subscreens CANNOT have a field of type OK.
You have declared a sorted internal table with the columns A, B, C, and D. The key consists of columns A, B, and C, in this order. Which combination of columns in the WHERE clause of a LOOP statement allows the system to optimize the access to the table? There are 2 correct answers to this question. C and D B and C A and B A, B, C, and D.
Each ABAP program that actually contains executable statements… There are 2 correct answers to this question. Only assigns executable statements in a processing block to a processing block. Assigns every executable statement to a processing block regardless of it being in a processing block. Has declarative statements outside of processing blocks that are considered local. Can be tested from the ABAP Workbench by pressing (F8). Has declarative statements inside of processing blocks that are considered local. Is divided into processing blocks. Uses event blocks to trigger events in ABAP.
Which options do you have to read data from multiple tables while using a SELECT statement? There are 3 correct answers to this question. Nested select statements Pooled tables Database views Join statements Nested loop statements.
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? Please choose the correct answer. Select any option other than Not Classified from the enhancement category Select the option Not Classified from the enhancement category. Provide the correct reference field for the Currency or Quantity field. Change the Data Class and Size category in the technical settings.
What is the maximum number of watchpoints that can exist at one time? Please choose the correct answer. 6 8 No limit 10.
Which ABAP statement can make an element visible that you statically defined as invisible? Please choose the correct answer. SCREEN-ACTIVE = 1 SCREEN-INVISIBLE = 0 SCREEN-ACTIVE = 0 SCREEN-INVISIBLE = 1.
Which of the following must you do to be able to use a Business Add-in(BADI)? There are 2 correct answers to this question Create the BADI implementation Modify the adapter class Activate the enhancement project Write code for methods.
Which options are valid Open SQL? There are 3 correct answers to this question INNER JOIN LEFT OUTER JOIN FULL JOIN CROSS JOIN RIGHT OUTER JOIN.
What are the advantages of creating a database view to implement a join, instead of formulating the join directly in an Open SQL SELECT statement? There are 2 correct answers to this question A database view can be reused in other programs A secondary index can be created for a database view A database view can be buffered An outer join can only be implemented in a database view.
To which context object is the attribute LEAD_SELECTION_INDEX related? Please choose the correct answer. Element Supply function Attribute Node.
Which of the following elements can a string template contain? There are 2 correct answers to this question. Functional method calls String processing statements Function module calls Literals.
Which of the following actions can be performed in the Process After Input (PAI) processing block? Please choose the correct answer. Modify screen attributes dynamically. Set the title bar. Check the function code. Set the GUI status of the screen.
The order of fields for a transparent table in the database… Please choose the correct answer. Is created in the order of the Data Dictionary. Is allowed to be different than the ABAP Dictionary. Needs to match the ABAP Dictionary. Is created in the order of the ABAP Dictionary.
You are required to add customer source code in the SAP delivered object using the new enhancement framework without modification. How can you find the available enhancement? There are 3 correct answers to this question. Perform a program-related global search for a customer exit. Search for a Business Transaction Event in the Customizing tree (transaction SPRO). Select from the list of application-related BAdIs or enhancement spots in the SAP Application Hierarchy. Select from the list of freely selected BAdIs or enhancement spots in the Repository Information System. Perform a program-related global search for GET BADI.
How can you declare an internal table using the transparent table A as its line type? Please choose the correct answer. DATA gt_itab TYPE LINE OF a. DATA gt_itab TYPE REF TO a. DATA gt_itab TYPE TABLE OF a. DATA gt_itab TYPE a.
What are some of the new features of Open SQL in SAP NetWeaver 7.5? There are 2 correct answers to this question. CASE expressions Full Join String expressions Intersection.
When you add programming logic to your ABAP program that checks authorizations,which of the following do you have to create? There are 2 correct answers to this question. An authorization role An authorization object An authorization profile An authorization Access.
After which statement will the runtime system initialize the ABAP memory? Please choose the correct answer. LEAVE TO TRANSACTION SUBMIT SUBMIT… AND RETURN CALL TRANSACTION.
What is the root class in the RTTS inheritance tree? Please choose the correct answer. CL_ABAP_ELEMDESCR CL_ABAP_TYPEDESCR CL_ABAP_COMPLEXDESCR CL_ABAP_DATADESCR.
Which database objects can you create in the ABAP Dictionary? There are 2 correct answers to this question Logical databases Indexes Foreign key relationships Projection views.
Which of the following values are replaceable in debugger mode? Please choose the correct answer. Table names Variables Constants Field names.
dbtab is a transparent table. What is declared by the following statement? DATA myvar TYPE dbtab. Please choose the correct answer. An elementary field A reference to an internal table A structure variable An internal table.
For which of the following requirements can you implement a functional method? There are 2 correct answers to this question. A method to set an instance attribute with one importing parameter and no other parameters A private static helper method that returns a single value as the result of an algorithm A handler method for an event that has a returning parameter A factory method that returns an object reference.
Which actions release a lock object (with a default value for _SCOPE)? There are 5 correct answers to this question. A CALL TRANSACTION; The display of an SAP screen An “/n” in the command field DEQUEUE_ ENQUEUE_ The display of a dialog message type E A SUBMIT The display of a dialog message type A COMMIT WORK ROLLBACK WORK A call to a function module.
Which of the following ABAP standard types are incomplete? There are 2 correct answers to this question. STRING F N X.
Report abuse