-
Notifications
You must be signed in to change notification settings - Fork 0
/
reportStructure.abap
39 lines (33 loc) Β· 1.61 KB
/
reportStructure.abap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
REPORT Z_REPORT_PROGRAM_1.
*--------------------------------------------------------------------*
* Data declarations
*--------------------------------------------------------------------*
*--------------------------------------------------------------------*
* LOAD-OF-PROGRAM
* This is essentially the program's constructor.
*--------------------------------------------------------------------*
LOAD-OF-PROGRAM.
*--------------------------------------------------------------------*
* Initialisation
* The initialisation of the program, directly after LOAD-OF...
*--------------------------------------------------------------------*
INITIALIZATION.
*--------------------------------------------------------------------*
* AT SELECTION-SCREEN
* Defines event blocks for different events triggered at runtime
* during selecting screen processing.
*--------------------------------------------------------------------*
AT SELECTION-SCREEN.
*--------------------------------------------------------------------*
* START-OF-SELECTION
* Standard processing block of the program. Triggerred by running
* the program after any standard screens have been processed.
*--------------------------------------------------------------------*
START-OF-SELECTION.
*--------------------------------------------------------------------*
* END-OF-SELECTION
* Triggerred directly after START-OF... UNLESS the program is
* associated with a logical databse in which case triggered after
* database has completed work.
*--------------------------------------------------------------------*
END-OF-SELECTION.