SAP Reports / Programs | Product Lifecycle Management | PLM Web User Interface | Recipe Development(PLM-WUI-RCP) SAP PLM

/PLMI/RCP_MIGRATION_CHECK SAP ABAP Report - Recipe Development: Master data and customizing setup check







/PLMI/RCP_MIGRATION_CHECK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The report checks whether master data or Customizing is set up for migration of Recipe Management recipes or independent formulas to recipes of Recipe Development...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter /PLMI/RCP_MIGRATION_CHECK into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT /PLMI/RCP_MIGRATION_CHECK. "Basic submit
SUBMIT /PLMI/RCP_MIGRATION_CHECK AND RETURN. "Return to original report after report execution complete
SUBMIT /PLMI/RCP_MIGRATION_CHECK VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: RUOM = D .
Selection Text: RPPM = D .
Selection Text: RCPTY = D .
Selection Text: RCMP = D .
Selection Text: RCLS = D .
Selection Text: RAEN = D .
Title: Recipe Development: Master data and customizing setup check
Text Symbol: 017 = Options
Text Symbol: 016 = Check finished
Text Symbol: 015 = Check process parameter master...
Text Symbol: 014 = Check recipe classification...
Text Symbol: 013 = Check change numbers...
Text Symbol: 012 = Check component types...
Text Symbol: 011 = Check Unit of Measure...
Text Symbol: 010 = Check recipe types...
Text Symbol: 009 = Component Type
Text Symbol: 008 = Process Parameter Master
Text Symbol: 007 = Customizing
Text Symbol: 006 = Change Number
Text Symbol: 005 = Recipe Classification
Text Symbol: 004 = Unit of Measure
Text Symbol: 003 = Recipe Type
Text Symbol: 002 = Master Data
Text Symbol: 001 = Migration: Check of Setup


INCLUDES used within this REPORT /PLMI/RCP_MIGRATION_CHECK

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

CC_CHANGE_NUMBER_OBJECTTYP CALL FUNCTION 'CC_CHANGE_NUMBER_OBJECTTYP' EXPORTING object_o83 = lc_plmwui_rcp TABLES chg_nr = lt_valid_change_nr EXCEPTIONS OTHERS = 0.

CCAP_ECN_HEADER_READ_MULTIPLE CALL FUNCTION 'CCAP_ECN_HEADER_READ_MULTIPLE' TABLES change_header_table = lt_change_header_table change_no_table = lt_change_no_table EXCEPTIONS error = 1 OTHERS = 2.

BAPI_CLASS_GETLIST CALL FUNCTION 'BAPI_CLASS_GETLIST' EXPORTING classtype_imp = gc_rm_classtype maxrows = 1000000 TABLES classselection = lt_bapiclasssel classlist = lt_rm_classes "recipe management return = lt_return.

BAPI_CLASS_GETLIST CALL FUNCTION 'BAPI_CLASS_GETLIST' EXPORTING classtype_imp = gc_rd_classtype maxrows = 1000000 TABLES classselection = lt_bapiclasssel classlist = lt_rd_classes "recipe development return = lt_return.

BAPI_CLASS_GETDETAIL CALL FUNCTION 'BAPI_CLASS_GETDETAIL' EXPORTING classtype = gc_rm_classtype classnum = -classname IMPORTING return = ls_return TABLES classcharacteristics = lt_rm_characteristic.

BAPI_CLASS_GETDETAIL CALL FUNCTION 'BAPI_CLASS_GETDETAIL' EXPORTING classtype = gc_rd_classtype classnum = -classname IMPORTING return = ls_return TABLES classcharacteristics = lt_rd_characteristic.

BAPI_OBJCL_GET_KEY_OF_OBJECT CALL FUNCTION 'BAPI_OBJCL_GET_KEY_OF_OBJECT' EXPORTING objectname = lv_objnum objecttable = lc_table classtype = gc_rm_classtype IMPORTING clobjectkeyout = lv_objek TABLES return = lt_return. "ignore it

CLSE_SELECT_KLAH CALL FUNCTION 'CLSE_SELECT_KLAH' TABLES imp_exp_klah = lt_klah EXCEPTIONS no_entry_found = 1 OTHERS = 2.

FRML301_FORMULAS_READ CALL FUNCTION 'FRML301_FORMULAS_READ' EXPORTING i_scenario = 'I' i_valdat = sy-datlo i_entities = ls_entities TABLES i_keynr_tab = lt_result1 e_inp_tab = lt_inp e_oup_tab = lt_oup EXCEPTIONS OTHERS = 0.

BAL_DSP_PROFILE_NO_TREE_GET CALL FUNCTION 'BAL_DSP_PROFILE_NO_TREE_GET' IMPORTING e_s_display_profile = ls_prof.

BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = ls_prof i_t_log_handle = lt_balloghndl * I_T_MSG_HANDLE = * I_S_LOG_FILTER = * I_S_MSG_FILTER = * I_T_LOG_CONTEXT_FILTER = * I_T_MSG_CONTEXT_FILTER = * I_AMODAL = ' ' * I_SRT_BY_TIMSTMP = ' ' * IMPORTING * E_S_EXIT_COMMAND = EXCEPTIONS OTHERS = 0.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = mv_percentage_progess text = mv_message_progess.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name /PLMI/RCP_MIGRATION_CHECK or its description.