NEW
Font size
WorksheetsSAP ABAP POSTTEST
Total questions: 10
Worksheet time: 5mins
What is the ABAP Dictionary being used for?
Defining database objects, e.g. Tables and Views on the Database
Maintaining ABAP programs
Maintaining Documentation
Maintaining help files
Identify a correct statement
Constants : C1(4) TYPE c VALUE ‘ABCD.
Constants : C1(4) TYPE c.
Constants : C1(4) LIKE c VALUE ‘ABCD.
Constants : C1(4) LIKE c.
In ABAP Objects methods can have the following parameters except :
Importing
Exporting
Tables
Changing
In debugging, if you want to test a transaction you enter in command field.
/a
/h
/d
/tr
Identify the key word that determines if a CMOD function exit has been provided.
CALL PROGRAM-EXIT
CALL CUSTOMER-FUNCTION
CALL CUSTOMER-SUBSCREEN
CALL USER-EXIT
You can use F1 help to
Display an explanation of a field’s uses
Display a list of possible input values
End the session you are in
Change the logon language
Given. SELECT fld1 fld2 fld3 FROM tab1 INTO (itab-fld4, itab-fld5, itab-fld6) WHERE fld7 = pfld7. APPEND itab. ENDSELECT. Which of the following is a good performance tuning technique?
Change the SELECT statement to use INTO TABLE itab
Add MOVE statements to fill the header line of itab
Remove the internal table itab from the SELECT statement
This code is optimized; no change is required
To call a local subroutine named process_data, use this line of code
PERFORM process_data
CALL process_data
USING process_data
SUB process_data
Statement “Continue” inside a LOOP AT ITAB…ENDLOOP will..
Come out of the LOOP and process the next statement
Go to the next LOOP process
Will Continue processing the next statement
No one of the Above
Statement “Exit” inside a LOOP AT ITAB…ENDLOOP wil..
Come out of the LOOP and process the next statement
Go to the next LOOP process
Will Continue processing the next statement
No one of the Above
