WorksheetsABAP Exam
Total questions: 26
Worksheet time: 38mins
A standard Function Module can be used to generate ALV Grid Display, but the display is not customizable.
True
False
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.
True
False
ABAP List, ALV List, and ALV Grid are the same displays, and have the same appearance.
True
False
Function modules cannot be executed independently.
True
False
A function group cannot be executed.
True
False
This kind of Function Module is executed immediately and synchronously on your current SAP system.
Regular FM
Remote-Enabled FM
Update FM
BAPI (Business Application Programming Interface)
Common use-cases are using a BAPI to _________ business objects like Sales Orders, Business Partners, or Purchase Orders.
Create
Read
Update
Delete
All of the Above
Using function modules helps us in __________.
easy transfer of code
code reusability
complexing the structure
All of the above
(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.
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
The (a) statement enables us to create structured data types to be used within our ABAP program.
ALV stands for (a) .
The transaction code for browsing table contents is (a) .
Viewing/maintaining ABAP Dictionary Objects can be accessed through (a) .
(a) is made up of one or more fields that uniquely identify each table row.
A (a) contains a set of logically related function modules.
Export parameters are used in function modules to pass results back to the calling program. Keyword (a) is used.
RFC is a mechanism that allows business applications to communicate and exchange information (in pre-defined formats) with other systems. RFC stands for?
(a)
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?
What is the importance of system variable SY-SUBRC in executing SELECT statements, function modules, etc.?
What is the difference between a Breakpoint and a Watchpoint?
Write a DATA declaration statement to create a work area with the same structure as standard table SFLIGHT.
Standard table SCARR has a unique key field named CARRID, write a DATA declaration statement to create a standard internal table of SCARR.
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,
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"
Identify and briefly discuss the 5 different development objects in ABAP.
