RLMOB001 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Move of Storage Unit You use this report to
If you would like to execute this report or see the full code listing simply enter RLMOB001 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
LM56 - Select by SU - Interleaving
LM09 - Put Away by Delivery ID
LM06 - Picking - by Delivery ID
LM05 - Picking by TO ID
LM03 - Put Away - by TO
LM02 - Select by SU -Put Away
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: Mobile Computing: Putaway/move by SU ID
Text Symbol: 002 = Quantity changed
Text Symbol: 003 = Item found
Text Symbol: 004 = Already counted
Text Symbol: 005 = Counted to zero
Text Symbol: 006 = Mixed pallet
Text Symbol: 007 = Partially counted
INCLUDE: RLMOBINC, INC_0103.
INCLUDE: RLMOBINC, INC_0103.
No SAP DATABASE tables are accessed within this REPORT code!
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING TCODE = sy-tcode EXCEPTIONS OK = 0 NOT_OK = 2 OTHERS = 3.
UPDATE_SCRSTACK_USING CALL FUNCTION 'UPDATE_SCRSTACK_USING' EXPORTING I_CURRENT_SCREEN = '0100' I_INT_TABLE_NAME = INT_TABLE_NAME I_SCRSTACK_INDEX = SCRSTACK_INDEX I_CURRENT_LINE = CURRENT_LINE IMPORTING O_INT_TABLE_NAME = INT_TABLE_NAME O_SCRSTACK_INDEX = SCRSTACK_INDEX O_CURRENT_LINE = CURRENT_LINE.
READ_LEANWM_STATUS CALL FUNCTION 'READ_LEANWM_STATUS' EXPORTING I_WHSE_ID = P_LGNUM IMPORTING O_IS_LEANWM = P_LEAN_WM_STATUS EXCEPTIONS NO_T340D_ENTRY = 1.
VERIFY_TO_FOR_MINWM CALL FUNCTION 'VERIFY_TO_FOR_MINWM' EXPORTING I_TOID = P_TOID TABLES T_SELECTED_ITEMS_TABLE = PT_SELECTED_ITEMS_TABLE EXCEPTIONS NOT_FOUND QTY_NOT_ENOUGH WRONG_BATCH.
SET_TODEST_FOR_MINWM CALL FUNCTION 'SET_TODEST_FOR_MINWM' EXPORTING I_TOID = P_TOID TABLES T_TO_ITEMS_TABLE = PT_SELECTED_ITEMS_TABLE EXCEPTIONS NOT_FOUND.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RLMOB001 - Mobile Computing: Putaway/move by SU ID RLMOB001 - Mobile Computing: Putaway/move by SU ID RLMIGR06 - Display / Change Sequential File (Structure LDK31) RLMIGR06 - Display / Change Sequential File (Structure LDK31) RLMIGR05 - Display / Change Sequential File (Structure LDK30) RLMIGR05 - Display / Change Sequential File (Structure LDK30)