메뉴 건너뛰기

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