How to block invoice posting more than the GR quantity

Dear Experts,
While trying to do MIRO with more than the PO/GR quantity system is accepting both increase in qty and value with out any tolerance limit.
How to block, so that system should not allow to do MIRO more than the GR quantity.
Regards,
Alok

Hi,
System will by default block the payment, when it is not matching with the PO/GR value.
then you have to go transcation code MRBR - Release Blocked Invoices. so that you can make the payment for these invoices.
system will give you the message before saving, if you want an error message then go to oba5 tcode and change the message in to error, then if the Amount is not matching with the PO/GR value then the system will through error.
Regards,
Padma

Similar Messages

  • How to block invoice posting for quality reasons

    how to block invoice posting for quality reasons.For example while doing  Goods receipt  the material is  posted to quality inspection stock. Then the material is rejected for some reasons. Once the decision is made then the  standard system allows to post invoice. But I want to restrict invoice posting once the material is rejected for quality reasons.

    posting of invoice is always allowed, the only thing you can restrict with customizing of QM in Procurement is the payment.
    if you want to block invoice posting, then you have to control this in a user exit.

  • Confirmed quantity more than the ordered quantity in sales order.

    Hi All,
    We have a situation wherein the confirmed quantity is more than the ordered quantity.
    a.) SO was created for qty1.Two schedule lines were proposed as stock was not available.
    b.) When stock came in and most probablly, when the rescheduling job calling tcode  V_V2 was run, both the schedule lines were confirmed.
    c.) As a result, further processing  is not done by system as confirmed quantity is more than ordered quantity.
    Also we noticed that double schedule line was confirmed for a another order even without the rescheduling job is run.
    Can you please suggest as to why this is scenario is occuring and how we can avoid the reoccurence? Thanks in advance!!
        Regards,
    Jeevan Penumatsa

    Hi  Jeevan Penumatsa
    Welcome to SDN forum
    Generally two schedule lines will take place if stock is not available in your plant or if open orders are there for that material also. So check the stock in MMBE
    .If there are any backorders then it might be getting added in the created sales order and then you might be getting in two schedule lines
    Regards
    Srinath

  • How to prevent invoice enters more than PO amount

    hi,
    how to prevent an Invoice verification being key in the system for more than the PO amount? meaning when invoice has been done for particular PO and there no outstanding amount for this PO. while users try to enter this PO # in the MIRO, system shouldn't allow it to be entered again. maybe promotes with error msg saying that this PO# has being fully performed! etc..
    anyone knows how to do that? thanks

    hi,
    Actiavte duplicate invoice check..
    Make settings at :
    SPRO >> MM >> LIV >> Incoming invoice >> Check for duplicate invoice >> here make the indicators ticked as per your requirement and then,
    Do also tick the duplicate invoice check indicator at VMR...
    and then try...
    System will not allow...
    Regards
    Priyanka.P

  • System should not allow me to create a PO more than the Maximum quantity.

    Gurus,
    My requirement is as follows.
    I have a material with Max quantity defined as 100.
    Now I have a stock of 60 & Open PO of 20 so the system should allow me to create PO only for 20 Qty.
    It should restrict me if the Quantity exceeds 20.
    Also inform us where to maintain the Max stock quantity for the material.
    pl suggest
    SN

    Hello Sanjay,
    There is no way to maintain the Max stock quantity for the material.
    However, for the first issue, I would like to tell you that while creating PO in Item detail tab there is a tab of delivery. Under this tab you can set the under delivery or over delivery(as per your requirement).
    for example, if you set the overdelivery to 10% and you created the PO of 100 quantity then you have the flexibility of receiving upto 110 quantity which is 10% more of the actual quantity.
    If your point is something different from what I explained then kindly re-elaborate your query.
    Hope this helps...
    Robin

  • How to generate row_number for more than the no of records in the order by column?

    Hi All,
    I have a query which contains Order quantity, order date and Row_number as Id. The below code produces 15 records as well as row_number for those 15 records. But I need row number for the next 12 months too. That means I need 12 more records with row_number
    and Order month and order quantity empty.
    use [AdventureWorksDW2012]
    go
    SELECT
      SUM([OrderQuantity]) As OrderQuantity
     ,CONVERT(DATE,[OrderDate]) As OrderDate
     ,LEFT(d.[EnglishMonthName],3) + '-' + CONVERT(CHAR(4),YEAR([OrderDate])) As OrderMonth
     ,ROW_NUMBER() OVER(ORDER BY([OrderDate])) As Id
    FROM [dbo].[FactResellerSales] f
    JOIN [dbo].[DimProduct]   p ON f.ProductKey = p.ProductKey
    JOIN [dbo].[DimDate]   d ON f.OrderDateKey = d.DateKey
    WHERE OrderDate >= '2006-04-01' AND EnglishProductName = 'Road-650 Red, 60'
    GROUP BY p.[ProductKey], [OrderDate],[EnglishMonthName]
    How can I achieve it?
    Regards,
    Julie

    I got a solution for this.
    use [AdventureWorksDW2012]
    go
    declare @min int, @max int
    IF OBJECT_ID('Tempdb..#tmp') IS NOT NULL
     drop table #tmp
    create table #tmp
       Id int
      ,OrderQuantity int
      ,OrderDate date
      ,OrderMonth varchar(78)
    insert into #tmp
     Id
    ,OrderQuantity
    ,OrderDate
    ,OrderMonth
    SELECT
      ROW_NUMBER() over(order by(orderdate)) As id
     ,SUM([OrderQuantity]) As OrderQuantity
     ,CONVERT(DATE,[OrderDate]) As OrderDate
     ,LEFT(d.[EnglishMonthName],3) + '-' + CONVERT(CHAR(4),YEAR([OrderDate])) As OrderMonth
    FROM [dbo].[FactResellerSales] f
    JOIN [dbo].[DimProduct]   p ON f.ProductKey = p.ProductKey
    JOIN [dbo].[DimDate]   d ON f.OrderDateKey = d.DateKey
    WHERE OrderDate >= '2006-04-01' AND EnglishProductName = 'Road-650 Red, 60'
    GROUP BY p.[ProductKey], [OrderDate],[EnglishMonthName]
    --select * from #tmp
    select @min=count(*)+1, @max=count(*)+12 from #tmp
    --select @min, @max
    IF OBJECT_ID('Tempdb..#tmp_table') IS NOT NULL
     drop table #tmp_table
    Create table #tmp_table
       Id int
      ,OrderQuantity int
      ,OrderDate date
    insert into #tmp_table
     select Id, OrderQuantity, OrderDate from #tmp
    --select * from #tmp_table
    declare @test varchar(1000)
    set @test='insert #tmp_table(id) select TOP '+ convert(varchar,@total)+' ROW_NUMBER() over(order by(select 1)) from sys.columns'
    exec(@test)
    while(@max >= @min)
    begin
     insert #tmp_table(id,OrderDate)
     select  @min,DATEADD(mm,1,max(orderdate))
     from #tmp_table
     set @min=@min+1
    end
    select * from #tmp_table
    Regards,
    Julie

  • How do I print out more than the first page on longer emails.

    If an email is two or three pages long the Firefos print instruction only prints out the first page and lists it as 1 of 1

    On your iMac or on your iPhone?
    If on your Mac, which version of iPhoto do you have? The Print themes changed between the versions.

  • How to post more than one photo on blog page

    Can you post more than the top placeholder photo on a blog page? I'd like to post photos as they relate to the blog I'm writing but can only use the placeholder photo at the top of the entry page--is it possible to place more photos on the page or do you have to use a web layout and not a blog layout?
    Thanks.

    It is possible because I Do it on my blog. All you have to do is click he media button and get the photo you want, I then drag it to the desktop, and then drag it into my blog. For some reason iweb can get a little wonkey and makes it look like it can't be done, but it can. Good luck!
    http://web.mac.com/skewedreality04

  • In subcontracting the component quantity consumed more than the BOM quantit

    Dear Experts,
    In subcontracting the component quantity ( 543) consumed more than the BOM quantity while doing GR, so please let me know what may be the possible reasons for the same.
    Regards,
    Balu

    Balu
    may be the suncontractor needed more than the BOM quantiy.It is the case of overconsumption of components.

  • GR quantity more than production order quantity triggering cost difference

    Hi Gurus,
    We have observed a scenario where the cost(price) dfference account getting hit whenever the GR quantity is greater than the production order total quantity. The dollars posted to this acount are directly propotional to the difference between the GR quantity and the production order quantity.
    The total quantity specified in production order is 1 M2U and GR quantity is 1,000 M2U.Material price is $195.65.
    Accounting Document;
    Inventory account           - 195.65
    Offset account                - 200.00
    Cost difference account  -    4.35
    If we do GR for less than or same quantity as in the production order, this account is not getting triggered.
    Any idea what is causing this scenario? I really appreciate if you can share with any SAP note related to this.
    Thanks,
    Mano.

    Hello Gurus,
    One  more observation is,
    The palnned costs and actual costs are always different when dealing huge quantities. But the cost difference account is only getting triggered if the actual quantity is  more than the palnned quantity.
    And,
    when the difference between atual quantity and palnned quantity is huge then
    Planned costs are booked to the inventory account
    Actual costs are booked to the prodcution cost account.
    Significant cost variance is booked to the cost variance account.
    When the difference between actual quantity is less than/equal to planned quantity is not so huge then
    Actual costs are booked to the inventory account
    Actual costs are booked to the prodcution cost account.
    Is this a standard behaviour?
    Thanks,
    Mano.

  • Prevent Component Issue More than Service Order Quantity

    Dear Experts,
    We are able to Issue Materials to Service Order(CS) more than the Material Quantity in the Service Order.
    Our Requirement is to prevent this . Please help.
    Regards,
    Shareeq

    Dear Tejasg,
    Your post was an Useful information.
    The required configuration can be done at.
    ECC 5.0
    SPRO-> Plant Maintenance and Custmer Service ->Maintenance and Service Processing->Maintenance and Service Orders->Funtions and settings of Order Types->Goods Movement for Order ->Define Documentation of Order.
    Regards,
    Shareeqq
    Edited by: K M AHAMED SHAREEQ HUSSAIN on Mar 13, 2010 11:22 AM

  • Returns qty accepting more than the invoice qty

    Hi Experts
    When i am creating a sales order with reference to invoice the system is allowing to enter the quantity more than the invoiced quantity.
    suppose the invoice quantity is 100 when i create a sales returns system is accepting to do returns for 150 also whichshould not be and also it is allowing to do so many times with the same reference document
    i am getting just q warning message that for this invoice reference already returns exists if i bypass the warning message system is allowing to do next time also
    how to do
    any user exits to control which checks the VBRK number and VBRK billed quantity and it should less or equal to VBAK quantity
    regards

    Hi,
    Yes, unfortunately SAP does allow it.
    We are using FORM USEREXIT_MOVE_FIELD_TO_VBKD of MV45AFZZ to have our own validation for the same.
    I hope this helps,
    Regards
    Raju Chitale.

  • When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page.

    When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page. I don't want to have to check off an additional 5 or 6 attributes each time I print out contact information. Is there a way to change the default setting for printing lists, so it is not just "phone," "photo," and "job title?"

    I have a user who wants to do this same thing. I did not find any way either to default the attributes to anything other than what you see the first time. Seems like such a trivial thing, hard to believe they do not allow it. I did find a program for this called iDress but I can't seem to download it from any links on the Internet. Not sure if it is free or not, but it was recommended by a link on the Mac support site.

  • I need more than the maximum allowed 30 profiles - how do I change this?

    I need more than the maximum allowed 30 profiles - how do I change this? Once I reach 30 profiles and I try to add one - it just deletes one automatically thus only allowing a maximum of 30. Please help.

    You are talking about 30 Firefox Profiles on the same Windows Logon User Account?
    I never saw that as a limit myself. I had 53 Profiles at one time, although I haven't done that since Firefox 3.0. It was causing an extended launch time and I started using "remote" Profiles that weren't controlled by the Profile Manager and weren't in the '''profiles.ini''' file; launched by command line. Like this in the Target line for the desktop shortcut: <br />
    ''' "C:\Program Files\Firefox_4.0_zip\firefox.exe" -Profile D:\Mozilla\Active-Profiles\4.0_10-15-10-N '''

  • How can you set up more than one device on iTunes. I have an iPad, iPod, itouch and iPhone. I don't want the same on all devices.

    How can you set up more than one device on iTunes? I have an iPad, iPod, itouch and iPhone. I don't want the same on all devices. I have all my music/videos on iTunes on my mac book pro. Can you set up separate folders for each device and drop in what ever music/videos from the main iTunes library?

    In itunes it is called syncing and you can choose exactly what content to sync to all devices and it can be different for all of them
    How to sync

Maybe you are looking for

  • Time between digital inputs?

    Hi, I would like to measure the time between a digital input being true. Basically I have a prox picking put a point on a rotating shaft (to determine RPMs). What I want to do is measure the time between consecutive input signals from the prox, divid

  • Some photos copied between shared libraries lose date.

    Tonight I copied some photos from my wife's shared iPhoto library on her MacBook Pro to my iPhoto library on my Mac Pro, about 400 photos, all taken since December 2008 (toddler + DSLR = lots of photos). I noticed the imported photos were sorting out

  • Cannot Connect Agents created for ODI 10g

    Hi All, As part of installation of BI Apps 7.9.5.2, i have created two odi agents ( WORKFLOW and INTERFACE ). I can see them as part of my services in windows. I have started them. But when have set the required things in the topology manager. when i

  • Windows 2000 can't connect to Airport Express

    I have a dell PC with Windows 2k and have installed Airport Admin utility. The PC is picking up the Airport signal and the Airport Admin identifies the signal also. But when I try to configure I get an error message (-6753). I downloaded the latest v

  • How to change appearance of text in HTML snippet?

    Does anyone know if / how I can make the text inside an HTML snippet (when rendered in the overall HTML page) appear like the text on the rest of the page? Here, you can see an example of what I mean: http://zach.in.tu-clausthal.de/tmp/iweb.png So, t