Небольшой пример:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
"""""""" это только кусочек кода private section. types: begin of gty_s_text_tab, line(1024) type c, end of gty_s_text_tab. types: gty_t_text_tab type table of gty_s_text_tab. data gt_text_tab type gty_t_text_tab. """"""""""""""""""""""""""""""""""""" methods: open_dataset importing iv_filename type string. """""реализация метода method open_dataset. try. open dataset iv_filename for output in text mode encoding utf-8 . loop at gt_text_tab assigning field-symbol(<ls_text>). transfer <ls_text> to iv_filename. endloop. close dataset iv_filename. catch cx_root. message 'Доступ к файлу не разрешен'(010) type 'I'. endtry. endmethod. |