RSNSPACE 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 RSNSPACE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
RSNSPACE - BW Namespace Maintenance
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: Maintain BW Namespaces
Text Symbol: PAR = Partner Namespace
Text Symbol: NT1 = End Namespace Maintenance
Text Symbol: NC3 = Cancel maintenance?
Text Symbol: NC2 = Do you want to save?
Text Symbol: NC1 = Namespace Entries Were Changed
Text Symbol: HNR = Explanations for the Namespaces
Text Symbol: BIN = Namespace for Generated BW Staging Objects
Text Symbol: BIC = Namespace for Customer-Generated Objects (ABC...XYZ Prefix)
Text Symbol: BI1 = Namespace for Special BW Metaobjects (e.g. 1KYFNM)
Text Symbol: BI0 = Namespace for SAP Content Objects (0 Prefix)
Text Symbol: APO = Namespace for Content Objects for APO Application
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ENQUEUE_E_BIW_NSPACE CALL FUNCTION 'ENQUEUE_E_BIW_NSPACE' EXPORTING * MODE_RSPSPACE = 'E' _scope = '1' * _WAIT = ' ' * _COLLECT = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = g_c_bwappl value_org = 'S' TABLES value_tab = g_t_bwappl return_tab = g_t_retval EXCEPTIONS parameter_error = 1 no_values_found = 2.
DYNP_VALUES_UPDATE CALL FUNCTION 'DYNP_VALUES_UPDATE' EXPORTING dyname = 'RSNSPACE' dynumb = sy-dynnr TABLES dynpfields = g_t_dy_fie EXCEPTIONS OTHERS = 08.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' "#EC FB_OLDED EXPORTING defaultoption = rs_c_yes diagnosetext1 = text-nc1 * diagnosetext2 = textline1 = text-nc2 * textline2 = titel = text-nt1 IMPORTING answer = g_answer.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' "#EC FB_OLDED EXPORTING defaultoption = rs_c_no diagnosetext1 = text-nc1 * diagnosetext2 = textline1 = text-nc3 * textline2 = titel = text-nt1 IMPORTING answer = g_answer.
TR_READ_NAMESPACE CALL FUNCTION 'TR_READ_NAMESPACE' EXPORTING iv_namespace = g_s_nr_par-namespace IMPORTING es_trnspace = l_s_trnspace EXCEPTIONS namespace_not_existing = 1 OTHERS = 2.
TR_READ_NAMESPACE CALL FUNCTION 'TR_READ_NAMESPACE' EXPORTING iv_namespace = g_s_nr_par-nspacegen IMPORTING es_trnspace = l_s_trnspace EXCEPTIONS namespace_not_existing = 1 OTHERS = 2.
HELPSCREEN_NA_CREATE CALL FUNCTION 'HELPSCREEN_NA_CREATE' "#EC FB_OLDED EXPORTING meld_id = 'R7B' meld_nr = '401' titel = text-hnr.
HELPSCREEN_NA_CREATE CALL FUNCTION 'HELPSCREEN_NA_CREATE' "#EC FB_OLDED EXPORTING meld_id = 'R7B' meld_nr = '402' titel = text-hnr.
TR_OBJECT_CHECK CALL FUNCTION 'TR_OBJECT_CHECK' EXPORTING wi_ko200 = l_s_ko200 * IMPORTING * we_order = l_order * we_task = l_task TABLES wt_e071k = l_t_e071k EXCEPTIONS cancel_edit_other_error = 1 show_only_other_error = 2.
TR_OBJECTS_INSERT CALL FUNCTION 'TR_OBJECTS_INSERT' * EXPORTING * WI_ORDER = ' ' * IV_NO_STANDARD_EDITOR = ' ' * IV_NO_SHOW_OPTION = ' ' * IV_EXTERNALPS = ' ' * IV_EXTERNALID = ' ' * IV_NO_PS = ' ' * IMPORTING * WE_ORDER = * WE_TASK = TABLES wt_ko200 = l_t_ko200 wt_e071k = l_t_e071k * TT_TADIR = EXCEPTIONS cancel_edit_other_error = 1 show_only_other_error = 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.