Stock/Availability updation terminated(MD04)

Hi all,
After posting of GR with MB31, i was refresh the Stock/Availability list. While refreshing it was terminated. And an error message displaye as " Express document update was terminated received from author SAP". But GR documet was posted.
What s the problem with my steps? Kindly explain.

Dear Gopinath,
Check for the lock entries in the T code SM12,select the relevant one and delete it.
Check in MB51 for the latest document along with the time and for movement.IF its prsent and if found
ok in MD04 also means leave it as such.
Check and revert back.
Regards
Mangalraj.S

Similar Messages

  • Demand is not getting updated in MD04

    Hi Team,
    we are facing strange issue for an particular plant.
    Issue :-In MD04 forecast is not getting reduced after doing PGI.
    For this MTO  scenario when we are creating outbound delivery requirement of quantity is getting generated in MD04 but after doing PGI it is not reducing the forecast however overall stock availability is reduced .
    Reduction of forecast is necessary otherwise in next MRP run, additional demand would be place on the supplying plant.
    Any pointers what could be the reason of forecasting not getting updated.
    Regards,
    Dharmesh

    hi,
    this is to inform you that,
    please check STRATEGY group in MRP views in MMR.
    explain your process of how requriment will be passed to MRP.
    please confirm.
    regards,
    balajia

  • Open orders should not update in MD04

    Hi, SD gurus,
    I have the below requirement,
    My business scenario is
    when  total open sales order quantity crosses a particular number(Ex:1000 Pcs) in a month, after that whatever the sales order we create it should not update in MD04.
    Our Business process,
    1. Creating a sales order
    2. Allocation run (here system will execute Credit check, availability check, and listing an Exclusion etc. here we need to enter sales order no, plant, allocation type)
    3. Creating a delivery
    4. Invoicing the customer
    Note:
    Usually when we de check MRP type and allocation in Scheduline category system should not update in MD04, but if we de check this as for our business process system should  not execute Allocation run
    Thanks in Advance
    Yuvaraj.

    Respected Lakshmipathiji,
    Thanks for your clarification but i have query here..
    ""if the users are ready to do this manually once a line item exceeds 1000 pcs a month, well and good""
    How users will check material wise?(suppose if sales order contains more than 100 line items and each line item will have its own requirement updates--will they do this material wise?)
    Is there any report which give the Status on Requirements for group of materials(MD04 status) in Standard SAP??
    Phanikumar

  • Confirmation of production order - stock not updated

    Dear all
    On confirmation of production order,all dependent requirements as per bom (stock available at storage locations) should get updated ( as I set back flushing for all material stocks at material master level). But, when i do mb31, final product stock is updated, and bom stocks not getting updated.
    what is the reason.please give solution

    Hi GB,
    Please analysise the following :
    1.COGI what is exact error u are getting.
    2.Did u check the following options
      1. In the routing, the backflush indicator is set in the component assignment.
    2. In the material master record, the backflush indicator has the characteristic "Always backflush".
    3. In the material master record, the backflush indicator has the characteristic "Work center decides", the indicator being set in the work center.
    Use
    3.MB31 is for GR of stock means it post the stock at FG storage loactication ok.
    4.If u need to update in BOM stock , u have to do it by MB1C/MB1A with movement type 262.
    5.Check the stock in MMBE whether u have maintained ornot.
    Please check all those anf come back.
    Regards
    Jia

  • Update termination in VA01

    Hi,
    While I am creating a Sale order & when I save it. I am getting a message Sale Order xxxxx is saved.
    But I could not fine the sale order. I have found that Update terminations are happening with
    Function Module MCV_STATISTICS_UPD_V1_ORDER
    Status Update was terminated
    Report LMCS0U32
    Row 17
    Error details Class: 00 Number: 671
    00 671: ABAP/4 processor: SYNTAX_ERROR
    Please can anyone advise
    Thanks
    vinod

    Hi Vinod,
    Any way standard progam/function modules are causing the update termination. So even you find some issue, bt we can't solve that one, we have to implement oss notes ( If  issue is not in the user exit ).
    I can see some oss notes available referring this issue. you can check those. even you can see SM13 , where you can get even more details for update termination.
    you cn check the below Oss Note: 16966
    https://service.sap.com/sap/support/notes/16966
    When you create or change a document (VA01, VA02, VL01, VL04, VL02, VF01, VF04, VF02 etc.) update terminations occur in the ABAP processor: DBIF_RSQL_SQL_ERROR <table> in function modules
    MCV_STATISTICS_UPD_V1_ORDER   or MCV_STATISATICS_UPD_V2_ORDER   or
    MCV_STATISTICS_UPD_V1_DELIVER or MCV_STATISATICS_UPD_V2_DELIVER or
    MCV_STATISTICS_UPD_V1_INVOICE or MCV_STATISATICS_UPD_V2_INVOICE.
    A table from one of the following information structures is involved: S001 through S006 or S500 through S999.
    Additional key words
    Cause and prerequisites
    DB parameters NextExt and MaxExt of the table are not sufficient.
    Solution
    Change the DB parameters of the involved table:
    Increase NextExt by a factor of 10 and increase MaxExt to < 500. For detailed information on the procedure, please refer to the "Data Dictionary manual".
    Source code corrections
    Regards,
    Naveen Veshala

  • Update termination in ME29N

    Hi All,
    I am getting an update termination mail to my sap mail box when I am trying to release one purchase order. " Error info... SO 451: Address <&> does not exist " (from mail) What might be the reasons?
    Thanks in advance
    jaison.

    Please let me know if work flow is enabled in your system.
    For some of this type of messages there are some SAP OSS notes available,
    Pls check in service.sap.com

  • Maintaining Stock Availibility : physical table or materialized view  ?

    Hi All,
    We have typical Order processing application where I should maintain
    stock availibility => Order is rejected if Stock is not available. The number of orders is 1000 perday, 22 branch, using VPD. 10 users each branch.
    We are really tempted to use JUST view /materialized view to maintain stock position. (where traditionally we use a phiysical table for this, updated after insert/update/delete of transactions)
    So the view will be like this :
    Create View Stock AS
    Select Prod.Code, Prod.beginning_balance,
    ( SELECT Sum (Qty) from Purchase Where ProdCode = prod.code ...) AS Purchase,
    ( SELECT Sum (Qty) from Order Where ProdCode = prod.code ...) AS Order,
    From Products Prod
    So to get the stock availability for a particular product :
    Select Beginning_balance + Purchase - Order from Stock Where Code = ...
    Please give comments, will this work with good performance ?
    Or has anybody done like this in their application ?
    Thank you for your help,
    xtanto

    If we're talking about a materialized view, I assume you'd do incremental fast refreshes. If we're talking about 1000 transactions a day, I wouldn't be at all concerned. Growth of the transaction table ought to have no impact on the speed with which the materialized view could be refreshed.
    I can't think of any blocking issues that would arise from using a materialized view that wouldn't occur if you were updating a separate physical table. The timing might be slightly different, but Oracle's multi-version read consistency ought to work the same either way, hence you ought not ever block.
    Justin

  • Update termination error "Enter WBS element" while confirming Tranfer Order

    Hi Gurus,
    I am getting an update termination "Enter WBS element" while confirming Transfer Order. One thing that i noticed is that this issue is occuring with line items that are having special stock indicator "K".
    Please let me know as to what could be root cause and how could this be avoided.
    Do let me know for any clarification.
    Regards,
    Trishul

    Any suggestions?
    Regards,
    Tanuj Parikh

  • Delivery date not confirmed on the same day even though stock available

        Hi Experts - We are creating an STO in Brazil where stock is moving from 1 plant to another plant.
        Current ATP situation is as follows: which shows 22 EA still available.
    We are creating the STO from the plant 3004 to plant 3005.
    We are confused why the system is proposing the delivery date of March 17 instead of March 14, in spite of sufficient quantity being available.
    We do understand that it takes 03/17/2014 because of the upcoming weekend. But when stock is available on March 14, we would have expected this result.
    These are the key configurations that I have done:
    Material Master:
    MRP View: Planned Delivery Time is 0
    MRP Type: PD (MRP)
    Checking Group: 02
    Assign delivery type and checking rule config for Material Master is also done as follows:
    Request your help please!
    Regards
    Siddharth Sridhar

    Yes If Stock is available for material & still date is changing in STO creation than may be this could have happened due to time zone setting,
    2 option-I would request you   also go through Stock requirement List (MD04) & check where some pending order is lying & some purchase orders if yes then first block them,
    Sometime it heppens if earlier for same material you would have created Sales order (qty is 20) & stock available qty is 15 & still with 15 qty you would have done PGI.& after some time your would have done migo for the same shortage material & this time 5 qty material could be adjusted in shortage order that's why if you go through md04 then you would be able to block shortage qty which  is adjusted,n now date is showing deff,
    hope this would help,
    Thanks,
    Kamlesh

  • Negative Available quantity in MD04

    Hi Experts,
    We have negative available quantity in MD04. There are no receipts generated particularly for some period even after MRP Run.
    Please suggest.

    Hi,
    Check the MRP type in material master. If this is ND, then system will not make any procurement proposal. Also check the strategies such Make to stock / make to order. If the requirement strategy & the strategy in the material master differs, then also there will not be any procurement proposal.
    Regards,
    Prashant

  • Stock not updated after GR with 103 & 105 movement types

    Hi All
    I have raised one GR(MIGO) with ref to PO and movement type as 103(GR for PO with GR blocked stock).
    The same was released in MIGO using movement type '105'and stock type selected 'Unrestricted use'.
    After first step, In MMBE stock updated under 'GR Blocked Stock'.
    But after second step no stock was updated in 'Unrestricted use'.
    the actual scenario is:
    The receipts from vendor for a PO need to be blocked and then later should go to unresticted use.
    Can any body help me how to address this and Tcodes need to be used.
    Regards
    Nageswara...

    Hi GSC
    Thanks for your reply and it is some what understandable.I have few more questions.
    1.Is it possible to create PO with out Account and Costcenter not assigned. If so what is the impact.
    2.My current settings were not allowing to create the PO with GL account and Costcenter.
    M just confused with the "PO with account assignment" concept. Could you spare some time for this and help me to understand?
    Thanks in advance
    Nageswara...

  • MCHB,MARD - Stock available at plant level and storage location level

    Hi ,
    How to determine how much stock available at Storage location level and Plant level. (Lot is not maintained).
    In MCHB-Stock at lot level is shown.
    In MARD-Stock at Storage Location level is shown lncluding
    the stock maintaned at the lot level.
    If i want to know the stock which is not maintained in Lot, i.e, Stocks directly maintained at Storage location / Plant.
    Do I need to subtract the MCHB Value from MARD Value ?
    Is there any other way available to find the stocks which is not maintained at lot level.
    Regards
    Prasath

    Hi prashant,
    What do u mean by stock maintained at SL level without batch level.  Do u mean that some materials are subjected to batch management and some or not?
    If that is the case, for all batch managed materials, u can see the stock at batch level and also same is summed up at SL level.  But still what ever u are getting from MARD table isstock at SL level only.
    If u have activated batch management for any material, it will always be shown at lot level also.
    hope this clarfifies query
    award points if found useful

  • Report on daily sale,stock availability,pending order,Ageing report

    Report on
    daily sale for time period
    stock availability
    pending order
    Ageing report

    Dear Goutam
    Through VF05, you can see sales daily.
    For stock MMBE
    For Pending Order, VA05
    Thanks
    G. Lakshmipathi

  • MRP Logic -Negative Available quantity in MD04

    Hi Experts,
    We have negative available quantity in MD04. There are no receipts generated particularly for some period even after MRP Run.
    MRP Type is maintained as P1- MRP Fixing type.
    Safety time is maintained as 3 days.
    Planning strategy is 40.
    Please suggest, what would be the reason, why i am not getting schedule lines between 09-Aug and 27-Aug which makes available quantity minus, after that there are generation of schedule lines.
    Please help with inputs..

    Hi,
    MRP type P1 is used with planning time fence(mandatory).
    Have you used pl time fence. How many days? For those period system will not generate any more planned order.
    Regards,
    Dharma

  • BAPI for VA02 to check availability & update the Schedule lines

    Hi Experts,
    Is there a BAPI which can 'check item availability' & update the Schedule lines for the same order?
    I have checked 'RV_AVAILABILITY_CHECK' 'BAPI_MATERIAL_AVAILABILITY' 'SD_BACKORDER_UPDATE'
    but it is not solving the purpose.
    Kindly give your suggestion for the same.
    Thanks.

    Hi,
    Please let me know if you were able to achieve this functionality. I have a similar requirement wherein I need to check for the material availability and update the schedule lines in the scheduling agreement. I checked the FM SD_BACKORDER_UPDATE, but it doesn't seem to be helpful.
    Regards,
    Dawood

Maybe you are looking for