IBPREP_SCREEN_NEW 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 IBPREP_SCREEN_NEW 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: Include FMMP_CO_SELECTION
INCLUDE FMMP_TARGET_SELECTION.
INCLUDE RKASMAWF.
INCLUDE IFMBAS_ACCESSIBILITY_MODE.
No SAP DATABASE tables are accessed within this REPORT code!
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'BW_SYS' value_org = 'S' TABLES value_tab = value_tab return_tab = l_t_return_tab EXCEPTIONS parameter_error = 1 no_values_found = 2 OTHERS = 3.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = l_sy_repid dynumb = sy-dynnr translate_to_upper = ' ' TABLES dynpfields = l_t_dynprofields.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'QUERY' value_org = 'S' TABLES value_tab = value_tab return_tab = l_t_return_tab EXCEPTIONS parameter_error = 1 no_values_found = 2 OTHERS = 3.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = l_sy_repid dynumb = sy-dynnr translate_to_upper = ' ' TABLES dynpfields = l_t_dynprofields.
RSCRM_REPORT_VARIANTS_F4 CALL FUNCTION 'RSCRM_REPORT_VARIANTS_F4' DESTINATION l_bw_sys EXPORTING i_reportuid = l_query IMPORTING e_variant = c_varnt.
BUBAS_STRAT_SHOW_ALL_ENV CALL FUNCTION 'BUBAS_STRAT_SHOW_ALL_ENV' EXPORTING i_appl = const_deriv_appl i_subclass = const_deriv_subcl_bp i_strategy_id = const_deriv_bp_strat_id i_flg_no_diag_for_one_entry = 'X' i_flg_suppress_id = 'X' i_dynpprog = l_repid i_dynpnr = l_dynnr i_dynprofield = 'p_envbp' IMPORTING e_env = c_envir e_env_text = c_envir_text.
BUBAS_STRAT_SHOW_ALL_ENV CALL FUNCTION 'BUBAS_STRAT_SHOW_ALL_ENV' EXPORTING i_appl = const_deriv_appl i_subclass = const_deriv_subcl_fm i_strategy_id = const_deriv_fm_strat_id i_flg_no_diag_for_one_entry = 'X' i_flg_suppress_id = 'X' i_dynpprog = l_repid i_dynpnr = l_dynnr i_dynprofield = 'p_envfm' IMPORTING e_env = c_envir e_env_text = c_envir_text.
RSZ_X_CONTROL_TEXTS_GET CALL FUNCTION 'RSZ_X_CONTROL_TEXTS_GET' DESTINATION c_bw_sys EXPORTING i_langu = sy-langu IMPORTING e_server_version = l_server_version EXCEPTIONS communication_failure = 3 system_failure = 5 OTHERS = 6.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_enter_more text = text-450 info = text-450 add_stdinf = 'X' IMPORTING result = p_qvar EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_display_more text = text-450 info = text-450 add_stdinf = 'X' IMPORTING result = p_qvar EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.