SAP ABAP - Upload and Download Custom Program Template with BDS
Open OAOR transaction Code execute and upload excel file Create ABAP Program with this Code *&---------------------------------------------------------------------* *& Report YUPLOAD_TEST *&---------------------------------------------------------------------* *& *&---------------------------------------------------------------------* REPORT yupload_test . START-OF-SELECTION . CALL SCREEN 100 . *&---------------------------------------------------------------------* *& Module STATUS_0100 OUTPUT *&---------------------------------------------------------------------* *& *&---------------------------------------------------------------------* MODULE status_0100 OUTPUT . SET PF-STATUS 'PF100' . SET TITLEBAR 'TL100' . ENDMODULE . *&---------------------------------------------------------------------* *& ...