메뉴 건너뛰기

SAP 한국 커뮤니티

REPORT Z07_008

sapjoy 2006.12.07 11:17 조회 수 : 2462

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.
번호 제목 글쓴이 날짜 조회 수
670 Z01_012 [9] sapjoy 2006.12.02 4548
669 REPORT Z03_005 [1] sapjoy 2006.12.02 2735
668 REPORT Z03_006 [5] sapjoy 2006.12.02 2812
667 Z01_018 [2] sapjoy 2006.12.02 3042
666 Z01_019 [2] sapjoy 2006.12.02 2688
665 Z01_020 [2] sapjoy 2006.12.02 3008
664 Z01_021 [1] sapjoy 2006.12.02 2771
663 REPORT Z03_018 [3] sapjoy 2006.12.02 2605
662 Z02_003 [2] sapjoy 2006.12.02 3042
661 REPORT Z02_005 . sapjoy 2006.12.02 2375
660 REPORT Z04_005 . sapjoy 2006.12.02 2595
659 <b>ABAP SOURCE는 교재에 사용된 소스들입니다.</b> [1] sapjoy 2006.12.02 3618
658 Dynamic Table Maintenance [1] sapjoy 2006.12.04 4094
657 REPORT Z06_001 MESSAGE-ID ZTEST . [1] sapjoy 2006.12.05 3205
656 REPORT Z07_002 . sapjoy 2006.12.06 2755
655 Z07_001 sapjoy 2006.12.06 2396
654 Z07_005 sapjoy 2006.12.06 2353
653 REPORT Z07_007 sapjoy 2006.12.07 2698
» REPORT Z07_008 sapjoy 2006.12.07 2462
651 REPORT Z07_009 sapjoy 2006.12.07 2258