안녕하세요.
z05_16.
이부분 실습하고 있습니다.
제가 좀 수정해서
<style type="text/css">
SPAN {
font-family: "Courier New";
font-size: 10pt;
color: #000000;
background: #FFFFFF;
}
.L0S31 {
font-style: italic;
color: #808080;
}
.L0S32 {
color: #3399FF;
}
.L0S33 {
color: #4DA619;
}
.L0S52 {
color: #0000FF;
}
.L0S55 {
color: #800080;
}
.L0S70 {
color: #808080;
}
</style>
DATA : BEGIN OF gs_line,
col1 TYPE i,
col2(1) TYPE c,
END OF gs_line.
DATA : gt_itab LIKE STANDARD TABLE OF gs_line WITH HEADER LINE.
gs_line-col1 = 1.
gs_line-col2 = 'A'.
INSERT gs_line INTO TABLE gt_itab.
gs_line-col1 = 2.
gs_line-col2 = 'B'.
INSERT gs_line INTO TABLE gt_itab.
gs_line-col1 = 2.
gs_line-col2 = 'B'.
INSERT gs_line INTO TABLE gt_itab.
*FREE gt_itab.
*CLEAR gt_itab.
*REFRESH gt_itab.
LOOP AT gt_itab into gs_line.
WRITE : / gs_line-col1, gs_line-col2.
ENDLOOP.
IF gt_itab IS INITIAL.
WRITE : / 'Internal Table has no data.'.
* FREE gt_itab.
ELSE.
WRITE : / 'Internal Table has data.'.
FREE gt_itab.
ENDIF.
이렇게 했는데..
데이터가 있는데도 출력결과가
1 A
2 B
2 B
Internal Table has no data.
이렇게 나옵니다.
데이터가 있으니까
1 A
2 B
2 B
Internal Table has data.
이렇게 나와야 하는게 정상 아닌가요?
IF gt_itab IS INITIAL. 를
IF gt_itab[] IS INITIAL.
gt_itab 과 gt_itab[] 차이에 대해서 찾아보세요.