RFVD_BAFIN_CALL_BTE is a standard Executable ABAP Report 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 RFVD_BAFIN_CALL_BTE 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.
Selection Text: P_LOG = Display Log
Selection Text: P_PACK = Package Size
Selection Text: P_TODAY = Up to Today's Date (Incl.)
Selection Text: P_YEST = Up to Yesterday's Date (Incl.)
Title: Export KWG Data
Text Symbol: 001 = Which entries should be selected?
Text Symbol: 002 = Package Size For Commit Work
Text Symbol: 003 = The following entries could not be transported
Text Symbol: 004 = Entry:
Text Symbol: 005 = Log
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SAMPLE_INTERFACE_0CML0001 CALL FUNCTION 'SAMPLE_INTERFACE_0CML0001' EXPORTING i_wrk_kwgdata = l_wrk_kwgdata IMPORTING e_retrun = l_return TABLES t_bkk_fbs = l_tab_cml_fbs.
BF_FUNCTIONS_FIND CALL FUNCTION 'BF_FUNCTIONS_FIND' EXPORTING i_event = '0CML0001' i_intca = space i_applk = 'FS-CML' TABLES t_fmrfc = l_tab_cml_fbs EXCEPTIONS nothing_found = 1 OTHERS = 2. "#EC *
OPEN_FI_PERFORM_0CML0001_E CALL FUNCTION 'OPEN_FI_PERFORM_0CML0001_E' EXPORTING i_wrk_kwgdata = l_wrk_kwgdata IMPORTING e_return = l_return TABLES t_bkk_fbs = l_tab_cml_fbs.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'TTKWGDATA' CHANGING ct_fieldcat = l_tab_fieldcat EXCEPTIONS OTHERS = 2.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = sy-cprog * I_CALLBACK_USER_COMMAND = ' ' * I_STRUCTURE_NAME = * IS_LAYOUT = IT_FIELDCAT = l_tab_fieldcat * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * I_DEFAULT = 'X' I_SAVE = 'A' * IS_VARIANT = * IT_EVENTS = * IS_PRINT = TABLES T_OUTTAB = i_tab_kwgdata EXCEPTIONS OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.