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

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: 40
Share the Test:
New CommentNuevo Comentario
AVATARabap_dev_12 ( uploaded 3 years )
Report comment
"Use a MOVE statement in a PAI module to copy data to a data object" - seriously???
AVATARAntichrist ( uploaded 2 years )
Report comment
I agree - this is a fail Also as "type any table" for character string
Content:
You build a dialog screen with an input field in an ABAP program. How do you ensure that the contents of the screen field can be accessed in the program? Please choose the correct answer. Use a MOVE statement in a PAI module to copy the data to a data object Define a data object in the program with the same name as the screen field Use the GET statement in the program to transport the data from the screen field Enter the name of a data object in the Parameter ID attribute of the screen field.
You add the CREATE PROTECTED addition to a class definition. From where you can instantiate the class? There are 3 correct answers to this question. From a friend class From any protected class From a child class From a parent class From the class itself.
You are using the new debugger and you want to change the content of an internal table. Which actions are allowed? There are 3 correct answers to this question. Change row content and press Enter (<ENTER>). Change row content and press Save (<CTRL> + S). Delete table from memory. Delete the entire contents of a table. Delete the selected rows.
Where do you create online documentation ((F1) help) for fields on the screen? Please choose the correct answer. Structure Domain Data element Field Table.
Which of the following statements are true? There are 3 correct answers to this question. The tables included in the help view should have a foreign key relationship. The tables included in the maintenance view should have foreign key relationships. Projection views can have more than one table included for the view definition. You cannot use a pooled or cluster table for a database view.
Your colleague has asked you to analyze an ABAP program that does not behave correctly when a button is pressed on the initial screen. You want to start the Debugger when the button is pressed so that you can perform your analysis. What system command do you type in the command field? Please choose the correct answer. /n /h Jdbg /hx.
What is the default length of the type C data type? Please choose the correct answer. 1–65535 10 1 100.
A function module that has 2 classical exceptions is called with actual parameter values in such a way that both exception conditions are fulfilled. How will the runtime system behave? Please choose the correct answer. The first exception that occurs will be raised. In the calling program, sy-subrc has the value specified for the first exception. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the second except on. No exception will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option. Both exceptions will be raised. In the calling program, sy-subrc has the value specified for the OTHERS option.
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question SPAU_ENH SPAD SPAU SPDD.
Which ABAP statement can make an element visible that you statically defined as invisible? Please choose the correct answer. SCREEN-INVISIBLE = 0 SCREEN-ACTIVE = 0 SCREEN-INVISIBLE = 1 SCREEN-ACTIVE = 1.
Which SELECT statement will always bypass the SAP table buffers? Please choose the correct answer. SELECT … INTO TABLE … SELECT … SINGLE … SELECT … FOR UPDATE … SELECT … ENDSELECT.
You have 2 objects: O1 of type class C1 and O2 of type class C2. Class C2 is a subclass of class C1. Which of the following statements implements an up cast? Please choose the correct answer. O2 ?= O1. MOVE O1 TO O2. MOVE O1 ?TO O2. O1 = O2.
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 DATA gv_id TYPE s_carr_id DATA gv_id TYPE s_carr_id DEFAULT ‘QF’ CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’ DATA gv_id LIKE s_carr_id.
Which of the following customer modifications options are available in the table maintenance generator? There are 2 correct answers to this question. Append searches Maintenance screens Events Search helps.
Which desktops are part of the new ABAP debugger? There are 3 correct answers to this question. Session List Break./Watchpoints Desktop 1 Objects.
Which statement will interrupt the processing of the current screen and branch to new screen? Please choose the correct answer. None of the above SET SCREEN <NNNN> LEAVE TO SCREEN <NNNN> CALL SCREEN <NNNN>.
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 Hashed Table Index Table Any Table Standard Table Sorted Table.
Which statements about ABAP are true? Please choose the correct answer. Each statement must begin with a keyword. Each statement cannot begin with a keyword. Each statement must end with a period. ABAP keywords and additions must be in uppercase.
For which of the following purposes can you use the ABAP dictionary? There are 2 correct answers to this question. To activate logging for transparent tables To create lock objects To maintain program translations To create development classes.
What does a non-exclusive debugging mode mean? There are 4 correct answers to this question. It may be used anywhere in the landscape. Owing to the commit, inconsistent datasets can occur in the database. A roll-out is forced in the application after each Debugger view. Debugging is not possible for conversion or field exits. Someone else is debugging the same source code. Debugging is not possible between the statements SELECT and ENDSELECT because the database cursor needs to be closed using a COMMIT.
What is the purpose of implicit enhancement points? Please choose the correct answer. To add code to a standard SAP program To change code in a standard SAP program To add fields to an SAP database table To create a secondary index for an SAP database table.
Which of the following ABAP data types are compatible with the generic character-type CLIKE? There are 3 correct answers to this question. C DECFLOAT N String XString.
To which ABAP Dictionary definition can you assign fixed values? Please choose the correct answer. Data element Field of a transparent table Component of a structure Domain.
Which elementary field types are considered a character type? There are 5 correct answers to this question. T XSTRING F I N C X D STRING.
In which of the following source code blocks can you define local data objects? There are 3 correct answers to this question LOAD-OF-PROGRAM Subroutine Function module Static method PBO module.
What properties will be set when you define a table type in the ABAP Dictionary? There are 3 correct answers to this question. Primary key GET/SET Parameter Access mode  Change document Line type.
You want to check the user input in the field FIELD_NAME on a classical screen. If an incorrect value is entered, the user should be able to correct the field value. How do you call the module CHECK_MODULE in the PAI of the screen to accomplish this? Please choose the correct answer. CHAIN. MODULE check_module FIELD field_name. ENDCHAIN. FIELD field_name MODULE check_module. FIELD field_name MODULE check_module MESSAGE Ennn. MODULE check_module ON ERROR.
Which method of passing parameters is preferred for its performance? Please choose the correct answer. Pass by value Pass by subclass Pass by reference Pass by class.
Identify the types of controller. There are 5 correct answers to this question. Component controller Configuration controller Window controller View controller Custom controller Consumer controller.
You need to create a piece of code that can be used by multiple programs. Which of the following techniques does SAP recommend? There are 2 correct answers to this question. Use a method in a local class. Use a function module in a function group. Use a method in a global class Use an include program.
You want to develop 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? Please choose the correct answer. END-OF-SELECTION INITIALIZATION START-OF-SELECTION AT SELECTION-SCREEN.
Subroutines provide which types of parameters? There are 2 correct answers to this question. Output Return values Exceptions Input/output (changing) Input.
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 TABLE OF < Dictionary Table > DATA lt_itab TYPE <Dictionary Table> DATA lt_itabTYPE <Table Type> DATA lt_itab TYPE TABLE OF <Dictionary Table > WITH HEADER LINE.
Which of the following generic types can you use to define a field symbol that will be assigned to a character string? There are 3 correct answers to this question Type clike Type any Type csequence Type any table Type xsequence.
Each component has an interface; of what does this interface consist? There are 2 correct answers to this question. Interface controller Interface context Interface view Data Container.
Which of the following is a true statement? There are 2 correct answers to this question. A hashed table should always have a unique table key. A sorted table can have a unique or a non-unique key. A standard table should always have a unique key. A standard table should always have a multiple key.
Identify the ways to map context structures. There are 2 correct answers to this question. External context mapping Static context mapping Direct context mapping Dynamic context mapping.
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. Final Private Abstract Protected.
You want to select all the records from a database table where field CITY contains substring ‘BU’ in any position. Which WHERE clause can you use in an Open SQL select statement? Please choose the correct answer. WHERE city LIKE ‘%BU*’ WHERE city LIKE ‘_BU’ WHERE city LIKE ‘*BU*’ WHERE city LIKE ‘%BU%’.
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? Please choose the correct answer. Transparent table Pooled table Internal table Cluster table.
Report abuse