RKEPCRIS is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RKEPCRIS 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CHANGEDOCUMENT_READ_HEADERS CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS' EXPORTING * ARCHIVE_HANDLE = 0 DATE_OF_CHANGE = p_start OBJECTCLASS = l_objectclass OBJECTID = l_objectid * TIME_OF_CHANGE = '000000' USERNAME = ' ' * LOCAL_TIME = ' ' TABLES I_CDHDR = HDRTAB EXCEPTIONS NO_POSITION_FOUND = 1 WRONG_ACCESS_TO_ARCHIVE = 2 TIME_ZONE_CONVERSION_ERROR = 3 OTHERS = 4.
CHANGEDOCUMENT_READ_HEADERS CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS' EXPORTING * ARCHIVE_HANDLE = 0 DATE_OF_CHANGE = p_start OBJECTCLASS = l_objectclass * OBJECTID = ' ' * TIME_OF_CHANGE = '000000' USERNAME = ' ' * LOCAL_TIME = ' ' TABLES I_CDHDR = HDRTAB EXCEPTIONS NO_POSITION_FOUND = 1 WRONG_ACCESS_TO_ARCHIVE = 2 TIME_ZONE_CONVERSION_ERROR = 3 OTHERS = 4.
DETERMINE_PERIOD CALL FUNCTION 'DETERMINE_PERIOD' EXPORTING DATE = hdrtab-udate * PERIOD_IN = '000' VERSION = I_TKA01-LMONA IMPORTING PERIOD = l_period YEAR = l_gjahr EXCEPTIONS PERIOD_IN_NOT_VALID = 1 PERIOD_NOT_ASSIGNED = 2 VERSION_UNDEFINED = 3 OTHERS = 4.
SD_VBAK_SINGLE_READ CALL FUNCTION 'SD_VBAK_SINGLE_READ' EXPORTING I_VBELN = l_vbeln * I_BYPASSING_BUFFER = ' ' * I_REFRESH_BUFFER = IMPORTING E_VBAK = L_VBAK EXCEPTIONS RECORD_NOT_FOUND = 1 OTHERS = 2.
CHANGEDOCUMENT_READ_POSITIONS CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS' EXPORTING CHANGENUMBER = HDRTAB-CHANGENR TABLES EDITPOS = EDITPOS.
ENQUEUE_EVVBAKE CALL FUNCTION 'ENQUEUE_EVVBAKE' EXPORTING VBELN = P_OBJECT_ORDER EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2.
DEQUEUE_EVVBAKE CALL FUNCTION 'DEQUEUE_EVVBAKE' EXPORTING VBELN = P_OBJECT_ORDER.
REPOSTING_REVENUES CALL FUNCTION 'REPOSTING_REVENUES' EXPORTING I_TEST = p_test * I_PROT = 'X' I_COMP = component * I_PRUEF = 'X' * I_STORNO = 'X' * T_LEDGER = ' ' * IMPORTING * E_ANZ_OK = * E_ANZ_NO = * E_ANZ_FK = * E_ANZ_ERR = * E_ANZ_STO = TABLES SEL_VBELN = RBELNR SEL_FKDAT = FKDAT SEL_BUKRS = p_bukrs SEL_VKORG = VKORG SEL_VTWEG = VTWEG SEL_SPART = SPART E_PROT_OK = PROT_TAB E_PROT_NO = PROT_TAB_NO E_PROT_ERR = ERR_TAB E_PROT_STO = PROT_TAB_STO.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.