RIPMSOLD 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 RIPMSOLD 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: SPERREN = Block all documents?
Selection Text: PKTSIZE = Package Size
Selection Text: NEULAUF = New run?
Selection Text: MCINF = Info structures to be set up
Selection Text: LAUFNAME = Name of run
Selection Text: H_VRSIO = Save under version
Selection Text: ENDZEIT = Termination time
Selection Text: ENDDAT = Termination date
Selection Text: DATE_WO = Order
Selection Text: DATE_TP = Functional location
Selection Text: DATE_NO = Notification
Selection Text: DATE_EQ = Equipment
Title: PMIS: Statistical setup of info structures
Text Symbol: 100 = Setup: &V1&
Text Symbol: 070 = Delete?
Text Symbol: 060 = Data for version & already exists
Text Symbol: 055 = Current orders
Text Symbol: 050 = Historical orders
Text Symbol: 040 = Functional locatn
Text Symbol: 030 = Equipment
Text Symbol: 020 = Notifctns
Text Symbol: 010 = PMIS:Stat.Setup
Text Symbol: 007 = Creation date
Text Symbol: 006 = To ;
Text Symbol: 005 = Purch. Doc.
Text Symbol: 004 = Spec. for using ALE
Text Symbol: 003 = Control Reconstruction Run
Text Symbol: 002 = Document data restriction
Text Symbol: 001 = Specs for target structures
INCLUDE RMCSNTOP .
No SAP DATABASE tables are accessed within this REPORT code!
MCI3_ENQUEUE_GLOBAL_PMIS CALL FUNCTION 'MCI3_ENQUEUE_GLOBAL_PMIS' TABLES i_tmc5 = i_tmc5 EXCEPTIONS OTHERS = 1.
MCS_TMC4_F4 CALL FUNCTION 'MCS_TMC4_F4' EXPORTING i_flg_only_with_table = 'X' i_flg_check_only = 'X' i_mcinf_to_check = itmc2s-mcinf EXCEPTIONS no_field_selected = 1 OTHERS = 2.
MCI3_DEQUEUE_GLOBAL_PMIS CALL FUNCTION 'MCI3_DEQUEUE_GLOBAL_PMIS' TABLES i_tmc5 = i_tmc5 EXCEPTIONS OTHERS = 1.
MCI3_NOTIFICATION_BUILD_NEW CALL FUNCTION 'MCI3_NOTIFICATION_BUILD_NEW' EXPORTING i_zeitp = con_zeitp_i0 i_mcapp = con_mcapp_pm i_vrsio = p_vrsio i_laufname = p_laufname i_start_qmnum = l_qmnum i_package_size = con_paketgroesse i_enddat = enddat i_endzeit = endzeit i_erdat = date_no TABLES i_mcinf_tab = p_mcinf i_qmart_tab = rg_qmart EXCEPTIONS time_out = 1 OTHERS = 2.
MCI3_EQUIPMENT_BUILD_NEW CALL FUNCTION 'MCI3_EQUIPMENT_BUILD_NEW' EXPORTING i_vrsio = p_vrsio i_laufname = p_laufname i_start_equnr = l_equnr i_package_size = con_paketgroesse i_enddat = enddat i_endzeit = endzeit i_erdat = date_eq TABLES i_mcinf_tab = p_mcinf EXCEPTIONS time_out = 1 OTHERS = 2.
MCI3_LOCATION_BUILD_NEW CALL FUNCTION 'MCI3_LOCATION_BUILD_NEW' EXPORTING i_vrsio = p_vrsio i_laufname = p_laufname i_start_tplnr = l_tplnr i_package_size = con_paketgroesse i_enddat = enddat i_endzeit = endzeit i_erdat = date_tp TABLES i_mcinf_tab = p_mcinf EXCEPTIONS time_out = 1 OTHERS = 2.
MCI3_HIST_ORDER_BUILD_NEW CALL FUNCTION 'MCI3_HIST_ORDER_BUILD_NEW' EXPORTING i_vrsio = p_vrsio i_laufname = p_laufname i_start_aufnr = l_aufnr i_package_size = con_paketgroesse i_enddat = enddat i_endzeit = endzeit i_erdat = date_wo TABLES i_mcinf_tab = p_mcinf EXCEPTIONS time_out = 1 OTHERS = 2.
MCI3_ORDER_BUILD_NEW_2 CALL FUNCTION 'MCI3_ORDER_BUILD_NEW_2' EXPORTING i_vrsio = p_vrsio i_laufname = p_laufname i_start_aufnr = l_aufnr i_package_size = con_paketgroesse i_enddat = enddat i_endzeit = endzeit i_erdat = date_wo TABLES i_mcinf_tab = p_mcinf EXCEPTIONS time_out = 1 OTHERS = 2.
MCS_TMC4_F4 CALL FUNCTION 'MCS_TMC4_F4' EXPORTING i_mcapp = con_mcapp_pm i_flg_with_mix_mcapp = 'X' i_flg_check_only = 'X' i_mcinf_to_check = l_rg_mcinf-low i_estruc = 'X' IMPORTING e_flg_allowed = h_allowed EXCEPTIONS no_field_selected = 1 OTHERS = 2.
MESSAGES_COUNT CALL FUNCTION 'MESSAGES_COUNT' IMPORTING count = sy-tfill.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE' EXPORTING reset = 'X'.
MESSAGES_COUNT CALL FUNCTION 'MESSAGES_COUNT' IMPORTING count = sy-tfill.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXPORTING object = text-010 show_linno = ' '.
MESSAGES_GIVE CALL FUNCTION 'MESSAGES_GIVE' TABLES t_mesg = imsg EXCEPTIONS OTHERS = 1.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = u_msgid msgty = 'I' msgv1 = u_msgv1 msgv2 = u_msgv2 txtnr = u_msgno.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = con_ja textline1 = h_text textline2 = utext2 titel = utext3 IMPORTING answer = uanswer.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.