ABAP Read Excel Files
DATA(lv_file) = 'path/file.xlsx'. OPEN DATASET lv_file FOR INPUT IN BINARY MODE. IF sy-subrc EQ 0. READ DATASET lv_file INTO lv_xls_xstr. IF sy-subrc NE 0. MESSAGE e002 WITH lv_fil…
SAP Erp resources for everyone.
DATA(lv_file) = 'path/file.xlsx'. OPEN DATASET lv_file FOR INPUT IN BINARY MODE. IF sy-subrc EQ 0. READ DATASET lv_file INTO lv_xls_xstr. IF sy-subrc NE 0. MESSAGE e002 WITH lv_fil…