RM07SIT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Display Stock in Transit You can use report RM07SIT to display issuing valuated stock in transit and receiving valuated stock in transit for processes with valuated stock in transit...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 RM07SIT into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
MB5SIT - Display Valuated GR Blocked Stock
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: SO_WERKS = Receiving Plant
Selection Text: SO_RESWK = Supplying Plant
Selection Text: SO_MATNR = Material
Selection Text: SO_LIFNR = Vendor
Selection Text: SO_EBELP = Item
Selection Text: SO_EBELN = Purchasing Document
Selection Text: SO_DELOU = Outbound Delivery
Selection Text: SO_DELIN = Inbound Delivery
Selection Text: SO_BUKRS = Company Code
Title: Display Stock in Transit
Text Symbol: 104 = PurchasingGroup
Text Symbol: 105 = Purch. Organization
Text Symbol: 106 = Purch. Doc.
Text Symbol: 107 = Item
Text Symbol: 108 = Purchase Order History with Origin Acceptance
Text Symbol: 109 = Acceptance Date
Text Symbol: 110 = Delivery Date
Text Symbol: 111 = Purchase Order History Without Origin Acceptance
Text Symbol: 112 = Delivery Date
Text Symbol: 113 = Release Date
Text Symbol: 120 = List Scope
Text Symbol: 130 = Layout
Text Symbol: 131 = Selection Variant
Text Symbol: 895 = Error during INSERT in table MMIM_RE_PRINT
Text Symbol: 103 = Vendors
Text Symbol: 001 = Database Selections
Text Symbol: 002 = Display Options
Text Symbol: 003 = Scope of List
Text Symbol: 004 = Layout
Text Symbol: 005 = Selection of Purchase Order Items
Text Symbol: 006 = Hierarchical Representation
Text Symbol: 007 = Non-Hierarchical Representation
Text Symbol: 008 = Database Selection: Issuing
Text Symbol: 009 = Database Selection: Receiving
Text Symbol: 010 = Date of Acceptance
Text Symbol: 011 = Delivery Date
Text Symbol: 012 = Release Date
Text Symbol: 013 = @0E\Q@ List Scope
INCLUDE RM07SITTOP.
INCLUDE RM07SITF01.
INCLUDE RM07SITALV.
No SAP DATABASE tables are accessed within this REPORT code!
MMIM_ENTRYCHECK_MAIN call function 'MMIM_ENTRYCHECK_MAIN' tables IT_MATNR = SO_MATNR IT_WERKS = SO_WERKS * assign supplier number and company code correctly " IT_BUKRS = SO_BUKRS " IT_LIFNR = SO_LIFNR . "
MB_SELECT_STOCK_IN_TRANSIT call function 'MB_SELECT_STOCK_IN_TRANSIT' exporting * I_LOEKZ = PA_LOEKZ I_WI_GM = PA_WI_GM "w. GM SIT
DDIF_DTEL_GET call function 'DDIF_DTEL_GET' " exporting " NAME = G_DDOBJNAME " STATE = 'A' " LANGU = SY-LANGU " importing " DD04V_WA = G_DD04V_WA " exceptions " others = 1. "
DDIF_DTEL_GET call function 'DDIF_DTEL_GET' exporting NAME = G_DDOBJNAME STATE = 'A' LANGU = SY-LANGU importing DD04V_WA = G_DD04V_WA.
REUSE_ALV_VARIANT_DEFAULT_GET call function 'REUSE_ALV_VARIANT_DEFAULT_GET' exporting I_SAVE = 'A' changing CS_VARIANT = LS_VARIANT_DEF exceptions NOT_FOUND = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.