Posts

Showing posts from December, 2022

SAP ABAP - Upload and Download Custom Program Template with BDS

Image
  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 . *&---------------------------------------------------------------------* *&      Module  USER_COMMAND_0100  INPUT *&----------------------------------------------------------