Posts

Showing posts from March, 2021

SAP ABAP - Read All Files In Application Server Directory

  *&---------------------------------------------------------------------* *& Report ZREAD_FILE_AL11 *&---------------------------------------------------------------------* *& *&---------------------------------------------------------------------* REPORT  ZREAD_FILE_AL11 . constants :   yes      type  flag  value  'X' ,    no       type  flag  value  space ,   src_dir  type  epsdirnam  value  '/usr/sap/share/files'. *** START OF - Directory data :  v_err  type  i . data :  dir_name  type  epsdirnam ,       t_dir     type  table  of  zsepsfili  with  header  line .   ""as output data :  file_source       type  string ,   ...