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

Description:
C_TAW12_750 - SAP - ABAP with SAP NetWeaver 7.50

Author:
tariq554
Other tests from this author

Creation Date:
01/06/2020

Category: Others

Number of questions: 40
Share the Test:
New CommentNuevo Comentario
No comments about this test.
Content:
Which statement is true? Please choose the correct answer. A database LUW cannot be placed within an SAP LUW. A database LUW must be placed without an SAP LUW. A database LUW must be placed within an SAP LUW. An SAP LUW must be placed within a database LUW.
To reserve an area on the screen for an ALV Grid Control, you must do the following: Please choose the correct answer. Use the Screen Painter Create an object (instantiate the object) of the class CL_GUI_ALV_GRID Create an object (instantiate the object) of the class CL_SALV_TABLE Create an object (instantiate the object) of the class CL_GUI_CUSTOM_CONTAINER.
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 the line index. Specify a WHERE condition. Specify a regular expression.
Which comparison operators can you use in a logical expression related to the WHERE clause of the SELECT statement?                                                                                                                                                                                     There are 3 correct answers to this question. LIKE (fits pattern) GT (greater than) CP (covers pattern) CO (contains only) EQ (equals).
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 secondary index can be created for a database view A database view can be buffered A database view can be reused in other programs An outer join can only be implemented in a database view.
You are asked to enhance the GUI status of an SAP standard application.  How do you identify which menu exit function code you can use? Please choose the correct answer. It starts with an asterisk (*). It starts with a dollar ($). It starts with a plus (+). It starts with an ampersand (&).
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question. SPDD SPAU_ENH SPAU SPAD.
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? Please choose the correct answer. SET_TABLE_FOR_FIRST_DISPLAY in module PAI SET_TABLE _FOR_FIRST_DISPLAY in module PBO REFRESH_TABLE_DISPLAY in module PBO REFRESH_TABLE_DISPLAY in module PAI.
What is the maximum number of watchpoints that can exist at one time? Please choose the correct answer. 8 10 6 No limit.
To benefit from the hash algorithm when accessing a hashed internal table, how do you specify the key? Please choose the correct answer. Fully qualified Any key Left aligned, gap free Under-qualified.
Subroutines provide which types of parameters? There are 2 correct answers to this question. Return values Input/output (changing) Exceptions Output Input.
Each ABAP program that actually contains executable statements… There are 2 correct answers to this question. Uses event blocks to trigger events in ABAP. Can be tested from the ABAP Workbench by pressing (F8). Is divided into processing blocks. Has declarative statements inside of processing blocks that are considered local. Has declarative statements outside of processing blocks that are considered local. Assigns every executable statement to a processing block regardless of it being in a processing block. Only assigns executable statements in a processing block to a processing block.
You are writing an ABAP declaration using the data element S_CARR_ID. Which of the following statements correctly define a data object? There are 2 correct answers to this question CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’ DATA gv_id TYPE s_carr_id DEFAULT ‘QF’ DATA gv_id LIKE s_carr_id DATA gv_id TYPE s_carr_id.
Which of the following components belong to the SAP application layer? There are 2 correct answers to this question Database interface ABAP dispatcher Database server SAP GUI.
When should you use a hashed internal table? There are 2 correct answers to this question. When accessing by index When accessing always by primary key When accessing using the left-justified part of the key When accessing by secondary key When accessing mainly single records.
You enhance an SAP standard global class by defining a post-method for an SAP method. The original SAP method has an EXPORTING parameter named PAR 1. What type of parameter is PAR 1 in the post-method? Please choose the correct answer IMPORTING RETURNING CHANGING EXPORTING.
When must a foreign key have domain equality? Please choose the correct answer. Never Always For a text table For a check field.
The USER has the following fields: ID, FIRST_NAME, LAST_NAME. FIRST_NAME, LAST_NAME have the same basic type and length. You want to compare fields FIRST_NAME, LAST_NAME to each other. Which of the following SELECT statements can you use? There are 2 correct answers to this question. SELECT*FROM users AS a INTO TABLE It_users WHERE a first_name = last_name. SELECT*FROM users INTO TABLE It_users WHERE first_name = users last_name SELECT*FROM users AS a INTO TABLE It_users WHERE a»first_name = a»last_name SELECT*FROM users INTO TABLE It_users WHERE first name = users »last_name.
When are the changes to the VB* table transferred to the database? Please choose the correct answer. When the main program is executed When the enqueue work process is executed When an update function module is executed When the update work process is executed.
You have written a method implementation containing the following access to an internal table defined as a changing parameter of the method. READ TABLE ct_itab INTO cs_struc INDEX 1. What are the possible type definitions for parameter ct_itab? There are 3 correct answers to this question Standard Table Any Table Sorted Table Index Table Hashed Table.
Which of the following statements are correct? There are 4 correct answers to this question. Only public methods can be addressed outside the class. Class methods assigned to the public visibility section can be accessed outside the class using the static component selector and the class name. Static methods can be defined in both the public and private visibility section of the class. You can call private methods within the public methods without reference to the object or class. None of the above.
You are creating an inspection using the Code Inspector. Which entities can you select for inspection? There are 3 correct answers to this question. Contents of a single object Contents of a transport request Contents of a package Contents of an object set Contents of named user's objects.
Which of the followings components are part of SAP NetWeaver AS ABAP version 7.1x and higher? There are 2 correct answers to this question. Software Deployment Manager (SOM) Internet Communication Manager (ICM) Message Server SAP GUI for Java.
Why should you bundle database updates in your dialog programs? Please choose the correct answer. To process the SAP LUW within the database LUW to ensure data consistency To avoid database locks set by an SQL statement that persists until the end of the program To be able to rollback database changes performed in the same dialog step To allow you to use SAP locks to ensure data consistency.
When included in a structure, which elementary field types allow the structure to be considered a character-type data object? There are 4 correct answers to this question. D XSTRING T STRING C F X N I.
You want to read data from two database tables A and B using a database join. Database table B contains details for data records stored in database table A. Your result should contain all combinations of matching rows from A and B plus all rows from A that do not have matching rows in B. Which statement do you use? Please choose the correct answer. SELECT … FROM b RIGHT OUTER JOIN a … SELECT … FROM a INNER JOIN b … SELECT … FROM a JOIN b … SELECT … FROM a LEFT OUTER JOIN b ….
When analyzing a program, which tasks can you perform using the code inspector? There are 3 correct answers to this question. Determine used database tables. Execute the extended program check Inspect the memory consumption Discover unused variables. Evaluate the time needed for program execution.
A user runs an ABAP program, enters an incorrect value on the selection screen, and chooses Execute. Which event block must send the error message in order to display the selection screen again? Please choose the correct answer AT SELECTION-SCREEN ON HELP-REQUEST AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN ON VALU E-REQUEST AT SELECTION-SCREEN.
What is the difference between a value table and a check table? Please choose the correct answer. A value table does not exist. A value table is defined in the domain, whereas a check table is defined in the data element. No difference; they are the same thing. A value table is a check table after a foreign key is defined. A check table is defined in the domain, whereas a value table is defined in the data element.
What is the allowed length of the ABAP Dictionary data type DF34_RAW? Please choose the correct answer. The allowed length is between 1 and 34 digits. The allowed length is 34 digits. The allowed length is between 0 and 33 digits. The allowed length is between 1 and 31 digits. None of the above.
How do you define an internal table in a private method of a class? There are 3 correct answers to this question. DATA lt_itab TYPE TABLE OF <Structure Type> DATA lt_itab TYPE <Dictionary Table> DATA lt_itab TYPE TABLE OF <Dictionary Table > WITH HEADER LINE DATA lt_itabTYPE <Table Type> DATA lt_itab TYPE TABLE OF < Dictionary Table >.
Which components belong to an elementary search help? There are 2 correct answers to this question. Attachment to a field Import / export parameters Selection method Fixed values.
What must exist before you can create a new transportable function module? There are 3 correct answers to this question. Type group Function group Module pool Package Change request.
How many kinds of internal tables are supported in the ABAP language? Please choose the correct answer. 1 2 3 5 None of the above.
You are writing a program that uses ABAP class. Which components of the class can you create directly from the program? Please choose the correct answer. Only public components Only protected components Only private components All components.
You want to add a field ZZPRICE to the SAP standard transparent table EKKO. Which of the following actions result in an enhancement of the SAP standard? There are 2 correct answers to this question. Insert ZZPRICE at the end of the table Insert ZZPRICE into an SAP structure for the table Add ZZPRICE to the customizing include for the table Create an append structure and add ZZPRICE to it.
What can be part of the signature of an instance constructor? There are 2 correct answers to this question Importing parameters Changing parameters Exceptions Exporting parameters.
Where are fixed values for fields stored? Please choose the correct answer. Data element Domain Field Table Structure.
Which of the following controller types can exist only once in a Web Dynpro component? There are 2 correct answers to this question. Window controller View controller Configuration controller Component controller.
Which of the following is a true statement? There are 3 correct answers to this question. Packages use interfaces and visibility to make their elements visible to other packages. All customer repository objects have to be assigned to a package. The transport layer is a mandatory input field for the package. A package can be nested.
Report abuse