SAP Reports / Programs | Public Sector Management | Funds Management | Funds Management-Specific Postings(PSM-FM-PO) SAP PSM

RFFMSDCA_FILL_OLD_CONTEXT SAP ABAP Report - RDCA: Fill Context Fields from Old Messages







RFFMSDCA_FILL_OLD_CONTEXT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for To fill the context of the application log object CREDOPEL to improve the evaluation using transaction RDCA_WIZ for older application logs...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 RFFMSDCA_FILL_OLD_CONTEXT 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 RFFMSDCA_FILL_OLD_CONTEXT. "Basic submit
SUBMIT RFFMSDCA_FILL_OLD_CONTEXT AND RETURN. "Return to original report after report execution complete
SUBMIT RFFMSDCA_FILL_OLD_CONTEXT VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: S_EXTN = Reconciliation Key
Title: RDCA: Fill Context Fields from Old Messages
Text Symbol: 001 = Run ID
Text Symbol: 002 = Number of Changed Message Lines:


INCLUDES used within this REPORT RFFMSDCA_FILL_OLD_CONTEXT

No INCLUDES are used within this REPORT code!


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:

BAL_DB_SEARCH CALL FUNCTION 'BAL_DB_SEARCH' EXPORTING i_s_log_filter = ls_lfil IMPORTING e_t_log_header = lt_balhdr.

BAL_DB_LOAD CALL FUNCTION 'BAL_DB_LOAD' EXPORTING i_t_log_header = lt_balhdr IMPORTING e_t_log_handle = lt_loghandle.

BAL_GLB_SEARCH_MSG CALL FUNCTION 'BAL_GLB_SEARCH_MSG' EXPORTING i_t_log_handle = lt_loghandle i_s_msg_filter = ls_mfil IMPORTING e_t_msg_handle = lt_msghandle EXCEPTIONS msg_not_found = 0 OTHERS = 0.

BAL_LOG_HDR_READ CALL FUNCTION 'BAL_LOG_HDR_READ' EXPORTING i_log_handle = ls_balhdr IMPORTING e_s_log = ls_log EXCEPTIONS log_not_found = 0 OTHERS = 0.

BAL_LOG_MSG_READ CALL FUNCTION 'BAL_LOG_MSG_READ' EXPORTING i_s_msg_handle = ls_msghandle i_langu = sy-langu IMPORTING e_s_msg = ls_msg EXCEPTIONS log_not_found = 0 msg_not_found = 0 OTHERS = 0.

BAL_LOG_MSG_CHANGE CALL FUNCTION 'BAL_LOG_MSG_CHANGE' EXPORTING i_s_msg_handle = ls_msghandle i_s_msg = ls_msg EXCEPTIONS log_not_found = 0 msg_inconsistent = 0 msg_not_found = 0 OTHERS = 0.

BAL_DB_SAVE CALL FUNCTION 'BAL_DB_SAVE' EXPORTING i_save_all = 'X' i_t_log_handle = lt_handle EXCEPTIONS log_not_found = 1 save_not_allowed = 2 numbering_error = 3 OTHERS = 4.



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 RFFMSDCA_FILL_OLD_CONTEXT or its description.