wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

SAP ABAP POSTTEST

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

What is the ABAP Dictionary being used for?

a)

Defining database objects, e.g. Tables and Views on the Database

b)

Maintaining ABAP programs

c)

Maintaining Documentation

d)

Maintaining help files

2.

Identify a correct statement

a)

Constants : C1(4) TYPE c VALUE ‘ABCD.

b)

Constants : C1(4) TYPE c.

c)

Constants : C1(4) LIKE c VALUE ‘ABCD.

d)

Constants : C1(4) LIKE c.

3.

In ABAP Objects methods can have the following parameters except :

a)

Importing

b)

Exporting

c)

Tables

d)

Changing

4.

In debugging, if you want to test a transaction you enter in command field.

a)

/a

b)

/h

c)

/d

d)

/tr

5.

Identify the key word that determines if a CMOD function exit has been provided.

a)

CALL PROGRAM-EXIT

b)

CALL CUSTOMER-FUNCTION

c)

CALL CUSTOMER-SUBSCREEN

d)

CALL USER-EXIT

6.

You can use F1 help to

a)

Display an explanation of a field’s uses

b)

Display a list of possible input values

c)

End the session you are in

d)

Change the logon language

7.

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?

a)

Change the SELECT statement to use INTO TABLE itab

b)

Add MOVE statements to fill the header line of itab

c)

Remove the internal table itab from the SELECT statement

d)

This code is optimized; no change is required

8.

To call a local subroutine named process_data, use this line of code

a)

PERFORM process_data

b)

CALL process_data

c)

USING process_data

d)

SUB process_data

9.

Statement “Continue” inside a LOOP AT ITAB…ENDLOOP will..

a)

Come out of the LOOP and process the next statement

b)

Go to the next LOOP process

c)

Will Continue processing the next statement

d)

No one of the Above

10.

Statement “Exit” inside a LOOP AT ITAB…ENDLOOP wil..

a)

Come out of the LOOP and process the next statement

b)

Go to the next LOOP process

c)

Will Continue processing the next statement

d)

No one of the Above