SAP: ABAP 程序中,如何输出资料至Excel? CALL FUNCTION 'WS_EXCEL'

112 篇文章 0 订阅
79 篇文章 3 订阅

       主要涉及到一个函数的使用:CALL FUNCTION 'WS_EXCEL'

        但目前有一问题还未解决,即,使用此函数调用后,产生一个Excel,但如果你不关闭此Excel,并再次运行你的程序,再次调用此函数时,系统就会报错,此问题暂时还不知如何解决。也就是调用一次后,必须关闭其打开的Excel, 然后才能再次调用,否则就出错。或者称为:不可连续两次调用。

实例如下:

FORM output_excel .
*" for testing
   if chk_Dtl eq 'X'.
    CLEAR out_excel[].

    out_excel-field01 = 'Company code'.
    out_excel-field02 = 'Employee no'.
    out_excel-field03 = 'Eligible (Y/N)'.
    out_excel-field04 = 'Rating'.
    out_excel-field05 = 'Salary Increase %'.

    append out_excel.

    loop at it_detail.
        out_excel-field01 = it_detail-bukrs.
        out_excel-field02 = it_detail-pernr.
        out_excel-field03 = it_detail-eligible.
        out_excel-field04 = it_detail-rating.
        out_excel-field05 = it_detail-percentage.

      append out_excel.
      clear out_excel.
    endloop.

     CALL FUNCTION 'WS_EXCEL'
      EXPORTING
        FILENAME  =  'd:/emprating.xls'
      TABLES
        DATA      =  out_excel.
    endif.
ENDFORM.                    " output_excel

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值