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

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:
1 Question: 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 CHANGING EXPORTING RETURNING IMPORTING.
2 Question: How would you find out if an application program offers a program exit? Please select all the correct answers that apply. Search for the character string CUSTOMER-FUNCTION Use the Repository Information System Look for a customer exit in the SAP reference IMG within an application area Use the Application Hierarchy.
3 Question: Which events can exist in all types of programs that actually contain executable statements? Please choose the correct answer. INITIALIZATION LOAD-OF-PROGRAM AT USER-COMMAND START-OF-SELECTION AT LINE-SELECTION AT PF##.
4 Question: What is the difference between a value table and a check table? Please choose the correct answer. No difference; they are the same thing. A check table is defined in the domain, whereas a value table is defined in the data element. A value table does not exist. A value table is a check table after a foreign key is defined. A value table is defined in the domain, whereas a check table is defined in the data element.
5 Question: What is mandatory for automatic data transport between a variable and an input field on a classical screen (dynpro)? Please choose the correct answer. The property OUTPUT of the input field must be set. The variable must be declared using the DATA statement. The name of the variable and the name of the input field must be identical. The variable must be declared using the TABLES statement.
6 Question: You have created a screen on which the user enters data that is to be inserted into table T1. How do you ensure that the content of field F in table T1 is checked against table T2? Please choose the correct answer. Create a foreign key for the assigned field of field F of table T1 in table T2 and make table T1 the check table. Create a foreign key for field F of table T1 and make table T2 the foreign key table Create a foreign key for field F of table T1 and make table T2 the check table. Create a foreign key for the assigned field of field F of table T1 in table T2 and make table T2 the check table.
7 Question: 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 AT SELECTION-SCREEN INITIALIZATION START-OF-SELECTION.
8 Question: 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 <Dictionary Table> DATA lt_itabTYPE <Table Type> DATA lt_itab TYPE TABLE OF < Dictionary Table > DATA lt_itab TYPE TABLE OF <Dictionary Table > WITH HEADER LINE DATA lt_itab TYPE TABLE OF <Structure Type>.
9 Question: Which statement is used to generically define the data reference variable z1? Please choose the correct answer. data z1 type ref to PA0001 data z1 type any data z1 type any table data z1 type ref to data.
10 Question: 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.
11 Question: Which of the following are table buffering types? There are 3 correct answers to this question Primary-key Full Generic Single-record Column-store.
12 Question: After which statement will the runtime system initialize the ABAP memory? Please choose the correct answer. SUBMIT LEAVE TO TRANSACTION CALL TRANSACTION SUBMIT… AND RETURN.
Question: Which statements are true about a class that has granted friendship to another class? There are 4 correct answers to this question. All classes that inherit from the friend (subclasses) also have the same access. All classes the friend has granted friendship access status to also have the same access. The friend has access to private attributes. The friend has access to protected attributes. The friend has access to public attributes.
Question: Which of the following controller types can exist only once in a Web Dynpro component? There are 2 correct answers to this question. Component controller Configuration controller Window controller View controller.
What are the prerequisites when creating an append structure for a standard SAP table? There are 2 correct answers to this question The table cannot have any fields of type FLTP The fields in the append structure should star with YY or ZZ The enhancement category of the table is NOT set to ‘Not enhacable’ The table must be copied before the append structure can be created.
What does a Web Dynpro component contain? There are 3 correct answers to this question. Multiple views within a window UI elements Component controller Exactly one interface controller A context.
Question: An ABAP program processes the following expression: r = a / b + c Which of the following data declarations would cause the runtime environment to use fixed-point arithmetic for the above expression? There are 2 correct answers to this question DATA: r TYPE f, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f. DATA: r type p, a type iVALUE 201, b type iVALUE 200, c type i. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE p.
In which event block can you overwrite the default value of a PARAMETERS field on the selection screen? Please choose the correct answer. AT SELECTION-SCREEN START-OF-SELECTION PROCESS BEFORE OUTPUT INITIALIZATION.
You run an executable program that contains the following code: DATA: gv_var1 TYPE n LENGTH 3, Gv_var2 TYPE n LENGTH 3 VALUE ‘456’. START-OF-SELECTION CLEAR gv_var2 Gv_var2 = gv_var1. Gv_var1 = ‘123’. At what point does the system reserve memory for the data object gv_var1? Please choose the correct answer. At the beginning of the START-OF-SELECTION event block When the assignment to gv_var2 is executed When value ‘123’ is assigned to the data object As soon as the program is loaded into the internal session.
You want to create a transparent table. Which of the following must you define to activate the table? There are 3 correct answers to this question. The primary key A delivery class The MANDT field The foreign key A short description.
Which of the following transactions are integrated in the ABAP workbench tools? There are 2 correct answers to this question. Class builder (SE24) ABAP editor (SE38) Process overview (SM50) Overview of job selection (SM37).
FORM routines (subroutines) can be used in which program types? There are 4 correct answers to this question. Class pools Module pools Executables Type groups Interface pools Subroutine pools Function groups.
You want to use a BAdI to extend the functions of an SAP program. Which of the following tasks is necessary? Please choose the correct answer. Implement a class that implements the BAdI interface. Create an enhancement project using a customer exit. Define an interface for the BAdI. Call the BAdI.
Which you should specify in a non-Unicode system when opening a file in TEXT MODE? There are 2 correct answers to this question. The byte order The code page The storage order The ENCODING addition.
When you define local classes in ABAP, which syntactical sequence must you follow? Please choose the correct answer. PRIVATE SECTION, PROTECTED SECTION, PUBLIC SECTION The order is handled automatically. The order doesn’t matter. PUBLIC SECTION, PROTECTED SECTION, PRIVATE SECTION.
You call a lock module. Which exceptions could the lock module raise when a logical lock CANNOT be set? There are 2 correct answers to this question FOREIGN_LOCK CX_SY_DATA_ACCESS_ERROR CX_SY_OPEN_SQL_ERROR SYSTEM_FAILURE.
Which options are valid Open SQL? There are 3 correct answers to this INNER JOIN FULL JOIN RIGHT OUTER JOIN LEFT OUTER JOIN CROSS JOIN.
What are the advantages of defining texts symbols in executable programs? There are 2 correct answers to this question They are easier to maintain than literals. They facilitate multilingual functionality. They can store up to 256 characters. The text of the text symbol can be changed at runtime.
In which program types can you create dialog screens? There are 3 correct answers to this question Executable program Module pool Interface pool Function group Class pool.
There are ____ versions of the ABAP Editor. Please choose the correct answer. 1 2 3 4.
Which of the following ABAP dictionary types can you use to define domains? There are 3 correct answers to this question FLOAT DATE DEC CHAR NUMC.
Which of the following Data Types are allowed in ABAP? There are 2 correct answers to this question. DECFLOAT64 DECFLOAT34 DECFLOAT32 DECFLOAT16.
What do you need to have in your program to respond to the DOUBLE_CLICK event raised by an instance of the CL_GUI_ALV_GRID class? There are 3 correct answers to this question. A method to read the registration table A CATCH statement to capture the event A SET HANDLER statement to register the handler to the event A handler class A handler method for the event.
What is the default length of the type P data type? Please choose the correct answer. 1 1-16 64 8.
What can be exposed in the component interface of a Web dynpro component? Please choose the correct answer. Custom methods of the component controller Standard hook methods of the component controller Public attributes of WINDOW controllers Context nodes of WINDOW controllers.
DOG is a subclass of ANIMAL. You have created a variable of type ANIMAL that references an instance of the DOG class. Which of the following statements can you use to copy this reference to a new variable of type DOG? Please choose the correct answer. WRITE……TO…… MOVE-CORRESPONDING…… TO…… MOVE……?TO…… MOVE…. TO…..
How do you program an input validation on a selection screen that allows users to correct their input?   Please choose the correct answer. Implement the check at the event AT SELECTION-SCREEN. In case of an input error, a type A MESSAGE must be displayed. Implement the check at the event AT SELECTION-SCREEN OUTPUT. In case of an input error, a type E MESSAGE must be displayed. Implement a check at the event AT SELECTION-SCREEN. In case of an input error, a type E MESSAGE must be displayed. Implement the check at the event END-OF-SELECTION. In case of an input error, a type E MESSAGE must be displayed.
You have created the following: - A class with an event definition - A handler class with a method ON EVT that handles this event - A report that instantiates the handler class - A message statement that raises an exception However, the report does not react to the event. How do you analyze this issue? There are 3 correct answers to this question. Check if the event is triggered by setting a breakpoint at the MESSAGE ... RAISING ... statement. Check if the handler method ON_EVT is defined in a subroutine of the report. Check if the implementation of the handler method ON_EVT contains the desired logic. Check if the event is triggered by setting a breakpoint at the RAISE EVENT statement Check if the handler method is registered to the correct event.
What is the purpose of implicit enhancement points? Please choose the correct answer. 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 To add code to a standard SAP program.
Report abuse