Unrestricted stock difference - Batch wise and Plant wise in MMBE

Dear All,
When checked in MMBE transaction - Stock quantity difference.
For Ex.
- at Plant level it showing Qty - 1000
- When we count batch wise available unrestricted showing - 1400
What is the reason?? Did any one get this type of issue earlier. Please reply.
Regards,
Syed Hussain.

Thank you.
Solved, problem not with the UOM, But with material transfers and reversals.
Material stock transferred to Dummy cost center before batch classification and returned the same quantity with 202 - not to unrestricted, but direct to batches.
Regards,
Syed Hussain.

Similar Messages

  • Outbound delivery allows only the unrestricted stock for particular material and plant

    Hi,
    In STO I have an problem the outbound delivery creations allows all stocks under unrestricted, Quality inspection, Block stock.
    I want the outbound delivery creation of a particular material and  plant it allows only the stock under the unrestricted only. It doesn't allows the stocks under the Quality inspection and Block stocks.
    I need to know how to configure this or how to solve my requirements.
    Regards,
    Ramesh N

    Dear Mohammed ,
    as per your scenario , there is two movement type has to trigger in the Delivery level according to the plant and material combination .
    as per my knowledge it will not configurable in standard process . this will possible with user exit logic only .
    follow the below logic to achieve your issue .
    you have to create two item categories and two schedule lines with (655 &653) , that means your movement type has to trigger at sales order level only . write a logic in the user exit - MV45AFZZ -USEREXIT_MOVE_FIELD_TO_VBAP , if this combination matches then automatically item category has to over write other wise it will copy the existing item category .at delivery level you can see two movement types in item level.
    wait for other experts solution , if any standard is possible or not  .
    Regards,
    C.B Reddy.

  • Stock movement report date and warehouse wise

    I need this report date wise and warehouse wise...
    please help ..
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    Declare @Whse nvarchar(10)
    select @FromDate = min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >='[%0]'
    select @ToDate = max(S1.Docdate) from dbo.OINM s1 where S1.Docdate <='[%1]'
    select @Whse = Max(s2.Warehouse) from dbo.OINM S2 Where S2.Warehouse = '[%2]'
    Select @Whse as 'Warehouse',
    a.Itemcode,
    max(a.Dscription) as ItemName,
    sum(a.OpeningBalance) as OpeningBalance,
    sum(a.INq) as 'IN',
    sum(a.OUT) as OUT,
    ((sum(a.OpeningBalance) + sum(a.INq)) - Sum(a.OUT)) as Closing
    --(Select i.InvntryUom from OITM i where i.ItemCode=a.Itemcode) as UOM
    from( Select N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,
    (sum(N1.inqty)-sum(n1.outqty))as OpeningBalance, 0 as INq, 0 as OUT From dbo.OINM N1
    Where N1.DocDate < @FromDate and N1.Warehouse = @Whse Group By N1.Warehouse,N1.ItemCode,
    N1.Dscription Union All select N1.Warehouse, N1.Itemcode, N1.Dscription, 0 as OpeningBalance,
    sum(N1.inqty) , 0 as OUT From dbo.OINM N1 Where N1.DocDate >= @FromDate and N1.DocDate <= @ToDate
    and N1.Inqty >0 and N1.Warehouse = @Whse Group By N1.Warehouse,N1.ItemCode,N1.Dscription
    Union All select N1.Warehouse, N1.Itemcode, N1.Dscription, 0 as OpeningBalance, 0 , sum(N1.outqty) as OUT
    From dbo.OINM N1 Where N1.DocDate >= @FromDate and N1.DocDate <=@ToDate and N1.OutQty > 0
    and N1.Warehouse = @Whse Group By N1.Warehouse,N1.ItemCode,N1.Dscription) a, dbo.OITM I1
    where a.ItemCode=I1.ItemCode
    Group By a.Itemcode Having sum(a.OpeningBalance) + sum(a.INq) + sum(a.OUT) > 0 Order By a.Itemcode

    please advice.. - wrong out put.
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    select @FromDate = min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >='[%0]'
    select @ToDate = max(S1.Docdate) from dbo.OINM s1 where S1.Docdate <='[%1]'
    select
    a.Itemcode, a.warehouse,a.price as 'Item Cost',
    max(a.Dscription) as ItemName,
    sum(a.OpeningBalance) as OpeningBalance,((sum(a.OpeningBalance) *a.Price)) as 'Opening STock Value',
    sum(a.INq) as 'IN',
    sum(a.INq)*a.Price as 'IN Stock Value',
    sum(a.OUT) as OUT,
    sum(a.OUT)*a.Price as 'OUT Stock Value',
    ((sum(a.OpeningBalance) + sum(a.INq)) - Sum(a.OUT)) as Closing,
    ((sum(a.OpeningBalance) + sum(a.INq)) - Sum(a.OUT))*a.Price as 'Closing Stock Value'
    --(Select i.InvntryUom from OITM i where i.ItemCode=a.Itemcode) as UOM
    from( Select N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,n1.Price,
    (sum(N1.inqty)-sum(n1.outqty))as OpeningBalance, 0 as INq, 0 as OUT From dbo.OINM N1
    Where N1.DocDate < @FromDate  Group By N1.Warehouse,N1.ItemCode,n1.Price,
    N1.Dscription
    Union All
    select N1.Warehouse, N1.Itemcode, N1.Dscription,n1.Price, 0 as OpeningBalance,
    sum(N1.inqty) , 0 as OUT From dbo.OINM N1 Where N1.DocDate >= @FromDate and N1.DocDate <= @ToDate
    and N1.Inqty >0  Group By N1.Warehouse,N1.ItemCode,N1.Dscription,n1.Price
    Union All
    select N1.Warehouse, N1.Itemcode,N1.Dscription,n1.Price, 0 as OpeningBalance, 0 , sum(N1.outqty) as OUT
    From dbo.OINM N1 Where N1.DocDate >= @FromDate and N1.DocDate <=@ToDate and N1.OutQty > 0
    Group By N1.Warehouse,N1.ItemCode,N1.Dscription,n1.Price) a, dbo.OITM I1
    where a.ItemCode=I1.ItemCode
    Group By a.Itemcode,a.warehouse,a.Price
    Having sum(a.OpeningBalance) + sum(a.INq) + sum(a.OUT) > 0 Order By a.Itemcode

  • I want logic to calculate mateiral wise and period wise

    can anyone please tell how to consider material and period for this pgm
    i have coded to calcualte sum of material wise.
    but i want to consider materila wise and month wise
    eg:material   quantity month
        1000        200       4/2001
         1000       300       5/2001 based on the below conditions.
    Select  mATNR SPMON ZZDPFC ZZMARKET
    From S507
      into corresponding fields of  table  t_DATA WHERE
      VRSIO = '000' AND BEDAE = 'KSV' AND ZZDMTYP = '001'
      AND  ZZDPFC GT '0' AND ZZMARKET IN ('001','002') AND SPMON >= 200705.
       SORT T_DATA BY MATNR ZZMARKET SPMON.
    write:/04 'Material',25 'Demand Plant'. "45 'Market',70 'Period'.
    LOOP AT T_DATA.
    WRITE:/02 t_data-MATNR ,25 t_data-ZZDPFC,45 t_data-ZZMARKET,
    70 t_data-SPMON.
    at end of matnr.
    sum.
    write : /02 t_Data-matnr,25 t_data-zzdpfc COLOR 5 .
    endat.
    endloop.

    Hi,
    <fs> type   t_data
    sort t_data by matnr  month.
    V_index = 0.
    loop at  t_data  assigning <fs>.
    V_index = sy-tabix + 1.
    read  t_data assigning <fs2> with  index V_index .
    if sy-subrc = 0.
    --if <fs>-matnr =  <fs2>-matnr and <fs>-month = <fs2>-month.
    <fs>-quantity =  <fs>-quantity =  <fs2>-quantity.
    delete  t_data index V_index.
    --endif.
    endif.
    endloop.
    <b>then loop at  t_data to display .</b>
    Regards,
    Sooness.

  • In alvs how to do totals by colum wise and row wise

    hi,
    in alvs how to do totals by colum wise and row wise
    could u plz explain clearly with coding

    Hi Rajesh,
    Go through these links...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    Reward Points if this helps,
    Satish

  • Two financial statements at product wise and location wise below comp code

    company code have number of products and they are being sold in various locations. here management wants to get financial statement  both product wise and location wise below company code. the problem is that their is no field to post for BA, profit center and segment in MIGO posting and Billing document in standard SAP
    please inform me is it possible to get financial statement both product wise and location wise below company code. if it is possible please provide answer.
    Thanks & Regards 
    Arjun

    Financial Statements can only be drawn at Company Code, Business Area, Profit Center, and Segment levels only.
    If you want to have product wise, then the same must have mapped / designed against the one otherthan companyt code.

  • Stock reservation report For customer wise and Document wise

    Dear sd experts ...
    In my company  we have kept some reserved stock to some customers By using MB1B-412E M.type now Requirement is I want to see how much stock kept in reservation for Customers and Document wise also
    I Have checked in CO09 But not possible and MCTA also
    plz guide me how to find

    did you try MMBE ?
    also check MB5B, MD04, MB5T

  • KE5Z report and plant wise sales report (Z report develped) not matching

    thanks for support
    could any body tell me in report KE5Z (proft center actual line items) .profit center wise sales is not matching
    with plant wse sales  Z report developed (based on plant - plant wise sales ) In MM01 master data maintenance  we have tagged every plant to a profit center , becoz of this mapping these report should match ? but big differnce is coming?

    Hi,
    Check on it:-
    Missing Data in the KE5Z report
    Regarding reports KE5Z &  S_ALR_87013326
    http://wiki.sdn.sap.com/wiki/display/ERPFI/KE5Z-Additionaltextfields+missing
    pherasath

  • Different stock between Acount view and Plant stock in MM03

    Hello Experts,
    In MM03 Acount view,  I found the Total stock is 1, but in plant stock view, I found the stock is Zero.
    There is not really any physcial invnetory so it must be a problem on the report.   
    And on mm03 that it was only on the finacial view screen that stock showed, it does not show on the normal stock screens. 
    What cause this difference? and How to clear the stock from the financial view?
    Thanks

    Hi
    Please run MB5K for the problem material. If it shows difference, then there might be inconsistency between accounting stock and plant(storage location) stock. If that is the case, physical inventory can't help. The correction(direct table update) is necessary and can only be done by SAP.
    Hope the information helps.
    Regards,
    Polly

  • Profit Center Wise and Currency Wise balances in same report?

    Experts,
    Is there any report where we can see Profit Center and Currency Wise balances in the same report?
    How can we get such report?
    - Nilesh

    Hi
    Did you try FAGLL03?? I think that should suffice
    or try FGI3
    br, Ajay M

  • Cell wise and row wise check box in oops alv

    Normally column wise check box are possible in oops alv but how to possible check box in first row only in oops alv and Cell wise check box in oops alv?

    Hi,
    Try like changing  this
    insted of
    g_layout-f2code = ' '.
    use this
    g_layout-f2code = 'DISP'. " Sets fcode for when double
    and
    g_layout-f2code = '&ETA'. " it will display POPUP screen
    Best Regards
    Ranga
    Edited by: Ranga Swamy on Nov 1, 2008 11:07 PM
    Edited by: Ranga Swamy on Nov 1, 2008 11:17 PM

  • Stock difference between WM and IM

    Dear all
    I have an issue which relate to stock discrepancy between WM and IM.
    the situation is in WM record in booking, we have A product in storage type B. but in IM booking it didn't have.
    in fact , we didn't have that product A in warehouse, that mean the WM booking is not correct either.
    I tried to make stock counting which move A from storage type B to 999. and put the zero mark in LI11n. now the difference quantity is sitting in storage type 999.
    but now how should I move the differnce from storage type 999?
    your promopt reply will be highly appreciated.
    b.r
    elly

    I have a kind of goose skin if I read that one moves stock to 999.
    If you do the standard phyiscal inventory, then you clear differences in WM with LI20. this automatically gets the difference to 999. No manual move needed.
    and finally you clear the 999 with MM using LI21.
    But I still do not really know your situation.
    LX23 creates inventory in MM if WM stock is bigger than MM stock.
    But if the stock is then equal but wrong in MM and WM, you have to count it again and post the differences with LI20 and LI21.

  • /SAPAPO/SDRQCR21 program is not working correctly if we run the program for range of material and plant wise

    Hi APO Experts,
    In our project, we have received more sales order inconsistencies which is not clearing by CCR program and it is clearing by  program /SAPAPO/SDRQCR21 with option as Build Reqmts from Doc. Flow, So We have decided to schedule the background job on daily basis for program /SAPAPO/SDRQCR21 with option as Build Reqmts from Doc. Flow, performing the testing in our quality system and observed the below strange behavior. 
    When I am running the program /SAPAPO/SDRQCR21 with Range of products and some location range with option as Build Reqmts from Doc. Flow, in Background job. In output it is suggesting to delete one sales order. If I checked that Sales order in ECC, it is for an different location, that is not part of my selection and the order is open. In MD04 the Qty is showing 1 ( as per sales order) but in APO RRP3 view the order qty is showing Zero. I have run the CCR, it is coming in different in content and if I push, the different is not going to APO.
    I have tried running the program /SAPAPO/SDRQCR21 with plant which is mentioned in that sales order with option as Build Reqmts from Doc. Flow, in Background job , it is suggesting this sales order under update option correctly.   
    Can you please help me understand why it is behaving differently like the location is not part of my selection and why it is suggesting the wrong action. And also whether is it advisable to run the /SAPAPO/SDRQCR21 with option as Build Reqmts from Doc. Flow at plant range and material range in background job.
    Thanks & Regards,
    Sundaram Radhakrishnan

    Sundaram,
    It sounds to me like the sales document records in the OLTP and in APO were created at different times.  This is common in Dev and Qual environments when the systems are commonly created at two different times, and each was a copy of an existing system that contained sales data.  The order number you see in //rrp3 is somewhat irrelevant; system generally uses the guid for many activities.
    FYI during Dev and Qual refreshes, if you are copying from a production environment that contains data, it is always best to create the OLTP and SCM images at the same time, and to copy them both to the Dev and Qual systems at the same time.  If you don't do this, you are faced with the additional tasks associated with getting the copied systems back into synch.
    If this is Dev or Qual, I suggest that you just completely wipe out all sales orders in APO and rebuild them using the CIF.
    If this is a mature production environment, the only time I have ever seen this issue is due to improperly created CIF enhancements.  Speak to your developers to find the root cause, and correct this problem.  Then, wipe out all sales orders and rebuild with CIF.
    Best Regards,
    DB49

  • B.area wise and vendor wise report

    Dear seniors,
    My client has 5 b.areas,
    some vendors are common to all business areas, that's why from all business areas postings happen to some vendors.
    that's y my client wants to see business area wise ,vendor wise balances.
    please guide me how can i guide Abaper.
    with regards,
    Bhuvan

    Statement: some vendors are common to all business areas
    Question: Where do you create vendors per business area??
    You can change the field status of the posting keys relating to vendor such as 31, keep business are as mandatory.
    Some of the standard reports must suffice your reporting reaquirements.
    otherwise need to create a form and report (FKI4 and FKI1)
    Regards,
    Ravi

  • Pending tds report bills wise and date wise

    Dear ALL,
      In my client place they want Pending TDS Certificate Report Bill wise  , it is there any standard tcode for that or else for this report preparation what are the tables we have to give to ababer for creating new report. Please guide to solve this issue.
    girija

    Dear,
    You can use following tables to get detailed report on TDS...
    1. WITH_ITEM
    2. J_1IEWTCHLN
    3. J_1IEWT_CERTIF_N
    4. BSIK or BSIS.
    Regards,
    Chintan Joshi.

