SAP Reports / Programs

RFFMBUND SAP ABAP Report - Bundling of FI Document to a Request







RFFMBUND is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Program RFFMBUND bundles FI documents to a request...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 RFFMBUND into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

F899R - Bundle FI Documents to Request


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 RFFMBUND. "Basic submit
SUBMIT RFFMBUND AND RETURN. "Return to original report after report execution complete
SUBMIT RFFMBUND 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: SO_PSOTY = Request Category
Selection Text: SO_CPUDT = Entered On
Selection Text: SO_BELNR = Document Number
Selection Text: P_XTEST = Test Run
Selection Text: P_XPRINT = Print Request
Selection Text: P_XPPDOC = Only parked FI documents
Selection Text: P_XPODOC = Only posted FI documents
Selection Text: P_GJAHR = Fiscal year
Selection Text: P_BUKRS = Company code
Selection Text: P_BLART = Document type
Title: Bundling of FI Document to a Request
Text Symbol: 020 = Process control
Text Symbol: 015 = Doc. status
Text Symbol: 010 = Selections


INCLUDES used within this REPORT RFFMBUND

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:

FM_FYC_SCHEDMAN_INIT call function 'FM_FYC_SCHEDMAN_INIT' exporting i_repid = sy-repid "report id i_tcode = 'F899R' "transaction code i_wfitem = wf_witem "parameter of RKASMAWF i_wflist = wf_wlist "parameter of RKASMAWF i_flg_test = p_xtest "flag for test mode importing e_f_schedman_key = g_f_schedman_key.

FM_FYC_SCHEDMAN_CLOSE call function 'FM_FYC_SCHEDMAN_CLOSE' exporting i_f_schedman_key = g_f_schedman_key "obtained from schedman init i_wfitem = wf_witem "parameter of RKASMAWF i_wfokey = wf_okey "parameter of RKASMAWF i_aplstat = g_aplstat. "result filled

FI_PSO_LOTKZ_FILL call function 'FI_PSO_LOTKZ_FILL' exporting i_xprint = p_xprint importing e_lotkz = g_lotkz tables t_pp_docs = g_t_docs.

FI_PSO_FMPSO_DISPLAY call function 'FI_PSO_FMPSO_DISPLAY' exporting i_lotkz = g_lotkz i_ausbk = p_bukrs.

FI_PSO_UNIFORMITY_CHECK call function 'FI_PSO_UNIFORMITY_CHECK' tables t_documents = g_t_docs.

FI_PSO_PSOWF_FILL call function 'FI_PSO_PSOWF_FILL' tables t_psowf = g_t_psowf t_fikey = g_t_docs.

FI_PSO_FMPSO_LIST_DISPLAY call function 'FI_PSO_FMPSO_LIST_DISPLAY' exporting i_activity = con_act_display tables t_pso = g_t_psowf.

FM_FYC_SCHEDMAN_CLOSE call function 'FM_FYC_SCHEDMAN_CLOSE' exporting i_f_schedman_key = g_f_schedman_key "obtained from schedman init i_wfitem = wf_witem "parameter of RKASMAWF i_wfokey = wf_okey "parameter of RKASMAWF i_aplstat = g_aplstat. "result filled



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