REPORT Z07_017 .
DATA: BEGIN OF line,
land(3) TYPE c,
name(10) TYPE c,
age TYPE i,
weight TYPE p DECIMALS 2,
END OF line.
DATA itab LIKE STANDARD TABLE OF line WITH NON-UNIQUE KEY land.
line-land = 'G'. line-name = 'Hans'.
line-age = 20. line-weight = '80.00'.
APPEND line TO itab.
line-land = 'USA'. line-name = 'Nancy'.
line-age = 35. line-weight = '45.00'.
APPEND line TO itab.
line-land = 'USA'. line-name = 'Howard'.
line-age = 40. line-weight = '95.00'.
APPEND line TO itab.
line-land = 'GB'. line-name = 'Jenny'.
line-age = 18. line-weight = '50.00'.
APPEND line TO itab.
line-land = 'F'. line-name = 'Michele'.
line-age = 30. line-weight = '60.00'.
APPEND line TO itab.
line-land = 'G'. line-name = 'Karl'.
line-age = 60. line-weight = '75.00'.
APPEND line TO itab.
PERFORM loop_at_itab.
SORT itab.
PERFORM loop_at_itab.
SORT itab.
PERFORM loop_at_itab.
SORT itab STABLE.
PERFORM loop_at_itab.
SORT itab DESCENDING BY land weight ASCENDING.
PERFORM loop_at_itab.
FORM loop_at_itab.
LOOP AT itab INTO line.
WRITE: / line-land, line-name, line-age, line-weight.
ENDLOOP.
SKIP.
ENDFORM.
댓글 0
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
|---|---|---|---|---|
| 31 | REPORT Z13_013 | sapjoy | 2007.01.09 | 2668 |
| 30 | REPORT Z13_012 | sapjoy | 2007.01.09 | 2313 |
| 29 | REPORT Z13_003 | sapjoy | 2007.01.06 | 2471 |
| 28 | FORM set_field_catalogs_grid USING lt_fieldcat TYPE lvc_t_fcat. | sapjoy | 2007.01.04 | 2899 |
| 27 | REPORT Z12_004 | sapjoy | 2007.01.03 | 2290 |
| 26 | REPORT z12_002 | sapjoy | 2006.12.28 | 2659 |
| 25 | MODULE f4_drum_s101 INPUT. 2 | sapjoy | 2006.12.27 | 2412 |
| 24 | module f4_drum_S101 input. | sapjoy | 2006.12.27 | 2584 |
| 23 | REPORT Z11_010 | sapjoy | 2006.12.23 | 2385 |
| 22 | REPORT Z11_008 | sapjoy | 2006.12.23 | 2525 |
| 21 | REPORT Z11_005 | sapjoy | 2006.12.22 | 2308 |
| 20 | REPORT z11_004 . | sapjoy | 2006.12.22 | 2496 |
| 19 | REPORT Z11_001 | sapjoy | 2006.12.20 | 3018 |
| 18 | PUT_SPFLI PUT_SFLIGHT PUT_SBOOK | sapjoy | 2006.12.20 | 2645 |
| 17 | REPORT Z09_010 | sapjoy | 2006.12.20 | 2565 |
| 16 | DBZF1SSEL | sapjoy | 2006.12.20 | 2891 |
| 15 | REPORT Z09_006 [1] | sapjoy | 2006.12.18 | 2887 |
| 14 | REPORT Z09_005 | sapjoy | 2006.12.18 | 2549 |
| 13 | REPORT z09_002 | sapjoy | 2006.12.15 | 2642 |
| » | REPORT Z07_017 | sapjoy | 2006.12.08 | 2643 |