RJKRRESET is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program can be used to reset all the data imported into the system by the data transfer report
If you would like to execute this report or see the full code listing simply enter RJKRRESET 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: R_POSEX = Item
Selection Text: R_VBELN = Order
Selection Text: XLIST = List all order items
Selection Text: XTEST = Test run
Selection Text: R_DRERZ = D .
Title: IS-M/SD: Reset Data Transferred for Renewals
Text Symbol: B01 = Orders
Text Symbol: B02 = Options
Text Symbol: E01 = Execute report RJKRGOLIVE_BUILD_AMODATA to perform recalculation first
Text Symbol: H01 = Active publications
Text Symbol: H02 = Data was not deleted
Text Symbol: H03 = Inactive publications
Text Symbol: H04 = Data was deleted
Text Symbol: H10 = Orders affected
INCLUDE MJD00TC3.
No SAP DATABASE tables are accessed within this REPORT code!
ISM_PUBL_ALIVE_GET call function 'ISM_PUBL_ALIVE_GET' exporting date = sy-datum importing publtab = publtab.
ISM_PUBL_NOT_ALIVE_GET call function 'ISM_PUBL_NOT_ALIVE_GET' exporting date = sy-datum importing publtab = publtab.
DB_COMMIT call function 'DB_COMMIT'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RJKRRESET - IS-M/SD: Reset Data Transferred for Renewals RJKRRESET - IS-M/SD: Reset Data Transferred for Renewals RJKRGOLIVE_BUILD_AMODATA - IS-M/SD: Order Data Transfer (Amortization Log and Planned Revenue) RJKRGOLIVE_BUILD_AMODATA - IS-M/SD: Order Data Transfer (Amortization Log and Planned Revenue) RJKRGOLIVE - IS-M/SD: Order Data Transfer (Liability Account and Dep.Data) RJKRGOLIVE - IS-M/SD: Order Data Transfer (Liability Account and Dep.Data)