RFSEPA03 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program turns off the open item (OI) management function for a G/L account and changes the documents posted to this account so that they are no longer managed on an open item basis...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RFSEPA03 into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: P_BELNR = Document number
Selection Text: P_BUKRS = Company code
Selection Text: P_LISTE = List log
Selection Text: P_SAKNR = G/L account
Title: Switch Off Open Item Management by Changing Master Record
Text Symbol: 001 = G/L account
Text Symbol: 002 = Company code
Text Symbol: B01 = Additional log
Text Symbol: BE1 = Document selected
Text Symbol: BE2 = Document changed
Text Symbol: NB1 = Number of documents selected
Text Symbol: NB2 = Number of documents changed
Text Symbol: NSB = No suitable entries were found
Text Symbol: NX1 = Number of line items selected from table BSIS
Text Symbol: NX2 = Number of line items changed in table BSIS
Text Symbol: S01 = Doc. no.
Text Symbol: S02 = Year
Text Symbol: S03 = Remark
Text Symbol: XX1 = Line items selected in table &TAB
Text Symbol: XX2 = Line items changed in table &TAB
Text Symbol: XX3 = Line items generated in table &TAB
INCLUDE FSACHCDF.
INCLUDE FSACHCDV.
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_DISPLAY_TEXT CALL FUNCTION 'POPUP_DISPLAY_TEXT' EXPORTING POPUP_TITLE = ' ' TEXT_OBJECT = 'RFSEPA03'.
GL_ACCOUNT_IN_COMPANY_UPDATE CALL FUNCTION 'GL_ACCOUNT_IN_COMPANY_UPDATE' EXPORTING I_SKB1 = SKB1.
ENQUEUE_EFSKB1 CALL FUNCTION 'ENQUEUE_EFSKB1' EXPORTING BUKRS = P_BUKRS SAKNR = P_SAKNR EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2.
DEQUEUE_EFSKB1 CALL FUNCTION 'DEQUEUE_EFSKB1' EXPORTING BUKRS = P_BUKRS SAKNR = P_SAKNR.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFSEPA03 - Switch Off Open Item Management by Changing Master Record RFSEPA03 - Switch Off Open Item Management by Changing Master Record RFSEPA02 - Switch On Open Item Management by Changing Master Record RFSEPA02 - Switch On Open Item Management by Changing Master Record RFSEPA01 - Switch On Line Item Display by Changing Master Record RFSEPA01 - Switch On Line Item Display by Changing Master Record