SAP Reports / Programs | Financials | Financials Basis(FIN-FB) SAP FIN

RFUBCCEDEL SAP ABAP Report - Deletion of Processed Cost Events







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RFUBCCEDEL. "Basic submit
SUBMIT RFUBCCEDEL AND RETURN. "Return to original report after report execution complete
SUBMIT RFUBCCEDEL VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT RFUBCCEDEL

INCLUDE RCONUBCBAS.
INCLUDE RKASMAWF.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RFUBCCEDEL or its description.