SAP Reports / Programs | Cross-Application Components | General Application Functions | Batch-Oriented Parallel Processing of Mass Data(CA-GTF-TS-PPM) SAP CA

RBANK_PROC_START SAP ABAP Report - Process Flow (Background)







RBANK_PROC_START 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 RBANK_PROC_START 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 RBANK_PROC_START. "Basic submit
SUBMIT RBANK_PROC_START AND RETURN. "Return to original report after report execution complete
SUBMIT RBANK_PROC_START VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Process Flow (Background)


INCLUDES used within this REPORT RBANK_PROC_START

BANK_JC_CONSTANTS,
BANK_JC_LCL_DEBUG_CTRL_D,
BANK_JC_LCL_DEBUG_CTRL_I.


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:

BANK_OBJ_PROCFL_ENV_SER_DESER CALL FUNCTION 'BANK_OBJ_PROCFL_ENV_SER_DESER' EXPORTING i_xml_environment = p_xmlenv.

BANK_OBJ_PROCFL_BUFFER_SET CALL FUNCTION 'BANK_OBJ_PROCFL_BUFFER_SET' EXPORTING i_procid = p_id.

BANK_OBJ_PROCFL_INIT_MSG CALL FUNCTION 'BANK_OBJ_PROCFL_INIT_MSG' EXPORTING i_procid = p_id IMPORTING e_ref_logger = g_ref_logger.

BANK_OBJ_PROCFL_GET_PROC CALL FUNCTION 'BANK_OBJ_PROCFL_GET_PROC' EXPORTING i_procid = p_id IMPORTING e_proc_data = g_str_proc EXCEPTIONS OTHERS = 1.

BANK_OBJ_PROCFL_START_SYNC CALL FUNCTION 'BANK_OBJ_PROCFL_START_SYNC' EXPORTING i_procid = p_id i_ref_logger = g_ref_logger EXCEPTIONS OTHERS = 1.

BANK_DB_PROCFL_SET_STATUS CALL FUNCTION 'BANK_DB_PROCFL_SET_STATUS' EXPORTING i_procid = p_id i_status = con_jc_proc_aborted.

BANK_OBJ_PROCFL_GET_PROC CALL FUNCTION 'BANK_OBJ_PROCFL_GET_PROC' EXPORTING i_procid = p_id IMPORTING e_proc_data = g_str_proc EXCEPTIONS not_qualified = 1 not_found = 2 OTHERS = 3.

BANK_API_PROCFL_SAVE_MESSAGES CALL FUNCTION 'BANK_API_PROCFL_SAVE_MESSAGES' EXPORTING i_procid = p_id.



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