RFUBCCEDEL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program is for deleting cost events...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 RFUBCCEDEL 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.
Cost Events to Be Deleted
Selection Text: P_DATEF = From Date
Selection Text: P_DATET = To Date
Selection Text: P_TEST = Simulation
Selection Text: P_XPROT = Create Detail Log
Title: Deletion of Processed Cost Events
Text Symbol: 001 = Message Log For Deleting Cost Events
INCLUDE RCONUBCBAS.
INCLUDE RKASMAWF.
No SAP DATABASE tables are accessed within this REPORT code!
UBC_CE_AUTH_CHECK CALL FUNCTION 'UBC_CE_AUTH_CHECK' EXPORTING I_AUTH_CODE = '06' EXCEPTIONS ERROR = 1 OTHERS = 2.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING I_S_MSG = G_S_MSG .
ENQUEUE_E_UBC_CEDATA CALL FUNCTION 'ENQUEUE_E_UBC_CEDATA' EXPORTING STATE = 'P' EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2 OTHERS = 3.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING I_S_MSG = G_S_MSG .
UBC_CE_GETLIST CALL FUNCTION 'UBC_CE_GETLIST' EXPORTING I_DATE_FROM = p_datef I_DATE_TO = p_datet i_state = 'P' i_test = 'X' TABLES T_CEDATA = lt_CEDATA.
UBC_CE_DELETE CALL FUNCTION 'UBC_CE_DELETE' TABLES IT_CEDATA = lt_cedata.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING I_S_MSG = G_S_MSG .
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING I_S_MSG = G_S_MSG .
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING I_S_MSG = G_S_MSG .
KPEP_MONI_INIT_RECORD CALL FUNCTION 'KPEP_MONI_INIT_RECORD' EXPORTING LS_DETAIL = ls_detail LS_WITEM = ls_witem IMPORTING LS_KEY = GS_KEY.
KPEP_MONI_CLOSE_RECORD CALL FUNCTION 'KPEP_MONI_CLOSE_RECORD' EXPORTING LS_KEY = GS_KEY LS_SCMA_EVENT = LS_SCMA_EVENT CHANGING LD_APLSTAT = ld_aplstat EXCEPTIONS NO_ID_GIVEN = 1 OTHERS = 2.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING I_S_LOG = lS_LOG.
BAL_DSP_PROFILE_DETLEVEL_GET CALL FUNCTION 'BAL_DSP_PROFILE_DETLEVEL_GET' IMPORTING e_s_display_profile = l_s_display_profile.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = l_s_display_profile.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.