Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7184829
  • 博文数量: 655
  • 博客积分: 10264
  • 博客等级: 上将
  • 技术积分: 8278
  • 用 户 组: 普通用户
  • 注册时间: 2007-06-04 17:47
个人简介

ABAP顾问

文章分类

全部博文(655)

文章存档

2017年(2)

2014年(8)

2013年(3)

2012年(2)

2011年(18)

2010年(102)

2009年(137)

2008年(274)

2007年(134)

分类:

2010-08-24 16:01:01

Report Z_BARRY_TEST.
 
DATA: filename TYPE string ,
      openfile LIKE ibipparms-path ,
      lf_rc    TYPE c .
DATA: it_file TYPE filetable WITH HEADER LINE,
      file_num TYPE i ,
      action TYPE i,
      encoding TYPE abap_encod.
 
PARAMETERS: filestr TYPE string OBLIGATORY DEFAULT 'c:\ZMM025.txt' .
 
AT SELECTION-SCREEN ON VALUE-REQUEST FOR filestr .
 
*  CALL FUNCTION 'F4_FILENAME'
*    EXPORTING
*      program_name  = syst-cprog
*      dynpro_number = syst-dynnr
*      field_name    = ' '
*    IMPORTING
*      file_name     = openfile.
*    filestr = openfile.
 
  CALL METHOD cl_gui_frontend_services=>file_open_dialog
    EXPORTING
      window_title            = 'Title'
      default_extension       = 'XLS'  " file_filter优先级高
      file_filter             = '文本文件(*.TXT)|*.TXT|Excel 文件 (*.XLS)|*.XLS;*.XLSX|所有文件 (*.*)|*.*|'
      with_encoding           = 'X'
      initial_directory       = 'C:\'
      multiselection          = 'X'
    CHANGING
      file_table              = it_file[]
      rc                      = file_num
      user_action             = action
      file_encoding           = encoding
    EXCEPTIONS
      file_open_dialog_failed = 1
      cntl_error              = 2
      error_no_gui            = 3
      not_supported_by_gui    = 4
      OTHERS                  = 5.
 
  IF action = 0 AND sy-subrc = 0 .
    READ TABLE it_file INDEX 1.
    filestr = it_file-filename.
  ENDIF.
 
  CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
      mask             = ',Excel文件(*.XLS;*.XLSX),*.XLS;*.XLSX,文本文件(*.TXT),*.TXT,所有文件(*.*),*.*.'
      mode             = 'O'
    IMPORTING
      filename         = openfile
      rc               = lf_rc
    EXCEPTIONS
      inv_winsys       = 1
      no_batch         = 2
      selection_cancel = 3
      selection_error  = 4
      OTHERS           = 5.
  IF lf_rc = ''.
    filestr = openfile.
  ENDIF.
 
AT SELECTION-SCREEN .
  filename = filestr.
  CALL METHOD cl_gui_frontend_services=>file_exist
    EXPORTING
      file                 = filename
    RECEIVING
      result               = lf_rc
    EXCEPTIONS
      cntl_error           = 1
      error_no_gui         = 2
      wrong_parameter      = 3
      not_supported_by_gui = 4
      OTHERS               = 5.
  IF lf_rc = ''.
    MESSAGE e000(oo) WITH '文件' filename '不存在!'.
  ENDIF.
 
--------------------------------
 
  CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
      filename = filename
      filetype = 'DAT'
    TABLES
      data_tab = it_upfile
    EXCEPTIONS
      OTHERS   = 1.
  IF sy-subrc = 1.
    MESSAGE e000(oo) WITH '文件打开错误'.
  ENDIF.
阅读(3265) | 评论(3) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2010-12-27 20:24:21

很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com

chinaunix网友2010-12-27 20:24:05

很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com

chinaunix网友2010-08-24 23:46:22

终于知道了mask的用法...