1. status type ref to status
status_tab type table of ref to staus
type table of ref to 의미와 type ref to와의 차이점을 알고 싶습니다.
2. 책에 보니 general object와 static object이 있던 구체적인 설명이 미흡한것 같아 자세한 의미와 차이점을 알고 싶습니다
3. append: count to status_tab
위 소스는 ":" 가 없는 소스와 차이점은 뭔가요?
제가 알기로는 ":" 것은 없던것만 보아서 좀 해깔랍니다. "append count to status_tab"
질문이 좀 많네요. 이해부탁하고요 자세한 답변부탁합니다.
1.번 질문에 대한 답변입니다.
data : gr_status type ref to status,
grt_status type table of ref to staus.
'gr_status'는 status 타입의 reference variable
'grt_status'는 internal table로서 각 row가 status 타입의 reference variable.