zoukankan      html  css  js  c++  java
  • 关于EXCEL方式输出报表

    一个例子:
    当删除一些数据库记录时:

          call function 'POPUP_TO_CONFIRM_STEP'
           exporting
                defaultoption  = 'Y'
                textline1      = text-020
                titel          = l_title
           importing
                answer         = l_answer
           exceptions
                others         = 0.
      if sy-subrc ne 0.
      endif.
      case l_answer.
        when 'N'.
    *      r_subrc = 4.
        when 'A'.
    *      r_subrc = 8.
      endcase.

      跳出确认屏幕,返回值如果是确定:'J'  ,否:‘N’ ,取消 ‘A’

  • 相关阅读:
    C++ 中的深入浅拷贝和深拷贝
    C++ 引用小问题
    6-10
    6-8
    6-7
    6-4
    6-3
    6-1
    5-31
    COMException 依赖服务或组无法启动(0x8007042C)处理办法
  • 原文地址:https://www.cnblogs.com/xiong/p/282877.html
Copyright © 2011-2022 走看看