REPORT Z07_008 .
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 = 9999999.
*
**LOOP AT itab.
** WRITE: / itab-col1, itab-col2, itab-col3.
**ENDLOOP.
*
TYPES: BEGIN OF line,
col1 TYPE i,
col2 TYPE i,
col3 TYPE i,
END OF line.
DATA itab TYPE standard TABLE OF line
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 = 9999999.
*
*LOOP AT itab.
* WRITE: / itab-col1, itab-col2.
*ENDLOOP.
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 = 9999999.
*
**LOOP AT itab.
** WRITE: / itab-col1, itab-col2, itab-col3.
**ENDLOOP.
*
TYPES: BEGIN OF line,
col1 TYPE i,
col2 TYPE i,
col3 TYPE i,
END OF line.
DATA itab TYPE standard TABLE OF line
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 = 9999999.
*
*LOOP AT itab.
* WRITE: / itab-col1, itab-col2.
*ENDLOOP.
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
251 | REPORT Z07_016 | sapjoy | 2008.04.15 | 2804 |
250 | REPORT Z15_007 | eabap | 2007.01.24 | 2680 |
249 | REPORT Z05_025 | sapjoy | 2007.05.28 | 2564 |
248 | REPORT Z05_013 [3] | sapjoy | 2008.04.15 | 2653 |
247 | REPORT Z02_005 . | sapjoy | 2006.12.03 | 2376 |
246 | REPORT Z04_005 . | sapjoy | 2006.12.03 | 2595 |
245 | REPORT Z06_001 MESSAGE-ID ZTEST . [1] | sapjoy | 2006.12.05 | 3207 |
244 | REPORT Z07_002 . | sapjoy | 2006.12.07 | 2757 |
» | REPORT Z07_008 | sapjoy | 2006.12.07 | 2463 |
242 | INCLUDE Z16_001O01 [1] | sapjoy | 2007.04.27 | 2595 |
241 | REPORT z18_017 | sapjoy | 2007.03.12 | 2672 |
240 | REPORT z18_036 | sapjoy | 2007.03.14 | 2631 |
239 | REPORT z18_032 | sapjoy | 2008.04.22 | 2712 |
238 | REPORT z18_031 | sapjoy | 2008.04.22 | 2527 |
237 | REPORT z18_025 | sapjoy | 2007.03.17 | 2598 |
236 | REPORT z18_024 | sapjoy | 2008.04.22 | 2310 |
235 | REPORT z18_023 | sapjoy | 2008.04.22 | 2256 |
234 | REPORT z18_022 | sapjoy | 2008.04.22 | 2258 |
233 | REPORT z18_021 | sapjoy | 2008.04.22 | 2252 |
232 | REPORT z18_020 | sapjoy | 2008.04.22 | 1835 |