Using this FM ensures to return only the filename. It will not return any directory name.
CALL FUNCTION 'EPS2_GET_DIRECTORY_LISTING' EXPORTING iv_dir_name = CONV eps2filnam( me->gv_filepath ) TABLES dir_list = lt_dir_list EXCEPTIONS invalid_eps_subdir = 1 sapgparam_failed = 2 build_directory_failed = 3 no_authorization = 4 read_directory_failed = 5 too_many_read_errors = 6 empty_directory_list = 7 OTHERS = 8. IF sy-subrc <> 0 OR lt_dir_list IS INITIAL. MESSAGE TEXT-029 TYPE gc_e . ENDIF.
No comments:
Post a Comment