wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

ABAP Exam

Total questions: 26

Worksheet time: 38mins

Name
Class
Date
1.

A standard Function Module can be used to generate ALV Grid Display, but the display is not customizable.

a)

True

b)

False

2.

ALV Grid Display Generic Tool Bar contains multiple helpful pre-set/pre-existing tools to manipulate the table display, one of which is a button that can display the average value of the highlighted column.

a)

True

b)

False

3.

ABAP List, ALV List, and ALV Grid are the same displays, and have the same appearance.

a)

True

b)

False

4.

Function modules cannot be executed independently.

a)

True

b)

False

5.

A function group cannot be executed.

a)

True

b)

False

6.

This kind of Function Module is executed immediately and synchronously on your current SAP system.

a)

Regular FM

b)

Remote-Enabled FM

c)

Update FM

d)

BAPI (Business Application Programming Interface)

7.

Common use-cases are using a BAPI to _________ business objects like Sales Orders, Business Partners, or Purchase Orders.

a)

Create

b)

Read

c)

Update

d)

Delete

e)

All of the Above

8.

Using function modules helps us in __________.

a)

easy transfer of code

b)

code reusability

c)

complexing the structure

d)

All of the above

9.

(a)   are special text literal data objects. They are maintainable, and have the advantage of being able to be translated depending on the logon language.

10.

Object-specific information or ABAP keyword documentation can be viewed by pressing "F1"; pressing "F4" on screen input fields will prompt (a)   to provide users

11.

The (a)   statement enables us to create structured data types to be used within our ABAP program.

12.

ALV stands for (a)   .

13.

The transaction code for browsing table contents is (a)   .

14.

Viewing/maintaining ABAP Dictionary Objects can be accessed through (a)   .

15.

(a)   is made up of one or more fields that uniquely identify each table row.

16.

A (a)   contains a set of logically related function modules.

17.

Export parameters are used in function modules to pass results back to the calling program. Keyword (a)   is used.

18.

RFC is a mechanism that allows business applications to communicate and exchange information (in pre-defined formats) with other systems. RFC stands for?

(a)  

19.

Both DATA and PARAMETERS statements can be used to declare fields (variables) for use within a program. How do they differ in terms of value assignment?

4 lines
20.

What is the importance of system variable SY-SUBRC in executing SELECT statements, function modules, etc.?

4 lines
21.

What is the difference between a Breakpoint and a Watchpoint?

4 lines
22.

Write a DATA declaration statement to create a work area with the same structure as standard table SFLIGHT.

4 lines
23.

Standard table SCARR has a unique key field named CARRID, write a DATA declaration statement to create a standard internal table of SCARR.

4 lines
24.

Correct the following lines of code so that the program will correctly list all Carrier IDs retrieved from SCARR in ASCENDING order, using a field-symbol:

SORTING t_scarr BY carrid DESCENDING,

LOOP ON t_scarr ASSIGNING FIELD-SYMBOL({fs_scarr}).

WRITE: /|{ <fs_scarr>-carrid }|.

ENDWHILE,

4 lines
25.

You have to raise an error message using maintained message 001 in Message Class ZMSGID with variable L_USER. Provide the lines of code that you need to include in your program "ZQUIZ"

4 lines
26.

Identify and briefly discuss the 5 different development objects in ABAP.

4 lines