RMCFNEUA 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 RMCFNEUA into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
OLI4BW - Reorg. PPIS Extract Structures
OLI4 - SFIS Statistical Setup
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: DETAIL = D Detailed?
Selection Text: CHECKERW = Enhanced setup?
Selection Text: CHECK21 = Check for S021?
Selection Text: BELNR_L = Production order to
Selection Text: BELNR_H = Production order from
Selection Text: ENDDAT = Termination date
Selection Text: VERSION = Save under version
Selection Text: SL_WERKS = D Plant
Selection Text: SL_FEVOR = D Production scheduler
Selection Text: SL_ERDAT = D Created on
Selection Text: SL_DISPO = D MRP controller
Selection Text: PF = D Reorganization for event PF
Selection Text: NEWBW = D Extraction structures BW
Selection Text: NEULAUF = Rerun?
Selection Text: MCINF = Info structure to be set up
Selection Text: LAUFNAME = Name of run
Selection Text: F_DCIDX = Delete/set up indices
Selection Text: ENDZEIT = Termination time
Title: Statistical Setup: Shop Floor Information System
Text Symbol: 001 = Specification for the target structures
Text Symbol: 002 = Restriction of the production orders
Text Symbol: 003 = Control of the setup run
Text Symbol: 004 = Production order
Text Symbol: 005 = to ;
Text Symbol: 100 = Statistical setup: &V1&
INCLUDE RMCSNTOP .
No SAP DATABASE tables are accessed within this REPORT code!
CO_BT_DATA_RESET CALL FUNCTION 'CO_BT_DATA_RESET'.
STATUS_BUFFER_REFRESH CALL FUNCTION 'STATUS_BUFFER_REFRESH'.
CO_IT_SET_FLG_ITAB_NEW CALL FUNCTION 'CO_IT_SET_FLG_ITAB_NEW'.
CO_DB_ORDER_PRE_READ CALL FUNCTION 'CO_DB_ORDER_PRE_READ' EXPORTING client = sy-mandt flg_check = ' ' OBJECTS = t_objects trtyp_imp = 'A' flg_no_gui_message = ' ' explode_ord_net = ' ' TABLES ord_pre_imp = lt_ord_pre " nur ein einziger Eintrag ! EXCEPTIONS not_found = 01 release_no_change = 02.
CO_IT_ITAB_CREATE CALL FUNCTION 'CO_IT_ITAB_CREATE' EXCEPTIONS error_message = 01 OTHERS = 02.
CO_BT_STATISTICS_CREATE_NEW CALL FUNCTION 'CO_BT_STATISTICS_CREATE_NEW' EXPORTING flg_no_stat = ' ' flg_user = ' ' flg_wait = ' ' trans_typ = ' ' control = gs_control TABLES xmcinf = so_mcinf EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.