RNSSAEB_COMMON_FORMS_REPORTS 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 RNSSAEB_COMMON_FORMS_REPORTS 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.
INCLUDE RNSSAEB_EXTRACT_MESSAGES.
INCLUDE RNSSAEB_NFAL_NBEW_LESEN.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_CALL_LIST_HEAD CALL FUNCTION 'ISH_CALL_LIST_HEAD' EXPORTING einri = se_einri ausbegdt = rnstat-ausbegdt ausenddt = rnstat-ausenddt title_lin1 = rnstat-title_lin1 title_lin2 = rnstat-title_lin2 line_size = rnstat-line_size repid = rnstat-repid uline = off EXCEPTIONS OTHERS = 1.
ISH_PRINT_PROTOCOL_BATCH CALL FUNCTION 'ISH_PRINT_PROTOCOL_BATCH' EXPORTING line_size = rnstat-line_size minutes_title = text-ueb repid = rnstat-repid new_section = on EXCEPTIONS no_messages = 1.
ISH_CALL_LIST_HEAD CALL FUNCTION 'ISH_CALL_LIST_HEAD' EXPORTING einri = se_einri ausbegdt = rnstat-ausbegdt ausenddt = rnstat-ausenddt title_lin1 = rnstat-title_lin1 title_lin2 = rnstat-title_lin2 line_size = lsize repid = rnstat-repid uline = off EXCEPTIONS OTHERS = 1.
REUSE_ALV_LIST_LAYOUT_INFO_GET CALL FUNCTION 'REUSE_ALV_LIST_LAYOUT_INFO_GET' IMPORTING es_layout = gs_layout et_fieldcat = xfield[] EXCEPTIONS OTHERS = 1.
REUSE_ALV_LIST_WIDTH_GET CALL FUNCTION 'REUSE_ALV_LIST_WIDTH_GET' EXPORTING it_fieldcat = xfield[] is_layout = gs_layout IMPORTING e_width = width.
REUSE_ALV_HS_LIST_WIDTH_GET CALL FUNCTION 'REUSE_ALV_HS_LIST_WIDTH_GET' EXPORTING i_tabname_header = c_kopfzeile_tab i_tabname_item = c_positionszeile_tab it_fieldcat = xfield[] is_layout = gs_layout IMPORTING e_width = width EXCEPTIONS OTHERS = 1.
MESSAGES_COUNT CALL FUNCTION 'MESSAGES_COUNT' IMPORTING count = l_no_of_messages.
ISH_ALV_FOOTER CALL FUNCTION 'ISH_ALV_FOOTER' EXPORTING i_width = width it_lines = it_lines.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.