You want to display a dialog box in your ABAP program. Which statement do you use?
A. WINDOW 200 STARTING AT 5 5.
B. SET SCREEN 200.
C. CALL SCREEN 200.
D. CALL SCREEN 200 STARTING AT 5 5.
Which ABAP statement using the local type gty_1 correctly defines a data object? (Choose two)
A. DATA gv_1 TYPE gty_1.
B. DATA gv_1 LIKE gty_1.
C. CONSTANTS gc_1 TYPE gty_1 VALUE '1'.
D. DATA gv_1 TYPE gty_1 DEFAULT '1'.
What do global types and local types have in common?
A. Documentation
B. Field labels
C. Search help
D. Technical information
Where can you set the GUI status and the GUI title for a classical screen (dynpro)?
A. In a module called from PBO of the screen
B. In the attributes of the screen
C. In the properties of the related header UI element
D. In a module called from PAI of the screen
How can you maintain documentation for input fields on your screen?
A. Add documentation to the SCREEN table at PROCESS BEFORE OUTPUT (PBO).
B. Add documentation to the SCREEN table at PROCESS AFTER INPUT (PAI).
C. Add documentation to the underlying data element.
D. Define text tables for the underlying structure.
You create a function group ZATP. What is the name of the corresponding main program?
A. ZATP
B. SAPLZATP
C. SAPMZATP
D. SAPFZATP
You have written a program to output data using the ALV grid control.
Which sequence of steps should be executed at runtime?
A. 1. Create a container object
2.
Create a grid object
3.
Pass data to the grid object
B. 1. Create a grid object
2.
Pass data to the grid object
3.
Create a container object
C. 1. Pass data to the grid object
2.
Create a container object
3.
Create a grid object
D. 1. Create a grid object
2.
Create a container object
3.
Pass data to the grid object
Which boundary conditions lead to improved access time to an internal table? (Choose three)
A. Left justified part of key for sorted tables
B. Fully qualified key for sorted tables
C. Index access for hashed tables
D. Left justified part of key for hashed tables
E. Index access for standard tables
You want to use a BAdI to extend the functions of an SAP program.
Which of the following tasks is necessary?
A. Call the BAdI.
B. Create an enhancement project using a customer exit.
C. Define an interface for the BAdI.
D. Implement a class that implements the BAdI interface.
Which data type is allowed for the reference field of the Currency field?
A. UNIT
B. CUKY
C. DEC
D. CURR