>1.LOOP AT ~ WITH CONTROL
>2.CURSOR ~
>
>위 두 문장의 의미는 무엇을 뜻하는가요?
>자료를 찾아봐도 찾기 어려워 질문으로 대신합니다.
>자세한 설명부탁합니다.^^
----------------------------------------------------------
loop at itab into demo_conn with control flights --> table control 'flights'에서 internal table 'itab'를 loop 돌리겠다는 의미
cursor flight-current_line. --> table control 'flights'에서, 현재 처리되고 있는 internal table 'itab'의 index 번호를
'flight-current_line'이 갖도록 하겠다는 의미
endloop.
네^^