• SAP会计科目启用未清项管理


    如果一个SAP科目在创建的时候没有启用未清项管理,后来需要启用,可以怎么做呢?根据 SAP 版本的不同,可以采取不同的方法。

    笨方法

    将会计科目余额变为0 之后,通过 FS00 修改。这种方法手工操作,工作量可能比较大。比如做过很多凭证,将科目启用了未清项管理之后,历史数据需要重新录入。

    RFSEPP02 程序

    对 SAP ECC6 EHP3 之前的版本,可以通过程序 (RFSEPA02)将科目启用未清项管理,同时将历史数据的普通行项目变更为未清项。但这个方法只适用于未启用新总账的场景,如果启用了新总账,尤其是启用了凭证分割,因为 RFSEPA02 程序未考虑凭证分割,会出现问题。175960有详细说明。

    For Release SAP ERP 5.0, it is not currently possible to subsequently activate the open item management under the specified conditions with standard tools. The only option currently available is to set up a new account with open item management and to use this instead of the original account. One reason for this is that when **document splitting **is active for open items on the converted account, the splitting information in tables FAGL_SPLINFO or FAGL_SPLINFO_VAL would have to regenerated, which is not possible with ZFSEPA02. Another reason is that the total of the open items is reconciled with the account balance within the report, which reads the totals from the totals record table GLT0. However, according to the recommendation of SAP, the GLT0 update is usually deactivated in new General Ledger Accounting.

    使用方法:

    将 RFSEPA02 程序拷贝一个,命名为 ZRFSEPA02,屏蔽掉下面的代码:

    FS00 将需要转换的科目冻结。

    运行程序:

    说明:RFSEPA03 的功能相反,将科目从未清项管理变更为普通会计科目。

    FAGL_ACTIVATE_OP

    针对 ECC6 ehp3 以上的版本,SAP提供了标准的工具将会计科目启用未清项管理,同时将历史数据变为未清项。在激活新总账的情况下也是适用的。这个标准工具就是事务码 FAGL_ACTIVATE_OP,对应的程序名为 FAGL_SWITCH_TO_OPEN_ITEM。程序在 S/4 版本之后不能使用。

    FINS_ACTIVATE_OIM

    S/4 之后的版本,SAP 提供事务码 FINS_ACTIVATE_OIM 实现会计科目启用未清项管理,同时将历史数据变更为未清项。该事务码基于程序 FINS_SWITCH_TO_OPEN_ITEM。

    参考

    175960 - Activation of open item management using RFSEPA02/03
    203329 - RFSEPA02 generates FH099 alth. balance = item total
    95586 - Incorrect open items total due to missing balance crrd frwrd
    1770786 - FAQ - Open Item Management - FAGL_ACTIVATE_OP

  • 相关阅读:
    从零开始搭建属于自己的物联网平台(一)需求分析以及架构设计
    (二)汇编语句组成
    Java基础学习笔记-3
    vue的生命周期及各个生命周期函数中适合做什么事
    穿越时空,探索未来的云计算世界
    【Linux】实用小技巧,如何同时make多个可执行文件?
    C++及QT的线程学习
    基于EQ36软件的地球化学反应过程模拟实践
    使用navicat模型功能 快速理清表间关系
    Dinky上路之旅
  • 原文地址:https://blog.csdn.net/stone0823/article/details/126248980