Skip to main content

Posts

Showing posts with the label physical stock

[SAP EWM] Difference between available stock and physical stock

 Available stock - This stock is not allocated or reserved to any delivery and ready for use. Physical stock - This stock is allocated to the delivery document but not yet shipped out from the warehouse. Note : Before physical inventory is initiated, try to close these open documents if possible. Else there is a chance of having an impact during goods issue in case of any stock changes

Logic to fetch physical stock in SAP EWM

We can use any of the below to fetch the physical stock of a material in EWM. CALL METHOD lo_stock->get_physical_stock                 EXPORTING                   it_matnr_r   = lt_matnr[]                   it_lgpla_r   = lt_lgpla[]                 IMPORTING                   et_stock_mon = DATA(lt_stock_mon). lo_mon_stock->get_physical_stock(       EXPORTING         iv_skip_resource = abap_true         iv_skip_tu       = abap_true         it_huident_r     = lt_huident_r         it_lgpla_r       = lt_lgpla_r       IMPORTING         et_stock_mon     = DAT...