SAP Reports / Programs

RCPDM_CALL_WORKBENCH SAP ABAP Report - Call the engineering workbench in a separate mode







RCPDM_CALL_WORKBENCH 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 RCPDM_CALL_WORKBENCH 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 RCPDM_CALL_WORKBENCH. "Basic submit
SUBMIT RCPDM_CALL_WORKBENCH AND RETURN. "Return to original report after report execution complete
SUBMIT RCPDM_CALL_WORKBENCH VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Call the engineering workbench in a separate mode


INCLUDES used within this REPORT RCPDM_CALL_WORKBENCH

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:

CP_CC_S_LOAD_COMPLEX_BY_BOM CALL FUNCTION 'CP_CC_S_LOAD_COMPLEX_BY_BOM' EXPORTING i_class = class_p i_classes_in_workarea = workarea i_cpsc_bom_sel = bom_sel i_date_from = p_datuv i_date_to = p_datuv
IMPORTING e_bom_ident = bom_data
EXCEPTIONS workarea_not_found = 01 workarea_wrong_type = 02 class_in_workarea_inconsistent = 03 workarea_not_specified = 04 bom_not_found = 05 no_selection_criteria = 06 invalid_selection_period = 07 key_date_required_for_ecm = 08.

CS_OV_BOM_SCREEN_PROCESS CALL FUNCTION 'CS_OV_BOM_SCREEN_PROCESS' EXPORTING i_date_from = p_datuv i_date_to = p_datuv i_stlty = p_stlty i_stlnr = p_stlnr i_stlal = p_stlal
EXCEPTIONS wrong_key = 01.

CP_CC_S_LOAD_COMPLEX_BY_ITM CALL FUNCTION 'CP_CC_S_LOAD_COMPLEX_BY_ITM' EXPORTING i_class = class_p i_classes_in_workarea = workarea i_cpsc_bom_sel = bom_sel i_cpsc_itm_sel = itm_sel i_date_from = p_datuv i_date_to = p_datuv
IMPORTING e_itm_ident = itm_data
EXCEPTIONS workarea_not_found = 01 workarea_wrong_type = 02 class_in_workarea_inconsistent = 03 workarea_not_specified = 04 itm_not_found = 05 no_selection_criteria = 06 invalid_selection_period = 07 key_date_required_for_ecm = 08.

CS_OV_ITM_SCREEN_PROCESS CALL FUNCTION 'CS_OV_ITM_SCREEN_PROCESS' EXPORTING i_date_from = p_datuv i_date_to = p_datuv i_stlty = p_stlty i_stlnr = p_stlnr i_ident = itm_data_wa-ident
EXCEPTIONS wrong_key = 01.

CP_CC_S_LOAD_COMPLEX_BY_TSK CALL FUNCTION 'CP_CC_S_LOAD_COMPLEX_BY_TSK' EXPORTING i_class = class_p i_classes_in_workarea = workarea i_cpsc_tsk_sel = tsk_sel i_date_from = p_datuv i_date_to = p_datuv
EXCEPTIONS workarea_not_found = 01 class_wrong_type = 02 workarea_wrong_type = 03 class_in_workarea_inconsistent = 04 workarea_not_specified = 05 tsk_not_found = 06 no_selection_criteria = 07 invalid_selection_period = 08 key_date_required_for_ecm = 09.

CP_OV_TSK_SCREEN_PROCESS CALL FUNCTION 'CP_OV_TSK_SCREEN_PROCESS' EXPORTING i_date_from = p_datuv i_date_to = p_datuv i_plnty = p_plnty i_plnnr = p_plnnr i_plnal = p_plnal
EXCEPTIONS wrong_key = 01.

CP_CC_S_LOAD_COMPLEX_BY_BOM CALL FUNCTION 'CP_CC_S_LOAD_COMPLEX_BY_BOM' EXPORTING i_class = class_p i_classes_in_workarea = workarea i_cpsc_mbm_sel = mbm_sel i_date_from = p_datuv i_date_to = p_datuv
IMPORTING e_bom_ident = bom_data
EXCEPTIONS workarea_not_found = 01 workarea_wrong_type = 02 class_in_workarea_inconsistent = 03 workarea_not_specified = 04 bom_not_found = 05 no_selection_criteria = 06 invalid_selection_period = 07 key_date_required_for_ecm = 08.

CS_OV_BOM_SCREEN_PROCESS CALL FUNCTION 'CS_OV_BOM_SCREEN_PROCESS' EXPORTING i_date_from = p_datuv i_date_to = p_datuv i_material = p_matnr
EXCEPTIONS wrong_key = 01.

CP_CC_S_LOAD_COMPLEX_BY_OPR CALL FUNCTION 'CP_CC_S_LOAD_COMPLEX_BY_OPR' EXPORTING i_class = class_p i_classes_in_workarea = workarea i_cpsc_tsk_sel = tsk_sel i_cpsc_opr_sel = opr_sel i_date_from = p_datuv i_date_to = p_datuv
EXCEPTIONS workarea_not_found = 01 class_wrong_type = 02 workarea_wrong_type = 03 class_in_workarea_inconsistent = 04 workarea_not_specified = 05 opr_not_found = 06 no_selection_criteria = 07 invalid_selection_period = 08 key_date_required_for_ecm = 09.

CP_OV_OPR_SCREEN_PROCESS CALL FUNCTION 'CP_OV_OPR_SCREEN_PROCESS' EXPORTING i_date_from = p_datuv i_date_to = p_datuv i_plnty = p_plnty i_plnnr = p_plnnr i_plnal = p_plnal i_ident = p_oprid
EXCEPTIONS wrong_key = 01.



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 RCPDM_CALL_WORKBENCH or its description.