Posts

Showing posts from June, 2022

sap abap import from excell to table (transparent table)

*&---------------------------------------------------------------------* *& Report ZTOEXCELL *&---------------------------------------------------------------------* *& *&---------------------------------------------------------------------* REPORT  ztoexcell . DATA :  tab_lines  TYPE  i . tab_lines  =  0 . DATA :  it_files  TYPE  filetable . DATA :   lv_rc  TYPE  i . DATA :  lv_action  TYPE  i . TYPES :  BEGIN  OF  ty_data ,          a  TYPE  string ,          b  TYPE  string ,           c  TYPE  string ,          d  TYPE  string ,          e  TYPE  string ,      ...

sap abap Import from excell to internal table that works 100%

*&---------------------------------------------------------------------* *& Report ZTOEXCELL *&---------------------------------------------------------------------* *& *&---------------------------------------------------------------------* REPORT  ztoexcell . DATA :  it_files  TYPE  filetable . DATA :   lv_rc  TYPE  i . DATA :  lv_action  TYPE  i . TYPES :  begin  of  ty_data ,   A  type  string ,   B  type  string ,    C  type  string ,   D  type  string ,     E  type  string ,     F  type  string ,    G  type  string ,     H  type  string ,      I  type  string ,      K  type  string ,     L  type  s...