REPORT Z07_010.
TYPES: BEGIN OF line,
col1 TYPE i,
col2 TYPE i,
col3 TYPE i,
END OF line.
DATA itab TYPE SORTED TABLE OF line with UNIQUE key col1
WITH HEADER LINE.
DO 10000000 TIMES.
itab-col1 = sy-index.
itab-col2 = sy-index.
itab-col3 = sy-index.
INSERT TABLE itab.
ENDDO.
READ TABLE itab with key col1 = 5000 COL2 = 100 COL3 = 999999.
TYPES: BEGIN OF line,
col1 TYPE i,
col2 TYPE i,
col3 TYPE i,
END OF line.
DATA itab TYPE SORTED TABLE OF line with UNIQUE key col1
WITH HEADER LINE.
DO 10000000 TIMES.
itab-col1 = sy-index.
itab-col2 = sy-index.
itab-col3 = sy-index.
INSERT TABLE itab.
ENDDO.
READ TABLE itab with key col1 = 5000 COL2 = 100 COL3 = 999999.
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
11 | REPORT Z07_013 | sapjoy | 2006.12.08 | 2546 |
10 | REPORT Z07_011 [1] | sapjoy | 2006.12.07 | 2185 |
» | REPORT Z07_010. | sapjoy | 2006.12.07 | 2529 |
8 | REPORT Z07_007 | sapjoy | 2006.12.07 | 2701 |
7 | Dynamic Table Maintenance [1] | sapjoy | 2006.12.05 | 4105 |
6 | Z02_003 [2] | sapjoy | 2006.12.03 | 3048 |
5 | Z01_021 [1] | sapjoy | 2006.12.03 | 2773 |
4 | Z01_020 [2] | sapjoy | 2006.12.03 | 3013 |
3 | Z01_019 [2] | sapjoy | 2006.12.03 | 2694 |
2 | Z01_018 [2] | sapjoy | 2006.12.03 | 3050 |
1 | Z01_012 [9] | sapjoy | 2006.12.03 | 4585 |