Form문 안에서 sort를 쓴 적이 있는거같기도한데.. 안되네요..
Perfrom에서 table 선언하고
Form에서 Pt_alv로 받아서
sort Pt_alv by matnr. 하려는데
The specified type has no structure and therefore no component called "MATNR". component called "MATNR".
테이블 안에서 선언되 있는거 분명히보이는데..쩝..
결국 밖으로 빼서 sort해서 되긴했지만 이거 form문안에서 되는법이 뭔가요? ㅠㅠ..
Ps. 당연 pt_alv[] = lt_alv[] 이런식으로 옮겨 sort하는것 말고는 방법이 없나요...
perform xxx tables iteb ~~~
form xxx tables pt_itb
위처럼 하면 pt_itab이 어떤구조인지 알수없기 때문에 발생합니다
따라서 form 문 pt_itab옆에 타입을 적어주시면 됩니다.
ex. tables pt_itab structure bseg 이런식으로요