RFFMFCP3 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 RFFMFCP3 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: Form routines for the master data copying (RFFMCP0, RFFMFCP0)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
FM21_CHECK_EURO_FMAREA CALL FUNCTION 'FM21_CHECK_EURO_FMAREA' EXPORTING I_EUROFIKRS = P_FI_NEW IMPORTING E_F_FMEUROPLAN = L_F_FMEUROPLAN.
FM21_PUT_EURO_FMAREA CALL FUNCTION 'FM21_PUT_EURO_FMAREA' EXPORTING I_F_FMEUROPLAN = L_F_FMEUROPLAN.
FM21_CHECK_EURO_FMAREA CALL FUNCTION 'FM21_CHECK_EURO_FMAREA' EXPORTING I_EUROFIKRS = P_FI_NEW IMPORTING E_F_FMEUROPLAN = L_F_FMEUROPLAN.
FM21_PUT_EURO_FMAREA CALL FUNCTION 'FM21_PUT_EURO_FMAREA' EXPORTING I_F_FMEUROPLAN = L_F_FMEUROPLAN.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING TITEL = TEXT-001 TEXTLINE1 = TEXT-002 textline2 = text-053 IMPORTING ANSWER = L_ANSWER.
ENQUEUE_E_TABLEE CALL FUNCTION 'ENQUEUE_E_TABLEE' EXPORTING MODE_RSTABLE = 'E' TABNAME = 'FMEUROPLAN' VARKEY = L_VARKEY.
GET_FIELDTAB CALL FUNCTION 'GET_FIELDTAB' EXPORTING LANGU = SY-LANGU ONLY = ' ' TABNAME = G_T_TABLIST-TABNAME WITHTEXT = 'X' TABLES FIELDTAB = FIELDTAB EXCEPTIONS INTERNAL_ERROR = 1 NO_TEXTS_FOUND = 2 TABLE_HAS_NO_FIELDS = 3 TABLE_NOT_ACTIV = 4 OTHERS = 5.
SELECT_TEXT CALL FUNCTION 'SELECT_TEXT' EXPORTING client = sy-mandt database_only = 'X' object = 'FMMD' name = l_fikrs_org id = '*' TABLES selections = l_t_thead * T_OBJECT = * T_NAME = * T_ID = * T_LANGUAGE = EXCEPTIONS wrong_access_to_archive = 1 OTHERS = 2 .
DELETE_TEXT CALL FUNCTION 'DELETE_TEXT' EXPORTING client = sy-mandt id = '*' language = '*' name = l_fikrs_new object = 'FMMD' savemode_direct = 'X' EXCEPTIONS not_found = 1 OTHERS = 2.
COPY_TEXTS CALL FUNCTION 'COPY_TEXTS' EXPORTING savemode_direct = 'X' insert = 'X' IMPORTING error = l_error TABLES texts = l_t_itctc EXCEPTIONS error_message = 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.