将excel数据导入内表的函数

 call function 'TEXT_CONVERT_XLS_TO_SAP'
    exporting
      i_tab_raw_data       lt_raw          "开始行
      i_filename           l_file          "文件路径
    tables
      i_tab_converted_data gt_filecont       "数据内表
    exceptions
      conversion_failed    1
      others               2.

 

message text-t04 type 'S' display like 'E'.

原文地址:https://www.cnblogs.com/szfeng/p/3303183.html