‎2008 Oct 13 3:37 PM
Hello everyone,
I am trying to insert into a customised table the contents held in an
internal table:
INSERT zepos_summary FROM TABLE epos_file_summary_tab.
During syntax checking an error displays:
'The work area "EPOS_FILE_SUMMARY_TAB" is not long enough.
I have defined the internal table EPOS_FILE_SUMMARY_TAB as the
same structure of zepos_summary .
Anyone any ideas?
Andy
‎2008 Oct 13 3:40 PM
‎2008 Oct 13 3:41 PM
May be it can work..
loop at epos_file_summary_tab.
move-corresponding epos_file_summary_tab to zepos_summary.
insert zepos_summary.
endloop.
good luck..