-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathZTRR01200.abap
45 lines (37 loc) · 1.89 KB
/
ZTRR01200.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
40
41
42
43
44
45
*------------------------------------------------------------------*
* Report : ZTRR01200 *
* Create Date : 2011/08/17 *
* Create By : T00193 *
* Title : Investment code by Planning group *
* *
* Description : Get all line item *
*------------------------------------------------------------------*
* Change History *
* Date Developer Description *
* 2011.08.17 YN.Kim Create *
*------------------------------------------------------------------*
REPORT ztrr01200 MESSAGE-ID zmfi.
include ZTRR01200_t01.
include ZTRR01200_f01.
*------------------------------------------------------------------*
* INITIALIZATION *
*------------------------------------------------------------------*
INITIALIZATION.
perform init_screen.
*------------------------------------------------------------------*
* TOP-OF-PAGE *
*------------------------------------------------------------------*
TOP-OF-PAGE.
*------------------------------------------------------------------*
* START-OF-SELECTION *
*------------------------------------------------------------------*
START-OF-SELECTION.
PERFORM select_order.
PERFORM select_text.
PERFORM select_data.
*------------------------------------------------------------------*
* END-OF-SELECTION *
*------------------------------------------------------------------*
END-OF-SELECTION.
PERFORM display_list.
*