ABAP CERTIFICATION Multiple Choice
Questions
Ref_cl is a reference to the class cl_document. ref_if is a
reference to the interface if_display. The interface if_display is implemented
by the class cl_document. What option do you have to create an object of the
class cl_document?
For this question there are 3 correct options.
1. CREATE OBJECT
ref_cl. True
2. CREATE OBJECT
ref_if TYPE cl_document. True
3. CREATE OBJECT
ref_if. False
4. DATA class_name
TYPE string.
class_name = "CL_DOCUMENT".
CREATE OBJECT ref_if TYPE (class_name). True
Which of the following statements about functional methods are
correct?
For this question there are 3 correct options.
1. Functional methods
cannot have any EXPORTING or CHANGING parameters. True
2. Functional methods
have exactly one RETURNING parameter. True
3. You can functional
methods directly in a WRITE statement. False
4. You can use
functional methods directly in an arithmetic expression. True
You are writing a transaction to update a database table. Which
of the following elements must the program contain?
For this question there are 3 correct options.
1. A logical database. False
2. A table buffer
refresh on the application server. False
3. A call for
ENQUEUE/DEQUEUE function modules. True
4. An AUTHORITY-CHECK
statement. True
5. A call for an
update function module in the case of time-consuming changes. True
What are the main reasons for using update techniques?
For this question there are 3 correct options.
1. To log the database
changes. True
2. To achieve delayed
implementation of database changes. False
3. To collect database
change requests from several dialog step in order to process them or delete
them together. True
4. To create reusable
modules for database changes. True
5. To relieve the load
on the dialog work processes. True
Which of the following steps should be carried out in a
transaction that implements an updating technique?
For this question there are 4 correct options.
1. Call the ABAP
command COMMIT WORK. True
2. Unlock the data
record that is to be updated False
3. Lock the data
record that to be update. True
4. Read the data
record that is to be update. True
5. Pass the changes
entered by the user to the update process. True
The transaction CMOD and SMOD are:
For this question there are 2 correct options.
1. Used to create
enhancements to standard SAP programs. True
2. Used to create
enhancements to ABAP queries. False
3. Used to create the
user exits, menu exits and screen exits. True
4. Used to modify the
standard function groups. False
Which statements are allowed if you are working with an internal table of the type sorted?
Which statements are allowed if you are working with an internal table of the type sorted?
For this question there are 4 correct options.
1. INSERT. True
2. COLLECT. True
3. SORT. False
4. READ. True
5. MODIFY. True
What is the system field for the current date? (Single selection)
1. SY-DATUM True
2. SY-DATE False
3. SY-DATID False
4. SY-SDATE False
A field declared as type T has the following internal representation:(Single selection)
A field declared as type T has the following internal representation:(Single selection)
1. SSMMHH False
2. HHMMSS True
3. MMHHSS False
4. HHSSMM False.