RBDSAPSEGMENTEDIT 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 RBDSAPSEGMENTEDIT 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_SEGM = D .
Title: Changing SAP Segments
Text Symbol: 001 = For SAP systems, no action is required.
Text Symbol: 002 = Do you want do deactivate the modification?
Text Symbol: 003 = Do you want to activate the modification?
Text Symbol: 004 = Yes
Text Symbol: 005 = No
Text Symbol: 006 = The segment can be changed
Text Symbol: 007 = The segment cannot be changed
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING systemtype = l_systemtype EXCEPTIONS no_systemname = 1 no_systemtype = 2 OTHERS = 3.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text ##TEXT_DIFF text_button_1 = 'Yes'(004) text_button_2 = 'No'(005) iv_quickinfo_button_1 = ' ' iv_quickinfo_button_2 = ' ' IMPORTING answer = answer * TABLES * PARAMETER = EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.