What can you create using the ABAP Dictionary? (Choose three)
A. Domains
B. Type pools
C. Transparent tables
D. Field symbols
E. Internal tables
What features are provided by the database interface? (Choose three)
A. Database independence of application programs
B. Conversion of Open SQL statements from ABAP statements into the corresponding database statements
C. Syntax check of Native SQL commands
D. Access to SAP table buffers
E. Data consistency check using foreign key relationships
What can you use to achieve polymorphism?
A. Events
B. Subroutines
C. Inheritance
D. Reports
E. Company 2
Which of the following predefined ABAP types is incomplete?
A. F
B. P
C. XSTRING
D. STRING
You perform an update task using update function modules and detect an error in the program that calls the update function modules.
Which statement can be used to discard all update requests for the current SAP LUW? (Choose two)
A. EXIT.
B. ROLLBACK WORK.
C. MESSAGE axxx(nnn).
D. MESSAGE exxx(nnn).
E. DELETE UPDATE.
Which ABAP statement using the local type gty_1 correctly defines a data object? (Choose two)
A. DATA gv_1 TYPE gty_1.
B. DATA gv_1 LIKE gty_1.
C. CONSTANTS gc_1 TYPE gty_1 VALUE '1'.
D. DATA gv_1 TYPE gty_1 DEFAULT '1'.
What do global types and local types have in common?
A. Documentation
B. Field labels
C. Search help
D. Technical information
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?
A. Cluster table
B. Pooled table
C. Transparent table
D. Internal table
When should you use a hashed internal table? (Choose two)
A. When accessing mainly single records
B. When accessing by secondary key
C. When accessing using the left-justified part of the key
D. When accessing always by primary key
E. When accessing by index
In the technical settings for a transparent table, buffering is switched on and single record buffering is selected.
Which statement uses the buffered data assuming that the WHERE clause contains restrictions for all key fields?
A. SELECT ... . ENDSELECT.
B. SELECT SINGLE ... .
C. SELECT ... INTO TABLE ... .
D. SELECT SINGLE ... FOR UPDATE.