Zero stock in LS24

Dear Friends,
Currently there is no stock available for a particular batch and material in the warehouse. All the material stock has been issued.
But in the transaction LS24, the system will display the "available stock"  as zero.
My question is that, when there is no stock available, this particular  batch number has to completely disappear from the LS24 transaction, but why does this appear showing the stock as zero.
Waiting for your feedback
Regards,
Sampath

Hi Sampath,
Looking at the description, I'm suspecting that the Quant involved still having 'balance' quantity. Can you please display the 'Quant' for this batch in LS24, and then see if all the following fields are 0 :
Total stock (LQUA-GESME)
Avail.stock (LQUA-VERME) 
Stock for putaway (LQUA-EINME)
Pick quantity (LQUA-AUSME)
Anyway you can also check if any inconsistency between LTAP & LQUA by running report RLQCHECK in SE38.

Similar Messages

  • Items with  zero stock quantity show negative stock value in Stock reports

    When running Stock reports for controlling the stock value towards the GL accounts, some items appear with zero stock quantity, but the report still shows a stock value  (negative value in my case)
    How can this happen, and how can I correct this situation ?
    System parameters are :   negative stock is not allowed, Items with zero cost price not allowed. On item level average cost price method is used.
    P.K.Johnsen

    Hi Johnsen,
    I believe you have checked the" Manage Inventory by warehouse". I have noticed this issue in SAP B1 2005B but this is rectified in 2007B. The system behaves in this way as the system maintains item cost for the item for all warehouses and even if the stock is not present in the warehouse, the system would still show you a value for the same. Hope this helps. please search the forum. You'll find related threads.
    Thanks,
    Joseph

  • Stock transfer with zero stock

    Hi all,
    Stock tranfer is happening with zero stock.
    Is there any way to avoid this ?
    Thanks
    Jeyakanthan

    Hi Jeyakanthan,
    If  you have already selected 'Block below negative quantity', please check Item Master Data ->Stock Tab: checkbox for
    'Manage Stock by Warehouse' is ticked or not.
    With it ticked, the system considers the stock in each warehouse and none of the warehouses can go into negative stock for this item.
    If this box is not ticked, the system calculates the overall stock availability and e.g. if you do a stock transfer for an item from  warehouse A to warehouse B, you will never go into negative stock in an overall view for this particular item although it is negative in warehouse A.
    To sum up, you need to check the box "Manage Inventory by Warehouse" in the "Item Master Data"  and at the same time "Block below negative quantity" checkbox in the Document Settings in order to block negative quantity by warehouse.
    I hope this answers your question.
    Regards,
    Ivy Zhang
    SAP Business One Forums Team

  • Zero stock check

    Hi All
    Please find my requirement below:
    I have created a program to confirm the TO. For this I'm calling L_TO_CONFIRM FM to confirm TO. But my client asks to perform Zero Stock Check, as in LT12, in my program befor TO confirm. Please tell me how to do this?
    And, the condition for this is I need to check if the Bin doesn't have any more quantities. For this, I'm asked to activate this check when the TO quantity and BIN quantity is equal. Please tell me how to check this as well with Technical field names.
    Thanks in advance.
    Skysen

    Hi,
    you can get list of all quants for selected material with BAPI BAPI_WHSE_STOCK_GET_LIST. BAPI BAPI_WHSE_STOCK_GET_DETAIL will give you an information about quant. You should be able to do zero stock check from data retrieved by these two BAPIs. Another way is to debug LT12 to figure out how SAP does zero stock check.
    Cheers

  • Zero Stock Check Issue

    Bins are getting blocked for putaway due to Zero Stock Check.
    We have configured the system to do zero stock check. However, this blocks the bin for stock placement & removal till the TO is confirmed.
    There could be a significant time lag between the TO creation and confirmation.
    While the Bin is blocked for putaway , the receiving dock cannot putaway goods to the bin.
    This is creating issues with the inventory movements around the WH.
    Any ideas ?

    Hi,
    In your storage type customization, the option 'Block upon stock plcmt' would have been set to 1, which blocks entire bin against goods movements. try set it to 2, it should work.

  • Zero stock query

    hi experts,
    how can i make a query that will display all items with zero stock?
    I have tried linking OITM and OITW('manage by warehouse' is selected), and using the 'onhand' attribute, but with no success. 
    thanks
    Michael

    hi all,
    thank you for your prompt answers.  However this not what i am really looking for.  I have already tried all the proposed solutions.
    I need a query that will give all items with a sum of zero stock from all warehouses. 
    The reason is that i need to update each item so that it does not require the use of 'batches' anymore.  And to do this, i need to be able to identify all items with zero stock from all warehouses, so that i can update them.
    thanks
    Michael

  • Delete batches with zero stock from dropdown list

    Hi All,
    I have a requirement on batch stock materials.The exist program displaying multiple batches for material plant with stock and without stock in the drop down list for MCH1 table in the pop up window.
    Now i would need to delete the batches with zero stock from drop down list.I could find the data for stock and non stock from MCHB table .
    Any idea how to delete the entry of non stock batches from drop down list
    Regards,
    Reddy

    Hi All,
    The logic has already been implemented to for drop down list for all batches(with or without stock) for material plant.the follwing code has been written for the same.
    Any idea how to delete the entry for non stck baches from the drop down list.
    this is the code
      SET PARAMETER ID 'MAT' FIELD help_lips-matnr.
       SET PARAMETER ID 'WRK' FIELD help_lips-werks.
      Export parameters to memory to enable search help via classes
       CLEAR dseltab.
       REFRESH dseltab.
       dseltab-fldname = 'MANDT'.
       MOVE sy-mandt TO dseltab-fldinh.
       APPEND dseltab.
       dseltab-fldname = 'MATNR'.
       MOVE help_lips-matnr TO dseltab-fldinh.
       APPEND dseltab.
       dseltab-fldname = 'WERKS'.
       MOVE help_lips-werks TO dseltab-fldinh.
       APPEND dseltab.
       dseltab-fldname = 'CHARG'.
       MOVE help_lips-charg TO dseltab-fldinh.
       APPEND dseltab.
       EXPORT dseltab TO MEMORY ID 'DSELTAB'.
      Get description for search help
       mc_object = 'MCH1'.
       lf_shlpname = mc_object.
       CALL FUNCTION 'F4IF_GET_SHLP_DESCR'
         EXPORTING
           shlpname = lf_shlpname
           shlptype = 'SH'
         IMPORTING
           shlp     = lx_shlp
         EXCEPTIONS
           OTHERS   = 1.
      Enable value copy from search help to dynpro field
       READ TABLE lx_shlp-interface INTO ls_interface
                                    WITH KEY shlpfield = 'CHARG'.
       ls_interface-valfield = 'X'.
       MODIFY lx_shlp-interface FROM ls_interface INDEX sy-tabix.
      Start search help dialog
       CALL FUNCTION 'F4IF_START_VALUE_REQUEST'
         EXPORTING
           shlp          = lx_shlp
         TABLES
           return_values = lt_retvalues
         EXCEPTIONS
           OTHERS        = 1.
       IF sy-subrc EQ 0.
         READ TABLE lt_retvalues INTO ls_retvalue
                                 WITH KEY fieldname = 'CHARG'.
         IF sy-subrc EQ 0.
           lips-charg = ls_retvalue-fieldval.
           gs_lips-charg = ls_retvalue-fieldval.
         ENDIF.
       ENDIF.
    Regards
    Reddy

  • Zero stock pop up

    Dear experts,
    I have activated zero stock check for a storage type (V_T331_C KZNKO).
    During TO confirmation (LT12), when I  click the button ZERO STOCK CHECK, i get a pop-up and i click CONFIRM EMPTY BIN.
    Then i get this error" Act.quantities and diff.quantities are not target quantities. Check entry. Message no. L3025"
    Any ideas or advice?

    Hi guest,
    See for this approach you need to know the expected messages which you want to display in more elaborated form. like the errors which occurs frequently can be displayed in more generic form.
    When you catch the same error message you can replace the same in your program with a new message. For this approach you need to know what all messages you need to change.
    For the second approach, where you can create a table there you can have the fields you have mentioned and in that table you can store the text of standard SAP message and the custom message. Then by fetching data from this table you can replace standard message by custom message.
    Remember one thing that the standard SAP message will contain some fixed text along with some values. So remember that you need to store only the text which will remain same.
    Hope this clarifies you a bit on your approach.
    Thanks,
    Swamy H P

  • No Inventory record generated for zero stock check

    Hi All,
    The issue is no inventory record created for zero stock check.
    prerequisite:
    1. I activated the zero stock  check for the storage type in warehouse,
    2. I also activate the PZ inventory method for zero stock check for this storage type.
    3. storage type is under with 'P -Storage unit type" putaway strategy.
    Steps:
    1. First time I moved the last SU out of the bin, it generated a physical inventory when creating the TO.
        we can go to the item - other data of the TO, and found that hte inventory record created with "PN" inventory method. and the zero stock check indicator is 1.
    2. Then I continued to confirmed the TO with empty bin check. the invetory record was cleared when confirmed the TO.
    3. Then I moved that SU back to the same bin.  (only has one SU in the bin)
    4. Try to create the TO to move the SU out, the TO created, and if we go to TO item - other data, the Zero stock check indicator is 1, but this time, it doesn't create any inventory record?
    Can anyone tell me why it didn't create the inventory record in the 2nd TO?
    Thanks,

    i tried to replicate the case and got the same result that only first time inventory documen was created.
    seems its standard behaviour and if the inventory is already done for the bin then it does not carry out again for the same bin automatically as it did earlier.

  • Continuous inventory based on zero stock check doesn't work

    Hello!
    The contiunous inventory based on zero stock check doesn't work.
    The problem is that I ticked both signs in the customizing for zero
    stock check and it doesn't work. The box for zero stock check
    appears, but if you check afterwards the inventory with LX25 nothing
    is done.
    Could the problem be that I my inventory method is PZ - continuous
    inventory?
    Help urgently needed!
    Thanks

    Now I can see the problem - fault of a beginner!
    I have not created any inventory document including this storage bins.
    Now my question is, how to create this?
    I have tried to create one for the continuous inventory stock, but I'm not able
    to book any goods movement on it because it is locked.
    Please help me how to create the inventory document, so that
    the continuous inventory based on zero stock check works.
    Kind regards,
    Barbara

  • Short Pick & Zero Stock Check

    Hello,
    Can any one please brief me on Short Picking & Zero Stock Check...How do we do in SAP?....Are they two differenet?...Also How they are related to Backorder and a Partial Order in SAP.

    Friends,
    Can any one help me on the above?.....

  • Manual Zero Stock Check during TO confirmation in SAP 5.0

    Dear All,
    1.We have a requirement to do zero stock check for SU managed Bulk Storage type during TO confirmation. Is there any exit/enhancement which can help us achieve this? We hve used FM L_TA_QUITTIEREN for TO confirmation for bulk storage type.
    2. We also want to do manual zero stock check during TO confirmation as we have same source SU in multiple TO line item in a TO. SAP note 22067 only says to do manual zero stock for this type of scenario. We are able to request empty bin in manual zero stock check. But unable to post any difference. Is there any exit or enhancement which will enable us to post difference during manual zero stock check?
    Best Regards
    Dinesh

    Solved Probelm on my own

  • Zero Stock Check w/ SU

    Hi all, I'm activating zero stock check for a SU-Managed storage type, but it seems not to work.
    - I've created TO from LT09 removing the whole storage unit;
    - I receive warning message (bin goes empty)
    - While confirming (LT12) I'm asked to confirm zero stock; problem occurs anytime I try to post a remaining QTY. I receive error "No remaining quantity allowed in bin after storage unit transfer" L3423
    Looking on OSS or Internet I have'nt found any constraint in activating such check in a SU-managed storage type...
    Do anybody can help me to clarify this topic?
    Thanks.

    Hi,
    Perhaps what you would need to do is:
    - Assign a pick HU to the TO you created.
    - Confirm TO (LT12).
    - Quantity you created in TO is picked from Source SU and then moved to new HU when you confirming the TO.
    - Zero Stock Check is then raised.
    - Remaining quantity is calculated for Source SU.
    Hope the above helps.
    Thanks.

  • ZERO STOCK CHECK FUNCTIONALITY

    HI all,
    I want to have some clarification regarding zero stock check in WM. what should i fill in the "remaining quantity" in the ZERO stock check while confirming a TO in the below 3 scenarios.
    1. TO quantity:- 100
    System quantity:-100
    Actual physical quantity:-100
    2. TO quantity:- 100
    System quantity:-100
    Actual physical quantity:-90
    3. TO quantity:- 100
    System quantity:-100
    Actual physical quantity:-110
    Thanks
    Raj kiran

    Hi Raj,
    The accuracy of the stock balance in a warehouse can be guaranteed not only by taking inventory. There should also be the capability of carrying out corrections to stock balances on a regular basis. The monitoring, checking, and correcting of the stock balance when material is removed from stock is very important, especially in a warehouse with partial issue. In WM the task that performs this function is known as zero stock check.
    http://help.sap.com/saphelp_45b/helpdata/EN/c6/f849054afa11d182b90000e829fbfe/content.htm
    In the standard WM system, two movement types for differences have been defined.
    For differences in which the quantity is not in the storage bin but is "on the books", use the movement type 711. In this case the difference must be removed (cleared) from the warehouse and posted to the interim storage area for differences.
    For differences in which the quantity is in the storage bin but "not on the books", use the movement type 712. In this case the difference must be removed (cleared) from the interim storage area for differences and posted to the warehouse.
    http://help.sap.com/saphelp_45b/helpdata/EN/c6/f83e814afa11d182b90000e829fbfe/content.htm

  • ZERO stock check clarification

    HI all,
    I want to have some clarification regarding zero stock check in WM. what should i fill in the "remaining quantity" in the ZERO stock check while confirming a TO in the below 3 scenarios.
    TO quantity                                                          System quantity                                        Actual physical quantity
    100                                                                             100                                                                   100
    100                                                                             100                                                                    90
    100                                                                              100                                                                   110
    regards
    raj kiran

    Hi,
    Thanks for your reply. My question is really simple. I am bit confused on the same. The OSS note is only specific to a particular scenario in Zero stock check.
    Thanks
    Raj Kiran

Maybe you are looking for

  • Sql developer - To_Char not a recognised function

    Hi All I have a SQL Server 2005 database connected through Oracle SQL Developer V 1.5.1 . I am attempting to convert the system date to a character date in the form of YYYYMMDD. So I used this statement but it comes back with the error that it is not

  • Urgent-MIRO G/L

    Hi I have mantained G/L no. 25 to GRPO in Assign G/L to excise trancation When I do MIGO credit entry made in 25 but while doing invoice verification system taking G/L no. 20 that is maintained in OB40. But I want system should debit in 25 not in 20

  • Can you activate an iphone with one sim, and than once it is activated use it with another sim?

    can you activate an iphone with one sim, and than once it is activated use it with another sim?

  • Setting number of devices in gblink

    Hello, I have a question concerning genarating gblink. Is there any way to narrow permission to one device during this process? In documentation there are only listed rights like time, copy and print. Is it possible that this setting can only be set

  • How can I check whether I have uploaded all my photos?

    I have uploaded my photos in several sessions. How can I ensure easily that all photos including those in sub-directories of my main photo folder have been uploaded? i use revel on the Mac. iandunbar