MBCKMI1S 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 MBCKMI1S 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.
Title: MBCKMI1S
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FI_DOCUMENT_FIND_FOR_INTERFACE CALL FUNCTION 'FI_DOCUMENT_FIND_FOR_INTERFACE' EXPORTING I_AWTYP = ls_ckmi1_bsim-awtyp I_AWREF = ls_ckmi1_bsim-awref I_AWORG = ls_ckmi1_bsim-aworg TABLES e_accdn = lt_accdn EXCEPTIONS NO_DOC_FOUND = 1 OTHERS = 2 .
CK_F_MATERIAL_NUMBER_ASSIGN CALL FUNCTION 'CK_F_MATERIAL_NUMBER_ASSIGN' IMPORTING einzelkalkulationsnummer = l_kalnr erzeugniskalkulationsnummer = l_kaln1 EXCEPTIONS OTHERS = 1.
FI_PERIOD_DETERMINE CALL FUNCTION 'FI_PERIOD_DETERMINE' EXPORTING i_budat = rbkp-budat i_bukrs = rbkp-bukrs IMPORTING e_gjahr = f_ckmi1_bsim-bdatj e_poper = f_ckmi1_bsim-poper.
MRM_BSX_POSTING_RESTORE_INVOIC * CALL FUNCTION 'MRM_BSX_POSTING_RESTORE_INVOIC' * EXPORTING * I_BELNR = ls_ckmi1-awref * I_GJAHR = ls_aworg * I_MATNR = ls_bew-matnr * I_BWKEY = ls_bew-bwkey * I_BWTAR = ls_bew-bwtar * I_SOBKZ = ls_bew-sobkz * I_VBELN = ls_bew-vbeln * I_POSNR = ls_bew-posnr * I_PSPNR = ls_bew-pspnr * IMPORTING * E_DMBTR = ls_wrbtr * EXCEPTIONS * error_message = 4.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING defaultoption = 'N' diagnosetext1 = text1 diagnosetext2 = text2 textline1 = text3 titel = text4 IMPORTING answer = confirm.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = 'MSEG' TABLES dd12v_tab = lt_dd12v EXCEPTIONS illegal_input = 1 OTHERS = 2.
DDIF_INDX_GET CALL FUNCTION 'DDIF_INDX_GET' EXPORTING name = ls_dd12v-sqltab id = ls_dd12v-indexname TABLES dd17v_tab = lt_dd17v EXCEPTIONS illegal_input = 1 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.