RSDBSPF4 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 RSDBSPF4 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: RSDBRUNT Help: F4
INCLUDE RSDBC1XX.
No SAP DATABASE tables are accessed within this REPORT code!
DD_TBFK_GET call function 'DD_TBFK_GET' exporting fieldname = l_fieldname get_state = 'A' tabl_name = l_tablename importing got_state = l_got_state tables dd05m_tab_a = l_dd05m_t dd08v_tab_a = l_dd08v_t exceptions illegal_value = 1 others = 2.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING DYNAME = p_report DYNUMB = p_dynnr REQUEST = 'A' TABLES DYNPFIELDS = lt_dynpfields EXCEPTIONS OTHERS = 1.
RS_SELECTIONSCREEN_READ call function 'RS_SELECTIONSCREEN_READ' exporting program = p_program dynnr = P_dynnr tables fieldvalues = p_readv.
RS_CHECK_CONV_EX_2_IN call function 'RS_CHECK_CONV_EX_2_IN' exporting input_external = p_value table_field = l_tabfield importing input_i_format =
exceptions input_not_numerical = 1 too_many_decimals = 2 more_than_one_sign = 3 ill_thousand_separator_dist = 4 too_many_digits = 5 sign_for_unsigned = 6 too_large = 7 too_small = 8 invalid_date_format = 9 invalid_date = 10 invalid_time_format = 11 invalid_time = 12 invalid_hex_digit = 13 unexpected_error = 14 invalid_fieldname = 15 field_and_descr_incompatible = 16 input_too_long = 17 no_decimals = 18 invalid_float = 19 others = 20.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.