RFUBCBICRE 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 RFUBCBICRE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
UBC4 - Create Batch Input Sessions
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_DATEF = From Date
Selection Text: P_DATET = To Date
Selection Text: P_ORG = Organization
Selection Text: P_TEST = Simulation
Title: Creation of Batch Input Sessions
INCLUDE RFUBCCONS.
No SAP DATABASE tables are accessed within this REPORT code!
UBC_BI_PREPARE CALL FUNCTION 'UBC_BI_PREPARE' EXPORTING I_ORG = P_ORG I_DATE_from = p_datef I_DATE_to = p_datet TABLES T_BITAB = L_T_BITAB T_INVH = L_T_invH EXCEPTIONS ERROR = 1 OTHERS = 2.
UBC_BI_CREATE CALL FUNCTION 'UBC_BI_CREATE' EXPORTING I_ORG = p_org I_DATE_FROM = p_datef I_DATE_TO = p_datet IMPORTING E_BIID = l_biid TABLES T_BITAB = l_t_bitab T_INVH = l_t_invh.
UBC_CE_CREATE CALL FUNCTION 'UBC_CE_CREATE' EXPORTING I_CEDATA = ls_cedata.
UBC_ERROR_COLLECT CALL FUNCTION 'UBC_ERROR_COLLECT' EXPORTING I_MESSTYPE = 'S' I_MESSID = 'UBC_CSP' I_MESSNO = 711 I_MESS1 = l_biid.
UBC_ERROR_DISPLAY CALL FUNCTION 'UBC_ERROR_DISPLAY'.
UBC_ERROR_INIT CALL FUNCTION 'UBC_ERROR_INIT'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.