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 - System will display the stock that is available in the warehouse. means, this will display stock which is assigned to the delivery document or Production warehouse request. So always order management team should consider stock in the available stock node while placing the orders as this is the stock which is available to use. 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...