Adding Quality blocked stock in to warehouse stock

Hi All
I cannot find a way of adding Quality Restricted stock in to our warehouse in one movement.
Normally we use MB1A mvt 222 to add returned unused stock in to the warehouse with reference to a WBS. Then we use MB1B mvt 322 or 344 to quality restrict or block the stock.
I now have a need to return the stock in to the warehouse and quality restrict or block at the same time. I do not want to return the materials as unrestricted stock and then quality restrict/block them.
Any help would be greatly appreciated
Thanks in advance
Darren

You can achieve this with creating "scope of planning" in OM0E or special procurement keys
[MRP multi plants|http://help.sap.com/saphelp_46c/helpdata/en/f4/7d2d4d44af11d182b40000e829fbfe/content.htm]

Similar Messages

  • UD Done....Still stock in Quality Block....

    Gurus
    I have done the UD for a material / batch but still stock is reflecting Quality Block (MMBE) against this
    Status for that inspection lot is
    UD PASG CCTD CALC SKIP ICST ICCO QLUP STUP
    Can anyonet tell where am i missing?
    Rgds

    Hello Vicky,
    the note that Craig mentioned is [48815|https://service.sap.com/sap/support/notes/48815] in which you can find the Report ZQEVAC20 which you can use to check and correct inconsistent stock.
    Although according to the status information above I am missing SPCO for the completion of stock postings, could you check in QA13 if the entire stock has been posted.
    You could also check the Table QALT to see if there are any partial lots associated with the named lot.
    Regards,
    Isabelle
    Edited by: Isabelle Britten on Jul 24, 2008 9:52 AM

  • In warehouse management how to post stock in the warehouse by using physica

    hi
    in warehouse management how to post stock in the warehouse by using physical inventory method
    can anyone tell me the process in detail
    thanksin advance.

    HI ,
    In Ware house management you can block the stock for Physical Inventory purpose. You cannot post the stock to the warehouse using Physical Invenory.
    If there is a count going on so the concerned Warehouse bin is to be blocked during Inventory so that no further goods movement is possible during that period.
    Once the Physical Inventory ids done the block can be released so that the movement can again happen.
    The Inventory mangement initiates the transfer requirement. This transfer requirement is used for creating the transfer orders. The transfer order confirmation is done then which actually places the stock in the concerned bin mentioned in the order.
    The stock in WM can be checked in LX24/ LX26 which is same as theat of MMBE of MM.
    Hope this helps.
    Regards,
    Prasanna
    Award pls if helpful.

  • Need to include Warehouse stock into MRP

    Hi Gurus,
    We have an issue to include warehouse stock into MRP.
    This is because We have stock in warehouse to cover the demand but the MRP creates line against the VSF.
    Please help me to resolve this.
    Is there any customizing chnages there for including the warehouse stock.
    Thanks in advance.
    Naveen.

    Dear Naveen,
    1) Normally we call un-restricted use stock as ware house stock.
    2) you can check the same in MMBE
    3) this stock is default considered by MRP in Net Req Calculation & Create Procurement Praposals
    4) Coming to Block stock, if u want MRP to consider this stock then
    5) Then Just Mark as Tick for Blocked stock in OPPQ & save
    6) Then Run MRP system Consider block stock also in Net Req Calculation
    Regards
    kumar

  • 'In Stock' quantities by warehouse in Sales Order

    Hello All
    Can anyone advise if there is anyway that a user can view the 'in-stock' quantity per warehouse ina sales order. Currently the 'in-stock' column is totalling all stock across all warehouses, but my customer would like to see the quantity in one specific warehouse. Is this possible as standard, or would I need to do a formatted search?
    Thanks
    Stuart

    Now sorted m yself

  • FM for calculating stock on a warehouse number

    Hi all
       Anybody knows a FM for calculating a material stock on a warehouse number? I need a FM which works similar to trx LS26, i need the stock sorted by storage type.
    Thanks and regards

    I found these FMS` ..May be it helps you or give you some guide lines..
    /SAPNEA/SMAPI_STOCK_GETLIST    Get stock list for warehouse and van       
    CBIH_LB11_QTY_GET_STOCK_TOTAL  EHS: User Exit - Determine Warehouse Stock f
    L2018                          BAPI for Bus.Object WarehouseTransOrder    
    L3016                          BAPI for Business Object Warehouse Stock                                                                               
    Thanks

  • Display Warehouse Stock in SAP EWM

    Dear Experts,
    Kindly let me know what is the transaction code to display Warehouse Stock in SAP EWM.
    Thanks,
    Shetty

    Hi,
    Indeed, the Warehouse monitor pretty much gives you all the information that you need. Do not forget that from time to time you need to update the stock data from the EWM to the ERP using the transaction /n/SCWM/ERP_STOCKCHECK - Stock Comparison ERP in order for the monitor from the EWM to be conclusive with the valuated data form ERP.
    All the best,
    Claudiu Maxim

  • Query for item warehouses stock in a row

    hi all,
    How to retreive item warehouse stock in a row using query ?
    SELECT T0.ItemCode, T1.ItemName, T2.ItmsGrpNam,
    (Select WhsCode from OITW Where
    WhsCode=T0.WhsCode and ItemCode=T0.ItemCode) as 'Wh',
    (Select OnHand From OITW Where
    Whscode = T0.WhsCode and Itemcode=T0.ItemCode) as 'Whstck'
    FROM OITW T0  INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode INNER JOIN OITB T2 ON T1.ItmsGrpCod = T2.ItmsGrpCod
    WHERE T0.ItemCode NOT IN 'a-item'AND
    T2.ItmsGrpNam LIKE '%%test%%'
    and T0.Onhand > 0
    ORDER BY T0.ItemCode
    Anyone correct query so that it will retrieve item warehouse stock in a single row.
    Thanks
    Jeyakanthan

    I have tested your query, the result is just like you wish. The code can be simplified to:
    SELECT T0.ItemCode, T1.ItemName, T2.ItmsGrpNam, T0.WhsCode as 'Wh',T0.OnHand as 'Whstck'
    FROM DBO.OITW T0 
    INNER JOIN DBO.OITM T1 ON T0.ItemCode = T1.ItemCode
    INNER JOIN DBO.OITB T2 ON T1.ItmsGrpCod = T2.ItmsGrpCod
    WHERE T0.ItemCode NOT IN ('a-item') AND T2.ItmsGrpNam LIKE '%[%test%]%'
    and T0.Onhand > 0
    ORDER BY T0.ItemCode, T0.WhsCode
    If you want each item has only one row and warehouse on hand column-wised, you have to use as much as SELECT for each column in according to your number of warehouses. It would be look like this one:
    SELECT T0.ItemCode, T0.ItemName, T1.ItmsGrpNam,
    (SELECT OnHand FROM OITW WHERE ItemCode = T0.ItemCode AND WhsCode Like 'Whs1') AS 'Whs1 On Hand' ,
    (SELECT OnHand FROM OITW WHERE ItemCode = T0.ItemCode AND WhsCode Like 'Whs2') AS 'Whs2 On Hand' ,
    (SELECT OnHand FROM OITW WHERE ItemCode = T0.ItemCode AND WhsCode Like 'Whs3') AS 'Whs3 On Hand'
    FROM DBO.OITM T0 
    INNER JOIN DBO.OITB T1 ON T1.ItmsGrpCod = T0.ItmsGrpCod
    WHERE T0.ItemCode NOT IN ('a-item') AND T1.ItmsGrpNam LIKE '%[%test%]%'
    and T0.Onhand > 0
    ORDER BY T0.ItemCode
    Thanks,
    Gordon

  • Transaction code to check warehouse stock with storage section combination

    Hello Gentalemen,
      Is there any transaction code to check the warehouse stock with combination of storage section in Warehouse Management?
        Please let me know.
    Thanks

    You can use LX02 or LX03. In the tool bar click the third button which will give you the dynamic inputs from LDB(click the storage bin drop down and click on storage section). You can provide the storage section there.
    Kesav

  • 944 warehouse stock transfer

    Hi,
    Can anybody please tell me for "944: warehouse stock transfer", which Idoc type, Message type we can use to post in to SAP please (Inbound).
    Thanks with regards,
    Rao.

    Hi
    This Standard contains the format and establishes the data contents of the Warehouse Stock Transfer Receipt Advice Transaction Set (944) for use within the context of an Electronic Data Interchange (EDI) environment. The transaction set can be used by a receiving location to advise a depositor or an agent of the depositor that a transfer shipment has been received. This transaction set provides the depositor or the depositor's agent with detail information concerning product that has been received.       <a href="http://www.rapidnet.org/Portals/9/Stds_Tools/archives/s9444010.pdf">RAPID 944 Standard (4010 - February 1999)</a>
    <a href="http://www.rapidnet.org/Portals/9/Stds_Tools/archives/g94x4010.pdf">Guidelines for Warehouse Transaction Sets</a>

  • Duty paid customs warehouse stock

    Can someone explain what duty paid customs warehouse stock is?  Is this a concept unique to GTS?
    In the "real world" once the duty is paid, the stock is no longer relevant to the customs warehouse. 
    GTS is often making errors in designating duty unpaid stock as duty paid customs warehouse stock. What's the best way to address this?

    Hi,
    for GTS the only relevant information for inventory/warehouse management is the customs status of the goods,
    what means DUTY PAID or DUTY UNPAID.
    DUTY PAID menas, you have already declared the goods for free circulation and customs has not longer any interst in this godds.
    For DUTY UNPAID means, that these goods are under customs control, and import duties, and  taxaes have not been paid for these goods. This is typically for godds in a customs warehouse,e.g. type D in Europe the case.
    You can also store duty unpaid and duty paid goods in one warehouse, but you need to know how many goods are in which status - and this information is hold by GTS.
    hope that helps,
    regards,
    Ralf

  • Warehouse Stock Analytics u0096 Inventory Turnover

    Has anyone experienced any problems with the (Business Content provided) BEx query 0IC_C03_Q0024 (Warehouse Stock Analytics – Inventory Turnover), defined on the 0IC_C03 (Material Stocks/Movements) InfoCube?
    Apparently the used BEx variable 0CYEAR-1 (Current Calendar Year - 1) is not defined correctly. When the query is run, a BRAIN284 (BRAIN 284) error message is output:
    <i>Variable 0CYEAR-1 has the processing type "Manual Input/Default Value".
    However, it is not input ready, and no default value has been specified.</i>
    Does anyone know what behaviour this query should have, so that I can implement a manual correction?
    Thanks in advance, Davide

    Hi,
    I'm also having the same problem. When I run the query in the Bex Analyzer, there are error messages indicates that the query is fail to load.
    One of the error message is:
    <b><i> Diagnosis
    Variable 0P_REPA1 has the processing type "Manual Input/Default Value". However, it is not input ready, and no default value has been specified.
    System Response
    Procedure
    Make the variable input ready or specify a default value.
    Procedure for System Administration</i></b>
    Can I know how to install the variable again fromt the content?
    Cheers,
    Alwen

  • Warehouse Stock

    Hi Frds
    What is the table and field name of the Warehouse Stock of Material ?
    Thanks
    Pari

    Hi,
    check this MLGN table .
    rgds
    vijay

  • Minimum stock level per warehouse and MRP

    Hello experts
    We have tested minimum stock level per warehouse and try to use it for the MRP but it seems that the MRP uses for a specific warehouse the consolidated minimum level
    For example
    WSE 1 minimum stock level 10
    WSE 2 minimum stock level 5
    MRP runs for WSE 2 recommandation is calculated based on 15 pieces of minimum stock level (WSE 1+2)
    Could you please tell me if this is normal behavior and the use of minimum stock level per warehouse is not possible ?

    Hi.....
    SAP gives recomendation on Overall stock basis and not on Minimum Inventory of Particular Warehouse.
    It is standard behavior. But SAP should think of it as it is not right recomendation if someone tries to view it as per warehouse.......
    Regards,
    Rahul

  • Warehouse stock with production date of batch

    Hello,
    Can somebody tell me any report where user can see warehouse stocks along with production date of a batch. User wants to do FIFO while doing inventory transactions. And user wants to first transfer oldest produced batch first.
    Please suggest.

    Hi Sudhir,
    Thanks for your response. LX02 shows only GR date for quant- for certain quant GR date is updated as todays date if some stock transaction is done for that quant.
    User wants report
    He will then be able to move oldest stock based on production date.  Example quant has GR date as 24th Feb 2011. But its production date is 24th Feb 2010. So ideally this stock should be moved in FIFO method based on production date.
    To summarise, I require standard SAP report  stock in LX02 as well as production date/receiving date of a batch in quant.

Maybe you are looking for

  • About to use my tree for firewood

    I was wondering if someone could maybe clue me into a problem that I am having with my DefaultMutableTree. See, I call a recursive method to get the file system of the computer, which is what is added to the tree. So the user is looking at a tree str

  • When exporting, the footage in the Input and output monitor is not showing up.

    I use Premiere Pro CS4. When I export my project and I choose the formats and options, they all work fine and it will export fine, but my footage does not show up in the input or output source montior. Thanks for your time

  • PI 7.1 JMS Adapter Correlation ID problem

    Hi, I try to get rid of the Correlation ID generated by the JMS Adapter (receiver). In the adapter configuration, processing tab, I choose Set Correlation ID To: NO VALUE. But still, in the message's details I can see a Correlation ID like this: 6265

  • Class Cast Exception in sessiong bean

    Hi, I have created a session in servlet, then I forward to a JSP to display the bean. It results an error said that ClassCastException. Through my study, I found that the problem is there are different Class Loader, hence I disable the package in my

  • Firefox recompile Guide, out of date?

    Today i read the Firefox recompile guide to enable offical branding. I recognized some major differences to actual source files and PKGBUILD. ie. you should replace convert $srcdir/mozilla/browser/app/default.xpm $pkgdir/usr/share/pixmaps/firefox.png