RMCBDATE 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 RMCBDATE 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_BUDAT = D Posting Date
Selection Text: P_ENDDAT = D Termination Date
Selection Text: P_ENDZEI = D Termination Time
Selection Text: P_LAUFNA = D Name of run
Selection Text: P_NEULAU = D New run
Selection Text: P_VRSIO = D Version
Title: Date Field Creation in Information Structure S032
Text Symbol: 001 = Entry for Information Structure S032
Text Symbol: 002 = Document Data Restriction
Text Symbol: 003 = Control of Recompilation Run
Text Symbol: 004 = Actual Data
INCLUDE RMCSNTOP.
No SAP DATABASE tables are accessed within this REPORT code!
MCB_MCMSEG_FILL CALL FUNCTION 'MCB_MCMSEG_FILL' EXPORTING i_mseg = gt_xmseg i_zeitp = con_zeitp_bf i_mcbest = gs_hlp_mcbest i_modus = con_modus_new IMPORTING e_mcmseg_l = gs_mcmseg_l e_mcmseg_k = gs_mcmseg_k TABLES yt156 = gt_xt156 yt156b = gt_xt156b yt156s = gt_xt156s yt156m = gt_xt156m yt156c = gt_xt156c yt134m = gt_xt134m ymkpf = gt_xmkpf yt001w = gt_xt001w ymseg = gt_xmseg EXCEPTIONS OTHERS = 01.
MARA_SINGLE_READ CALL FUNCTION 'MARA_SINGLE_READ' EXPORTING matnr = gt_xmseg-matnr IMPORTING wmara = ls_mara EXCEPTIONS lock_on_material = 1 lock_system_error = 2 wrong_call = 3 not_found = 4 OTHERS = 5.
MARC_SINGLE_READ CALL FUNCTION 'MARC_SINGLE_READ' EXPORTING matnr = gt_xmseg-matnr werks = gt_xmseg-werks IMPORTING wmarc = ls_marc EXCEPTIONS lock_on_marc = 1 lock_system_error = 2 wrong_call = 3 not_found = 4 OTHERS = 5.
HELP_VALUES_GET_WITH_TABLE CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE' EXPORTING fieldname = 'VRSIO' tabname = 'S032' IMPORTING select_value = p_vrsio TABLES valuetab = lt_value_tab fields = lt_field_tab.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.