Maybe you are looking for

  • Search Tab Goes Missing from the Left-hand Menu

    Hi, I am using Spotify version 3.1.0.1117 in my trusty Toshiba Thrive (AT100) that runs Android version 4.0.4. I think it has just updated to the latest Spotify version and I notice that after initialising, the Search tab would go missing from the le

  • Fiscal year variant V3 uFF0Cdo year end closing

    Hello everyone, I use the  Fiscal year variant V3(month 4 year *-month 3 year **+1) for the HK company ,and Dec. 2009 I did the year end closing, but I found that,the amount of GL Account balance carry of 2010 is not the cumulative balance of 2009,bu

  • I cant upload videos in my ipod

    Ihave a 30gb Ipod, but when i open the preferences of my ipod in itunes to actualize it, the letters looks like transparent, so i cant mark an option. I would like someone to tell me wath can it be?

  • ASCP Table name for Recipe 'Preference' field

    I have separate Planning and Production recipes for the same item. ASCP is required to plan using planning recipes - and batches would be created manually refererring ASCP output using production recipes (there is business reason for this). All plann

  • Tabbed Panel Rounded Corner

    Hi, I've been looking all over to use the custom rounded corner with the TABBED PANEL. I've tried many techiques and still unsucessful. BUT recently, I've figured it out how to easily achieve the ROUNDED TABS in the Tabbed Panels. I hope this will he