Inventory Management, process stock in Quality.

Hi,
I am working in WM making the inventory process however I receipt an error when I trying to execute the LI20. The transaction gives this error:
LI20:  No destination storage bin to be found in storage type 999
This error appear when there are a material in quality stock. After release the sock by QA11, it is possible to make the movement to storage type 999. My question is if is it possible to make the inventory for stock in quality. I think it is not possible to move the stock when it is in Quality.
Thank you and best regards.

Hi,
Thank you for the replay.
I have already created the interim storage type 999, In fact the process works correctly after make the usage decision by QA11. My question is if it is possible make movements in WM for inventory like this when one of the materials in the storage type is in quality stock. Always give this error.
Thank you and best regards.

Similar Messages

  • Inventory management process key values plz

    Hi gurus,
    can anyone help me with the process key values
    in my update rules i have this for issues
    process keys= 100,101,104,105,106,110
    and for receipts 000,001,004,005,006,010
    what do they mean i am using the standard update rules
    its very urgent becoz i am getting the stock values wrong
    thanks and regards
    neelu

    hi Neel,
    check oss note 352344 - Process key + reversals in Inventory Management ?
    Symptom
    This note is a consulting note and describes the use of the process key (0PROCESSKEY) in Inventory Management (MSEG). It focusses on the way the system deals with reversed transactions for DataSources 2lis_40_s279 and 2lis_03_bf.
    To be able to use theses DataSources, you ABSOLUTELY MUST activate the transaction key generation (process key, PROCESSKEY) using Transaction MCB_ (from the OLTP IMG for BW: SBIW) (standard, retail or consumption goods).
    The following transaction keys are available
    (PROCESSKEY/Appl. Component/Description):
    000/MM        Misc. receipts
    001/MM        Goods receipt / vendor
    004/MM        Article transfer posting receipt
    005/MM        Stock correction inventory +
    006/MM        Stock correction other +
    007/IS-R      Receipt value-only article (single article
                  posting)
    010/MM        Receipt from stock transfer
    002/IS-R      Merchandise clearing receipt
    003/IS-R      GR from DC
    100/MM        Misc. issues
    101/MM        Returns / Vendor
    104/MM        Article transfer posting issue
    105/MM        Stock correction inventory -
    106/MM        Stock correction other -
    107/IS-R      Issue value-only article (single article
                  posting)
    110/MM        Issue from stock transfer
    102/IS-R      Merchandise clearing issue
    103/IS-R      GI from DC
    450/IS-R      Generic Article (not relevant)
    Remark: Transaction keys 002/003, 102/103 break down the core keys 010/110 in more detail with respect to retail processes. They are only available in an R/3 Retail.
    As you can see in the overview, the transaction keys can be divided according to receipts and issues in Inventory Management. Furthermore, the transaction keys are displayed according to reversed and regular transactions.
    A regular receipt has a debit/credit indicator "S" (SHKZG, 0DCINDIC), whereas a regular issue has a debit/credit indicator "H".
    For reverse transactions the opposite is true.
    Transaction                            D/C ind.   D/C ind.
                                            S          H
    RECEIPTS
    0 Misc. receipts                        regular    reversed
    1 Goods receipt / vendor               regular    reversed
    2 Merchandise clearing receipt        regular    reversed
    3 GR from DC                            regular    reversed
    4 Article transfer posting receipt    regular    reversed
    5 Stock correction inventory +        regular    reversed
    6 Stock correction other +            regular    reversed
    7 Receipt value-only article          regular    reversed
    10 Receipt from stock transfer        regular    reversed
    ISSUES
    100 Misc. issues                       reversed   regular
    101 Returns / vendor                   reversed   regular
    102 Merchandise clearing issue        reversed   regular
    103 GI from DC                         reversed   regular
    104 Article transfer posting issue    reversed   regular
    105 Stock correction inventory -      reversed   regular
    106 Stock correction other -          reversed   regular
    107 Issue value-only article          reversed   regular
    110 Issue from stock transfer         reversed   regular
    Note: You can also recognize a reversal for DataSource 2lis_03_bf by means of the entry 0STORNO = ´X´. The fields that are marked with X in the table are then transferred with negative +/- sign. This was not the case with DataSource 2LIS_40_S279!!! In the case of DataSource 2LIS_40_S279 more logic was required in the BW update rules to make sure that key figures were updated correctly.
    Example:
    In the delivered InfoCubes 0CP_IC_C1 (CP) and 0RT_C01 (Retail), for example in key "Stock correction +", transaction keys 5 and 6 were grouped together. Furthermore, distinction is to be made between the different stock types. Depending on which stock types you want to distinguish between in different key figures, you must use a corresponding condition (IF statement) in the update rules in the BW.
    Example (pseudo source code):
    Updating Routine "stock adjustment +" for 2lis_02_bfIF ( STOCKCAT is initial ) AND         "Evaluated stocks ( PROCESSKEY = 5 OR PROCESSKEY = 6 )._  RESULT = TRANS_AMOUNT.  RETURNCODE = 0.    "Updating Key figureELSE.  RETURNCODE = 4.    "No Updating of KeyfigureENDIF.
    The pseudo source code for 2LIS_40_S279 read as follows:
    Updating Routine "stock adjustment +"  for 2lis_40_s279IF  ( STOCKCAT is initial ) AND         "Evaluated stocks  ( PROCESSKEY = 5 OR PROCESSKEY = 6 ).    IF DCINDIC = 'S'.      RESULT = TRANS_AMOUNT.    "regular    ELSE.      RESULT = -1 * TRANS_AMOUNT.    ENDIF.    RETURNCODE = 0.    "Updating Key figureELSE.     RETURNCODE = 4.    "No Updating of KeyfigureENDIF.
    Here, the debit/credit indicator must be checked in accordance with the table above. Transactions 5 and 6 are receipts in Inventory Management. As the debit/credit indicator is set to "S", it is a regular transaction whose value(TRANS_AMOUNT) is assigned to the key figure. In the other case (debit/credit indicator = "H") it is a reversal, that is, the transaction should reverse a transaction that has already been updated. For this, the value is multiplied by -1 so that a corresponding decrease/reduction of this key figure is achieved during the update of the key figure in the InfoCube.
    This logic is no longer required for the 2LIS_03_BF (see first pseudo source code), because the reversed quantity and values are automatically provided as negative with the help of the 0STORNO field.
    Using this DataSource 2LIS_03_BF, it is for example possible to create a key figure such as "Reversed receipts", which is not a part of the Business Content delivered. The following pseudo source code of an update routine makes this clear:
    Update routine "Reversed receipts"
    IF ( PROCESSKEY = 1 ) AND   (STORNO = ´X` )  "Reverse     RESULT = -1 * TRANS_AMOUNT.     RETURNCODE = 0.ELSE.     RETURNCODE = 4.      "no update of key figure!ENDIF.
    Note:  For DataSource 2LIS_40_S279 the pseudo source code read as follows:
    Update routine "Reversed receipts"
    for 2LIS_40_S279IF ( PROCESSKEY = 1 ) AND   ( DCINDIC = H )  "Reverse     RESULT = TRANS_AMOUNT.     RETURNCODE = 0.ELSE.   RETURNCODE = 4.      "no update of key figure!ENDIF.
    To be able to understand the overall scheme more comprehensively, you should have a look at the update rules of the Standard Business Content for retail or consumption goods (for example InfoCubes 0RT_C01 or 0CP_IC_C1).

  • Inventory Management - QM Stock

    Hi Gurus
    Have Few clarifications:-
    1) Doing the physical inventory for QM stock is advisable /mandatory (common business Impact)? if not explanation please...
    2) Generally Physical Inventory document does contain the single line .....how to accomadate in the same report if any withdrawls been made by lot wise.
    Appreciated your advise
    Rgds
    RG

    Hello RG,
    Generally we carry out physical inventory for auditing purposes. Also with help of physical inventory we can track balance in goods issue and goods reciept in am particular storage location / (storage type (in WM mamanged applications))
    It is recommended that physical inventory is carried out for unrestricted stock, because quality inspection stock can only be issued for sampling. We cannot issue quality inspection stock directly , indeed it needs to be first transfered to unrestricted stock for godds issue.
    General process hwich we follow for physical inventory is we create physical inventory document and then we do physical inventory count and then post the diffrences if any. (Recountingg is also applicable if differences are considerable)
    Now on point No. 2
    We can use posting block indicator while creating physical inventory document, which will restrict goods movement during physical inventory process.
    Posting block indicator is located in the HEADER of MI01 T-Code.
    The other method to carry out physical inventory is by FREEZE BOOK INVENTORY.
    With this goods movement are allowed during physical inventory process, but your book inventory (SAP) will not change.
    Br,
    Tushar

  • Inventory Management: Valuated Stock Value

    Hello Experts -
    We're using inventory management. We're just bringing in 2lis_03_bf which is the material movements and the standard price datasource.
    The plant valuated stock quantity and the valuated stock value are fine. The SLOC valuated stock quantity is fine. We're using the non-cumulative key figures for the valuated stock quantity and the valuated stock value. The SLOC valuated stock value isn't correct. So I just created a calculated key figure where I'm multiplying the quantity with the standard price.
    This works fine but when I look at the plant level and use this CKF, the aggregation threw me off. So I changed the aggregation on CKF at the Bex level.
    This works fine in dev and qa where I don't have too much of data. But as soon as I'm in in production, the query times out and gives me an error saying I reached the buffer limit.
    I was thinking of calculating the valuated stock value at the ETL layer but now I'm thinking that if I do that and the price of a material changes, I'll again have the same problem. I can't re-load every time a material price changes.
    Can someone please help me with this scenario?
    Thanks!
    Edited by: Siegfried Szameitat on Oct 29, 2008 9:30 AM
    do not offer points, it is against the rules

    Hi Syed,
    Deriving values by multipling with price also not correct. results will not match with R/3.
    Value Calculation
    In principle, values are updated with Plant, Material, and Stock Category only. Quantities are updated with these characteristics, as well as with Storage Location, Batch Number, and Stock Characteristic
    Check SAP Note 589024: Evaluations in BW with the Characteristics Storage Location and Stck Char.).
    Hope it Helps
    Srini
    Edited by: Siegfried Szameitat on Oct 28, 2008 4:17 PM

  • Inventory Management: Blocked stock coming up in OnHand

    Hello Experts -
    We've implemented 2LIS_03_BF for our inventory management reports.
    However, the OnHand quantity is also picking up Blocked quantity. I used the same code as given by SAP.
    For a material, the OnHand quantity is 13 in our reports when there's nothing under Unrestricted in MMBE. But there are 13 under Blocked.
    I looked at the code and the way the code is, it would pick up the Blocked quantity also.
    How do I resolve this issue?
    Thanks,
    Syed

    Hi,
    Which key figure are you using to get Stock on Hand?
    To get stock on hand we have to use 0TOTALSTCK - Quantity Total Stock and 0BLOCKEDSTK is for blocked stock
    These 2 are non-cumulative key figure.In update rules logic will be differentiated based on Stock type and stock category. For Blocked stock , stock type should be 'D' and stock category NA 'KR'.
    Please check update rules of BF.
    hope it helps...
    regards,
    Raju

  • Inventory Management : Total stock turnover

    Hello,
           Can anyone tell me the logic for calculating Total Stock turnover & the Average quantity of total stock in an Inventory Management scenario.
    Thanks & Regards
    Indraneel

    Hi
    1. Warehouse Inventory Turnover of Total Stock  Specifies how often average total stock has been consumed. (Total consumption quantity / Total stock- average quantity)
    2. Average Total Stock Warehouse Inventory Turnover Specifies how often average total stock has been consumed based upon the average total usage. (Average total consumption quantity / Total stock u2013 average quantity)
    refer this if u still have queries
    http://help.sap.com/saphelp_nw04/helpdata/en/06/8c6cfe0e67fd43a6cd3603d246ced7/frameset.htm
    hope it helps

  • Inventory management opening stock querry

    Hi,
    In the material movement report, it needs Opening stock, closing stock and the End Value.
    Can you please guide how I could Calculate.
    Though I calculate it by valuated stock and -1  day interval, but not getting proper value.
    Iz that necessery to append the field LABST(opening stock) and LBKUM (end Value),
    then remodeling the inventory cube 0ic_c03.
    So what will be the cmod include progame for that?
    regards,
    Balaram

    HI balaram,
    for enhancing the datasource refer the below How to - doc
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0eade6c-692a-2c10-ac86-80f6b2157791?QuickLink=index&overridelayout=true
    I have a note from the forums on the opening and Closing balance , may be you can give a try
    0VALSTCKQTY gives  Closing Balance.
    0VALSTCKQTY + Issues - Receipts = Opening Balance
    Regards,
    Sathya

  • Inventory Management _Total Stock is not showing

    Dear Expert,
    This is new Inventory development I have extracted the data from BX to 0CI_C03 and compressed the request without No marker check,
    And then loaded the BF with Initialization (without data transfer) and updated request with No marker check,
    I could find out the Receipt quantity values and issue quantity as 0(very less in Dev), Problem here-
    Total stock showing blank no values.
    Please suggest
    Many thanks in advance.
    Regards,

    Hi Kavitha,
    Please review the document Re-initialization of the Material Stocks/Movements cube (0IC_C03) with 2LIS_03_BF, 2LIS_03_BX and 2LIS_03_UM in BW 7.x. It contains a step-by-step guide incl. useful explanation and background information.
    Best regards,
    Sander

  • Manage stock qty. in Storage bin for Inventory management

    HI all,
    We are implemented Inventory Management (display stock of material for storage location).
    I want to know is there any method in Inventory Managment to Manage stock of specific material in bin also.
    Means User exactly should know the stock of specific material is located in Storage Bin.
    Please suggest me the hole process or any customization
    Regards,
    Vraj

    Hi V raj,
    I don't know whether i understood your question well. But i will answer in the way i understood.
    To serve your requirement you need to have a Warehouse management, means to have a smooth warehouse bin wise storage.
    But some companies are not willing to implement WM and they are finding a way with batch classification. They maintain batches for material and storage bin are maintain in a batch classification. So you can view it in MMBE also by going into the batch classification of the relevant batch.
    And if you want to have a detail report you can develop a simple report or a query to retrieve batch classification data.
    For batch classification activation:
    1. Material must maintain "Batch management" tick in Purchasing and storage plant data views
    2. Create a seperate class for this using CL02
    3  Create batch characteristic using CT04 (this is to maintain Storage Bin)
    4. Add classification view to each material and the relevant batch class.
    5. When you are doing the GR use "Batch" tab and "Classification" button to maintain relevant Storage bin data. (To update mass scale you can create a "Z" report getting help of a developer in your company)
    6. Now each batch you are maintained your storage bin view it trough MMBE (But only one batch classification) or in-house developed report ("Z") program
    Thanks & BR
    sandun

  • Analysis Process Designer and Inventory Management

    In the How to guide for Inventory Management it mentions that you can you can intialise stock in the Snap shot Cube using the Analysis Process Designer (APD).  Has anyone done this and if so can you explain how or outline some steps? Thanks

    Hallo,
    the APD does`nt be a useful tool for modeling a performant 
    data flow. A lot of SAP BW user think so.
    The performance problems are given by the ddic intern table, using to uploading the extracted data into the apd used wa_table and structures.
    To have the best performance on your scenario, please use the following scenario as possible.
    Step 1.
    upload the extracted data from the psa into a data layer
    there you can reduce and harmonize the data by using a transactional ods
    Step 2.
    build a infoset that joins the data
    Step 3.
    build one query to reducing data and make two copies of ist
    Step 4.
    build a useful data mining model
    Step 5.
    upload the results of the data mining model into a transactional ods
    Step 6.
    link the uploaded data into a infoset ore write back into a standard ods
    Step 7.
    query the data
    If you use this scenario you have a lot of benefits. Better performance, better quality of persistent data and actual and traininged data.
    The recommend next step (if you want a alerting) is to build a reporting agent report - if you have usefull processes in  the query.
    There are a workshop for Data mining and APD, named BW380.
    I hope I helped you.
    Otherwise give me a message.
    [email protected]

  • Costing  Process for Oracle EBS-R12 Inventory Management System.

    My clients are going to used EBS R12 for inventory and Purchasing Inventory Organization is not process Enable. Business type like Just import finished goods By (LC) & maintain stock status.
    My clients wants to maintain stock status by Average Costing. In which table I can get information of costing & how can I setup costing process?
    Thanks
    Omar

    I need to list of APIs for inventory module specially for quality.List of APIs can be found in iREP website.
    iREP
    http://irep.oracle.com/index.html
    In R12, Oracle Integration Repository is shipped as part of the E-Business Suite (as a responsibility).
    Oracle Inventory Management Application Program Interface ( APIs) [ID 729998.1]
    Thanks,
    Hussein

  • Consignment Stock for Inventory Management

    Posting as a new thread...
    I have installed and loaded the Inventory Management Cube 0IC_03 in our development and quality systems.  During testing we have found just one problem with Consignment Stock.  The Stock Initialization (2LIS_03_BX) does not bring in an initial quantity (BWMNG) for any material flagged as a Consignment Stock (Stock Category = K, field BSTTYP). 
    My question - is there a good reason for this or is this a problem?  It causes a problem with reporting, because balances are now off.  Do I need to change how reporting is done for Consignment?
    It seems to me that the BX extractor should be picking up the initial balance.  I am trying to debug the code, but am getting a headache!
    Any help would be appreciated!
    Yes, I have reviewed the "How To..." documentation, but don't see anything regarding consignment stock.
    We are at BW 3.0b Support Pack 25.
    Lisa.

    Thanks, Ken.   I don't know that this note actually helped me, but I did another review of OSS notes.  We have applied 3 of them (726485, 756151, 762219) and our consignment issue has been resolved.
    Thanks for pointing me back in the right direction!
    Lisa.

  • Quality Management Process.

    Hi,
    I am not aware of quality management process. Can someone give me this kind of process?
    Thanks a lot.

    Hi,
    Following is the process of Quality Management -
    1)Master Data maintenance -
    - Maintain material master QM view with required inspection types as 01/0101/0130 for procurement, 03/04 for in process, 10/11/12 for delivery. Assign characteristics as per requirement (post to inspection stock, check characteristics, automatic assignement etc) (Transaction MM01 / MM02).
    - Maintain sampling scheme (transaction QDP1 / QDP2) & sampling procedure (Transaction QDV1 / QDV2)
    - Maintain inspection method (QS31)
    - Maintain catalogue (Transaction QS31 for code group) & QS41 for selected set).
    - Maintain master inspection characteristics (Transaction QS21).
    - Maintain Quality Info Record for Vendor (Transaction QI01) & for Customer (Transaction QV51)
    - Maintain Inspection Plan (Transaction - QP01)
    - Maintain inspection operation & inspection characteristics for the same in routing for production (Transaction CA01).
    2) Process for Procurement -
    - Create purchase order (Transaction ME21N). The quality master data is copied to purchase order (like stock type, certificate required).
    - If required create source inspection lot manually (transaction QI07)
    - Carry out source inspection & post the source inspection results (Transaction QE51N). Take usage decision for the source inspection results (Transaction QA11).
    - Post GRN (Transaction MIGO).
    - Inspection lot is created & stock posted to inspection depending on the settings in material master & quality info record).
    - Check the material & post the inspection results (Transaction - QE51N). Take usage decision & post the stock to required stock type (Transaction QA11).
    3) Process for Inprocess inspection -
    - Create &release Production order (Transaction - CO01)
    - Post the operation results (Transaction - CO11N)
    - Post the quality inspection results (Transaction QE51N)
    - Take usage decision (Transaction - QA11)
    - Confirm Production Order
    4) Process for Sales & Distribution -
    - Create Sale Order (Tranaction - VA01)
    - Create delivery (transaction - VL01N) when material is ready
    - Inspection lot is generated. Post inspection results (QE51N)
    - Take usage decision (QA11)
    - Post the goods issue (VL02N)
    Hope this clears your query.
    Regards.
    Prashant

  • Stock Valuation - Inventory Management Cube

    Dear Sap Gurus,
    We have implemented the Inventory Management Cube in BW.
    Quantities are correct, but we have difference on the stock valuation.
    For some material stock value are correct, for some other they are not correct.
    A saw a lot of OSS notes and how to on this subject, I am trying to solve this issue using these documents, but based on your experience could you explain me how you solved this issue ????
    Thanks,

    Hi
    Did you follow the correct steps?
    Initialisation of BX data in the first step.(Loading of Opening Stock)
    Then The request in which the opening stock was loaded must always be
    compressed with a marker update
    Init load of BF And UM in the second step
    The request in which the historical material documents were contained
    must always be compressed without a marker update and
    Successive delta uploads must always be compressed with marker
    updates
    Check this whether you have done this or not.
    Because of missing the steps here also would give you wrong values,
    Regards
    Ram

  • Can i transfer stock with transfer order in Inventory management?

    Can i transfer stock with transfer order in Inventory management between two storage locations in the same plant?

    I hope you are referring a transfer order and the transfer between two storage locations connected to the same warehouse, and just not doing movement at IM level with a transfer order.
    But, if you are referring to making a bin-bin transfer within the warehosue and you want to influence the storage location to storage location automatically, yes, you can do this. You should use 'storage location control' configuration under WM-IM interface to drive this. Essentially, you need to maintain the warehouse, destiantion storage type, plant, destination storage location and movement type 311. When you perform the transfer order confirmation to move inventory from a storage type (inventory is under source storage location) to the destination storage type (per the configuration setting) there will be an automatic transfer posting made to move inventory at IM level from source to desintation storage location.

Maybe you are looking for