CP_SEL_SCREEN_FORM 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 CP_SEL_SCREEN_FORM 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CP_CL_S_TSK_PROVIDE CALL FUNCTION 'CP_CL_S_TSK_PROVIDE' TABLES e_tsk_class_data = tsk_class_data.
CZ_CL_S_MTK_PROVIDE CALL FUNCTION 'CZ_CL_S_MTK_PROVIDE' EXPORTING i_plnty = c_context-plnty i_plnnr = c_context-plnnr i_plnal = c_context-plnal TABLES e_mtk_class_data = mtk_class_data.
CS_CL_S_BOM_PROVIDE CALL FUNCTION 'CS_CL_S_BOM_PROVIDE' TABLES e_bom_class_data = bom_class_data.
CS_CL_S_BGR_PROVIDE CALL FUNCTION 'CS_CL_S_BGR_PROVIDE' EXPORTING i_stlty = c_context-stlty i_stlnr = c_context-stlnr IMPORTING e_bgr_class_data = bgr_class_data EXCEPTIONS wrong_key = 1 OTHERS = 2.
CS_CL_S_MBM_PROVIDE CALL FUNCTION 'CS_CL_S_MBM_PROVIDE' EXPORTING i_matnr = c_context-matnr " PL i_werks = c_context-werks " PL i_stlnr = c_context-stlnr i_stlal = c_context-stlal TABLES e_mbm_class_data = mbm_class_data.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
CP_SC_DISPLAY_FLAG_PROVIDE CALL FUNCTION 'CP_SC_DISPLAY_FLAG_PROVIDE' IMPORTING e_display_only = flg_display_only.
CP_SC_WORKAREA_DETAIL_PROCESS CALL FUNCTION 'CP_SC_WORKAREA_DETAIL_PROCESS' EXPORTING i_flg_external_call = const-flg_yes.
T410_READ CALL FUNCTION 'T410_READ' EXPORTING i_class = work_area_class i_work_area = cwb_workarea-work_area i_spras = sy-langu IMPORTING e_t410 = cwb_workarea e_t410t_ktext = g_workarea_ktext.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.