|
ABAP Interview Questions -
Questions
|
|
Written by admin
|
|
Monday, 01 September 2008 16:51 |
1. To allow the user to enter values on the screen for a list field, use: A: OPEN LINE. B: SET CURSOR FIELD. C: WRITE fld AS INPUT FIELD. D: FORMAT INPUT ON.
2. Before a function module may be tested, it must first be: A: Linked B: Authorized C: Released D: Active
3. To include a field on your screen that is not in the ABAP Dictionary, which include program should contain the data declaration for the field? A: PBO module include program B: TOP include program C: PAI module include program D: Subroutine include program
4. If a table contains many duplicate values for a field, minimize the number of records returned by using this SELECT statement addition. A: MIN B: ORDER BY C: DISTINCT D: DELETE
5. The system internal table used for dynamic screen modification is named: A: ITAB B: SCREEN C: MODTAB D: SMOD
6. Within the source code of a function module, errors are handled via the keyword: A: EXCEPTION B: RAISE C: STOP D: ABEND
7. Which system field contains the contents of a selected line? A: SY-CUCOL B: SY-LILLI C: SY-CUROW D: SY-LISEL
8. The following statement writes what type of data object? WRITE: /1 'Total Amount:'. A: Text literal B: Text variable C: In-code comment D: Text integer
9. For the code below, second_field is of what data type? DATA: first_field type P, second_field like first_field. A: P B: C C: N D: D
10. Which of the following describes the internal representation of a type D data object? A: DDMMYYYY B: YYYYDDMM C: MMDDYYYY D: YYYYMMDD
|