What is true about sorting an extract (intermediate) dabase?
A. You can sort an extract daset even without a header
B. The extract daset is typically sorted in the Srtof- Selection processing block
C. The sequence of the control breaks in the Loop does not have to correspond to the extract daset sort sequence
D. The extract daset must be sorted for processing to begin
What system variables conins the contents of the selected line in interactive reporting?
A. SY-LSIND
B. None of the answers are correct
C. SY-LISEL
D. SY-LINNO
Which stement would conclude a SAP LUW? (More than one answer is correct)
A. ROLLBACK WORK
B. CALL Transaction
C. MESSAGE S101
D. COMMIT WORK
What is the order of transport in PBO when a ble control is defined in your nodule pool?
A. Screen fields followed by ble control fields
B. All fields regardless of ble control definition are transported at the beginning of PBO
C. ble control fields followed by the remaining screen fields
D. Dictionary Fields followed by Program Fields
When activating a lick object, what is subsequently generated?
A. Function Modules
B. Generic Lock Keys
C. A Dictionary ble
Identify the situation Where Append Structures are not allowed. (More than one answer is correct)
A. If the last field has a domain of da type curr
B. If the last field is already an Append Structure
C. If the ble conins a field of da type LCHR or LRAW
D. If the ble is a pooled or cluster ble
A user has made a modification to a SAP subroutine. A new upgrade release is to be applied and SRP has made modifications to the sane subroutine that the user has modified. What will happen during upgrade using the modification assisnt?
A. The modification assisnt will prompt you for a change request to reapply the change
B. The user modifications are automatically inserted into the new subroutine release
C. The user modifications must be reapplied manually
D. Options 'replace' and 'insert' is made available for you to decide on how to handle the upgrade
What is the root class in the RTTS inheritance tree?
A. CL_ABAP_ELEMDESCR
B. CL_ABAP_TYPEDESCR
C. CL_ABAP_DATADESCR
D. CL_ABAP_COMPLEXDESCR
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.
What must you do to create a singleton class? (Choose two.)
A. Define the class as abstract.
B. Create the object in a static method of the class itself.
C. Store the reference to the singleton object in an instance attribute of the object itself.
D. Set the class instantiation to private.