RLMOBLTO 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 RLMOBLTO 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.
Title: Include RLMOBLTO
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CHECK_TO_IF_ANOTHER_USER CALL FUNCTION 'CHECK_TO_IF_ANOTHER_USER' EXPORTING I_TANUM = TO_ID I_WHS_ID = WHS_ID I_UPROF = USER_PRF IMPORTING O_WKQU = IV_WKQU.
SELECT_LOCK_TO CALL FUNCTION 'SELECT_LOCK_TO' EXPORTING I_WHS_ID = WHS_ID I_UPROF = USER_PRF I_DELIVERY = DELV_ID I_TANUM = TO_ID I_1CONF = IND_CONF " 1-st or 2-nd step IMPORTING O_IND_1CONF = IND_CONF TABLES T_HEADERS = TO_HEADER_TABLE T_ITEMS = TO_ITEMS_TABLE CHANGING I_ACTVTY = ACTIVITY EXCEPTIONS WRONG_WHS_ID = 01 NO_AUTHORITY = 02 TO_DOESNT_EXIST = 03 TO_IS_LOCKED = 04 INTERNAL_ERROR = 05 TR_IS_LOCKED = 06 PSCH_IS_LOCKED = 07 DLVR_IS_LOCKED = 08 TO_CONF = 09 NO_SHIP_DOC = 10 MATERIAL_ERROR = 11 RSRV_LOCK = 12 WRONG_MVTYP = 13 TO_PROBLEM = 14 EMPTY_HEADER_TABLE = 15 NOTHING_TO_CONFIRM_IN_DELV = 16 WRONG_TO_FOR_QUEUE = 17 NOTHING_TO_CONFIRM = 18 TO_CONFIRMED_BY_NONRF = 19 ERROR_MESSAGE = 99.
GET_VERIFY_TO CALL FUNCTION 'GET_VERIFY_TO' EXPORTING I_WHS_ID = WHS_ID I_TO_ID = TO_ID I_UPROF = USER_PRF IMPORTING O_WARNING = ISSUE_WARNING TABLES T_TO_HEADER_RECORD = TO_HEADER_TABLE EXCEPTIONS NO_RECORD_FOUND = 01 TO_DOESNOT_MATCH = 02 TO_CONFIRMED = 03.
RF_SW_LRF_WKQU_READ * CALL FUNCTION 'RF_SW_LRF_WKQU_READ' * EXPORTING * I_LGNUM = WHS_ID * I_DOCNUM = TO_ID * I_MODE = '6' * EXCEPTIONS * NO_ENTRY_FOUND = 1 * NO_PARAMETERS_FOUND = 2 * FUNCTION_NOT_EXIST = 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.