zoukankan      html  css  js  c++  java
  • 删除被锁的传输请求(请求无法传输,无法删除时)

      Program ZSTDELREQ     .
    data :
           itab_e070 like e070 occurs 0 with header line,
    *      Request header including Req user.
           iwa_e070c like e070c,   "Request client
           itab_e071  like e071 occurs 0 with header line ,
    *Request entry line items may include multiple lines
           iwa_e07t like e07t ,     "Requst short text(desc)
           iwa_E070A like E070A ,
    *If the Request was locked and delelted,Delete Tlock otherwise
    *The program will be locked to make any modifications.
           itab_tlock like tlock occurs 0 with header line .
    parameter reqno like e070-trkorr default '' .
    select  * into table itab_e070 from e070
      where trkorr eq reqno or strkorr eq reqno.
    if SY-SUBRC Ne 0 .
       write : 'The Request No.:' , Reqno , ' not exist !' .
    *   exit .
    endif .

    select single * into iwa_e070c from e070c
      where trkorr eq reqno  .
    select  * into table itab_e071 from e071
      where trkorr eq reqno .
    select single * into iwa_e07t from e07t
      where trkorr eq reqno .
    select single * into iwa_E070A from e070A
      where trkorr eq reqno .
    if itab_e070 IS INITIAL .
      select * into table itab_tlock from tlock
      where trkorr eq reqno  .
    else.
      select  * into table itab_tlock from tlock
        FOR ALL   ENTRIES IN itab_e070
        where TRKORR eq itab_e070-trkorr .
    endif.
    if SY-SUBRC NE 0 .
       write : / 'No Locked object for the request NO. was found!'.
    endif .
    delete :
             e070  from table itab_e070 ,
             e070c from iwa_e070c,
             e071  from table itab_e071,
             e07t  from iwa_e07t ,
             e070A from iwa_E070A ,
             tlock from table itab_tlock .
    write : / 'The Request No.:' , Reqno ,
    ' has already been successfully Full deleted'.
  • 相关阅读:
    ASP.NET 取得 Request URL 的各个部分
    将GAC中的DLL复制出来
    SqlServer2008 手动提交
    SQL获取表中最新插入的记录
    HTTP/1.1 500 Server Error错误解决方法
    ORACLE 物化视图
    JIMMY ZHANG告诉你快速提高自己的开发能力
    走进设计模式系列之开篇
    大话设计模式之:Adapter模式
    jquery+bootstrap自定义插件开发之dropdownlist
  • 原文地址:https://www.cnblogs.com/elegantok/p/1610997.html
Copyright © 2011-2022 走看看