SAP ABAP FAQ - Frequently Asked
Questions
The ANSWERS is in BOLD.
1. If a table does not have MANDT as part of the primary key, it is. A: A structure
2. In regard to CALL, which of the following is NOT a valid statement? A: CALL FUNCTION
3. Name the type of ABAP Dictionary table that has these
characteristics:
A: Pooled
4. An event starts with an event keyword and ends with: A: Program execution.
5. What is the system field for the current date? A: SY-DATUM
6. The following code indicates: A
A: Add rows to the existing rows of itab.
7. You may change the following data object as shown below
so that it equals 3.14.
A: True
8. The SAP service that ensures data integrity by handling locking is called: A: Update
9. Which of these sentences most accurately describes the GET VBAK LATE. event? A: This event is processed before the second time the
GET VBAK event is processed.
10. Which of the following is not a true statement in regard to a hashed internal table type? A: Its key must always be UNIQUE.
11. TO include database-specific SQL statements within an ABAP program, code them between: A: NATIVE SQL_ENDNATIVE.
12. To measure how long a block of code runs, use the ABAP statement: A: GET TIME .
13. When a secondary list is being processed, the data of the basic list is available by default. A: True
14. Given:
DO 25 TIMES. itab-qty = sy-index. APPEND itab.
LOOP AT itab WHERE qty > 10.
This will result in: A: Output of only those itab rows with a qty field less
than 10
15. After a DESCRIBE TABLE statement SY-TFILL will contain A: The number of rows in the internal table.
16. You may declare your own internal table type using the TYPES keyword. A: True
17. After adding rows to an internal table with COLLECT, you should avoid adding more rows with APPEND. A: True
18. Which of the following is not a component of control break processing when looping at an internal table? A: AT START OF
19. A dictionary table is made available for use within an ABAP program via the TABLES statement. A: True
20. Which of the following would be best for hiding further selection criteria until a function is chosen? A: AT NEW SELECTION-SCREEN
21. What must you code in the flow logic to prevent a module from being called unless a field contains a non-initial value (as determined by its data type)? A: ON INPUT
22. The AT USER-COMMAND event is triggered by functions defined in the ____. A: screen painter
23. In regard to a function group, which of the following is NOT a true statement? A: Combines similar function modules.
24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____. A: EXCLUDING
25. In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement? A: Fields in PBO are transported directly from PAI.
26. The order in which an event appears in the ABAP code determines when the event is processed. A: True
27. A field declared as type T has the following internal representation: A: SSMMHH
28. Which of the following is NOT a component of the default standard ABAP report header? A: Date and Time
29. Assuming a pushbutton with function code 'FUNC' is available in the toolbar of a list report, what event is processed when the button is clicked? A: AT USER-COMMAND.
30. In regard to field selection, what option of the SELECT statement is required? A: FOR ALL ENTRIES
More Abapers Questions: ABAP Books ListABAP/4 Certification, Programming and Object Oriented Programming Books Smart Forms
ABAP Menu:
Return to Index:-
(c) www.gotothings.com All material on this site is Copyright.
|