RHMOVE50 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report transports all objects with a repair flag appended in the PLOGI or PLOGI_DEL tables; in other words, all changed or deleted objects...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RHMOVE50 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: TEST = Test
Selection Text: TRKORR = Task
Selection Text: TRTEXT = Request
Title: Transport of Objects Using Object Lock
Text Symbol: 000 = T E S T R U N
Text Symbol: 001 = PlVer.
Text Symbol: 002 = OTYPE
Text Symbol: 003 = OBJID
Text Symbol: 004 = Transport
Text Symbol: 005 = Name
Text Symbol: 006 = Transport objects?
Text Symbol: 007 = Do you wish to transport
Text Symbol: 008 = the objects? (No = test run)
Text Symbol: DEL = > Object is deleted in target system
Text Symbol: NOT = No objects with object lock for transport
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RH_READ_OBJECT CALL FUNCTION 'RH_READ_OBJECT' EXPORTING PLVAR = OBJECT_TAB-PLVAR OTYPE = OBJECT_TAB-OTYPE OBJID = OBJECT_TAB-OBJID IMPORTING SHORT = OBJECT_TAB-SHORT STEXT = OBJECT_TAB-STEXT EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING TITEL = TEXT-006 TEXTLINE1 = TEXT-007 TEXTLINE2 = TEXT-008 IMPORTING ANSWER = ANSWER EXCEPTIONS OTHERS = 1.
RH_TRSP_MAN_PDOBJECTS CALL FUNCTION 'RH_TRSP_MAN_PDOBJECTS' TABLES ACT_OBJECTS = PLOGI_TRSP_TAB DEL_OBJECTS = PLOGI_DEL_TAB CHANGING ACT_CORR = TRKORR EXCEPTIONS T77S0_TRSP_ENTRY_IS_OFF = 1 CORRECTION_CANCELED = 2 OBJECT_TAB_IS_INITIAL = 3 TRSP_APPEND_ERROR = 4 TRSP_CHECK_ERROR = 5 CUSTPLVAR_EQUAL_ACTPLVAR = 6 SOBJ_ERROR = 7 CORRNUMBER_NOT_VALID_TYPE = 8 CORRNUMBER_NOT_VALID_TRSP_CLAS = 9 CORRNUMBER_NOT_VALID_USER = 10 CORRNUMBER_NOT_FOUND = 11 OTHERS = 12.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.