RMSER11F is a standard ABAP INCLUDE 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 RMSER11F 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: Backlogs for make-to-order production
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RM_DELETE_MDRR * CALL FUNCTION 'RM_DELETE_MDRR' IN UPDATE TASK * TABLES * mdrrd = mdrrd.
RM_DELETE_AFFWRM_D * CALL FUNCTION 'RM_DELETE_AFFWRM_D' IN UPDATE TASK * TABLES * affwrm_del = l_affwrm.
DEQUEUE_EMSAFKE CALL FUNCTION 'DEQUEUE_EMSAFKE' EXPORTING aufnr = aufnr.
POPUP_TO_CONFIRM_WITH_MESSAGE * CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' "Obsolete * EXPORTING * defaultoption = 'Y' * diagnosetext1 = dt1 * diagnosetext2 = dt2 * diagnosetext3 = dt3 * textline1 = tl1 * textline2 = tl2 * titel = tt * start_column = 25 * start_row = 6 * IMPORTING * answer = antwort.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = tt text_question = l_text default_button = '1' display_cancel_button = 'X' start_column = 25 start_row = 6 IMPORTING answer = antwort EXCEPTIONS text_not_found = 1 OTHERS = 2.
CONVERSION_EXIT_MATN1_INPUT * CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT' * EXPORTING * input = mrked-matnr * IMPORTING ** output = convert_matnr.
RM_CHECK_AUTH_BACKFL CALL FUNCTION 'RM_CHECK_AUTH_BACKFL' EXPORTING werk = p_werks check_post = '3' no_lagort = 'X' EXCEPTIONS no_auth = 1 userdata_incomplete = 2 wrong_call = 3 miss_storage = 4 OTHERS = 5.
CM_F_ANALYSIS CALL FUNCTION 'CM_F_ANALYSIS' EXPORTING aplid = msg_apl_backflush headline = ' ' ocs_activ = ' ' ocs_send_immediate = ' ' EXCEPTIONS not_active = 1 OTHERS = 2.
ENQUEUE_EMATVER CALL FUNCTION 'ENQUEUE_EMATVER' EXPORTING matnr = i_matnr werks = i_werks verid = i_verid EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_EMATVER CALL FUNCTION 'DEQUEUE_EMATVER' EXPORTING matnr = i_matnr werks = i_werks verid = i_verid.
ENQUEUE_ESORDER CALL FUNCTION 'ENQUEUE_ESORDER' EXPORTING aufnr = p_pkosa EXCEPTIONS foreign_lock = 1 system_failure = 2.
ENQUEUE_EVVBAKE CALL FUNCTION 'ENQUEUE_EVVBAKE' EXPORTING vbeln = kdauf EXCEPTIONS foreign_lock = 2 system_failure = 3.
MD_MRP_AREA_GET CALL FUNCTION 'MD_MRP_AREA_GET' EXPORTING i_matnr = p_mdrrd-matnr i_werks = p_mdrrd-werks i_lgort = p_mdrrd-lgort IMPORTING e_db_mdlv = l_mdlv e_mdma = l_mdma.
DISPSATZ_ERSTELLEN CALL FUNCTION 'DISPSATZ_ERSTELLEN' EXPORTING wa = l_mdcp.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.