RN2PMD_BCSET_MODIFY_PROPS 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 RN2PMD_BCSET_MODIFY_PROPS 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.
Selection Text: P_ANWDIA = Dialog Application
Selection Text: P_ANWFRM = Print Form
Selection Text: P_ANWPRI = Print Application
Selection Text: P_DEID = Documentation Element
Selection Text: P_DOKART = Document Type
Selection Text: P_DTID = Document Category
Selection Text: P_DTVERS = Document Category Version
Selection Text: P_EINRI = Institution
Selection Text: P_ID = Business Configuration Set
Selection Text: P_TMODE = Test Mode
Title: (obsolete)
Text Symbol: BGN = Keys of Generated Objects
Text Symbol: BKY = Key Fields
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SAPGUI_PROGRESS_INDICATOR ******* CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' ******* EXPORTING ******* percentage = 100 ******* text = 'Verarbeitung abgeschlossen.'.
SCPR_EXT_BCSET_READ ******* CALL FUNCTION 'SCPR_EXT_BCSET_READ' ******* EXPORTING ******* bcset_id = p_id ******* IMPORTING ******* bcset_text = g_text ******* component = g_component ******* minrelease = g_minrel ******* maxrelease = g_maxrel ******* TABLES ******* values = gt_values ******* recattr = gt_attributes ******* EXCEPTIONS ******* bcset_dont_exist = 1 ******* OTHERS = 2.
SAPGUI_PROGRESS_INDICATOR ******* CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' ******* EXPORTING ******* percentage = l_percent ******* text = 'Bearbeite Tabelleneinträge...'.
SAPGUI_PROGRESS_INDICATOR ******* CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' ******* EXPORTING ******* percentage = 60 ******* text = 'Prüfe Transportanschluß...'.
SCPR_CT_TRANSPORT_CHECK ******* CALL FUNCTION 'SCPR_CT_TRANSPORT_CHECK' ******* EXPORTING ******* profid = p_id ******** IMPORTING ******** WE_KO200 = ******** RET = ******** TABLES ******** WT_E071K = ******* EXCEPTIONS ******* stop_editing = 1 ******* to_display_mode = 2 ******* OTHERS = 3.
SAPGUI_PROGRESS_INDICATOR ******* CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' ******* EXPORTING ******* percentage = 70 ******* text = 'Übertrage Attribute...'. "#EC *
SAPGUI_PROGRESS_INDICATOR ******* CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' ******* EXPORTING ******* percentage = 80 ******* text = 'Entferne altes BC-Set...'. "#EC *
SCPR_MN_NAMESPACE_GET ******* CALL FUNCTION 'SCPR_MN_NAMESPACE_GET' ******* IMPORTING ******* orgid = l_orgid ******* EXCEPTIONS ******* user_abort = 1.
SCPR_PRSET_DB_DELETE_ALL ******* CALL FUNCTION 'SCPR_PRSET_DB_DELETE_ALL' ******* EXPORTING ******* profid = p_id ******* version = 'N' ******* proftype = 'TMV' ******* component = g_component ******* minrelease = g_minrel ******* maxrelease = g_maxrel ******* proftext = g_text ******* orgid = l_orgid ******* orgid_old = l_orgid ******* TABLES ******* fatherprofs = lt_dummy ******* EXCEPTIONS ******* user_abort = 1 ******* OTHERS = 2.
SAPGUI_PROGRESS_INDICATOR ******* CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' ******* EXPORTING ******* percentage = 90 ******* text = 'Schreibe neues BC-Set...'.
SCPR_EXT_BCSET_WRITE ******* CALL FUNCTION 'SCPR_EXT_BCSET_WRITE' ******* EXPORTING ******* bcset_id = p_id ******* bcset_text = g_text ******* component = g_component ******* minrelease = g_minrel ******* maxrelease = g_maxrel ******* TABLES ******* values = gt_values ******* recattr = lt_attr_new ******* EXCEPTIONS ******* user_abort = 1 ******* error_in_transport_layer = 2 ******* other_error = 3 ******* OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.