Blocked invoices in 4.6C (invoice verification)

Hi,
We need to have some reporting for our blocked invoices. It would be interesting if we could use transaction MRBR for these purposes but it doesn't work as there are no records in table rbkp_blocked (we don't use 'logisctics invoice verification' but the old 'invoice verification', apparently this doesn't use table rbkp_blocked).
We are kinda stuck on this problem. I find it very difficult to retreive the right data from table BSEG.
Can you help me with this problem. Do you know a report, do we have to develop it (taking data from table BSEG ?)
The requirement is : Reporting on blocked invoices that are either blocked for variances or blocked manually.
Any thoughts on this would be most welcome.
with regards
Erik

Hi
MRBR is report for blocked invoices.
There are three types of blocks
Block due to variances
Manually payment block
stochostically blocked
you need to try with either of  one of these options, and see if your invoice shown. Otherwise your invoice is not blocked.
please check.
regards
Srinivas

Similar Messages

  • Payment block in a vendor without invoice block

    Hi,
    We have a peculiar requirement.
    Client is requesting us to block a particular vendor for payment however invoicing needs to remain open.
    I presume we can do this using two methods:-
    1.) Payment block in vendor master
    Limitation 1 - Let us say that the block indicator is "A" which we have set in the vendor master record and in the configutation of the Block Indicator we Do not check the box of Change in Payment proposal and Check the box of Manual Payment block.
    This will block the invoice for payment using F110 and will also not allow change of block in the proposal.
    However this will not prevent payment block using F-53 (manual payments)
    2.) Manually insert Payment block in the individual invoice posting
    Limitation - End user can remove the payment block and then process the invoice.
    3.) Default Payment block in the payment term that is in the vendor master record
    Limitation - End user can remove the payment block and then process the invoice.
    Can anyone please suggest me a method to achieve this.
    Thanks,
    Nitish

    Hi
    Invoice will go for a block only when the quantity and/or price at the time of Invoice goes beyond the Purchase order quantity and price. This is delpendent upon the tolerance limit you define in the customization for LIV.
    If the quanity and/or price is less than that system only issues a warning message.
    If you are not expecting any further delivery after say 50 (out of 100 quantity) you need to manually close the PO by setting the delivery completed indicator in Delivery tab of item detail of PO.
    MRao

  • Setting up Billing Block for SALE ORDER during Invoice cancellation

    Hi,
    I have a requirement where in i need to set the billing block(VBAK-FAKSK) while saving Invoice cancellation document. Please suggest some user exit or BADI during Invoice save so that i can set the billing block in sale order header data.
    Thanks in Advance,
    Raghav
    Moderator message: please do your own research before asking.
    Edited by: Thomas Zloch on Jan 12, 2011 2:59 PM

    Hi,
    You can try TCode V.00
    This transaction when executed will give you the list of all the sales documents blocked for delivery per sales organization. There are various other criteria which might be useful. This transaction will allow you to edit each sales document.
    If this is not the one that you want, then perhaps you might have to develop one.
    Thanks
    Mukund S

  • Manually blocking SRM Extended Classic PO invoices

    Hi All,
    I understand that in tcode MRBR, when we select the radio button:  Manual Payment Block, we can see those invoices blocked at the Header Level.  (tcode MIR4, Payment tab, Pmnt Block field)
    It seems that only those invoices blocked at the time of invoice data entry (MIRO) are displayed.  But many times, we need to manually block the invoice AFTER it has already been entered and those are not displaying in MRBR.
    We are using SRM Extended Classic Config (if that matters) and are on ECC 6.0 SP10.  To block the invoice after the invoice has already been posted, we need to use tcode FBL1N to find the coordinating FI doc # and block it in that transaction code.  When we do that, it does show the block on the coordinating MM invoice number when viewing in MIR4, but it doesn't show in MRBR.  In other words, table BSEG shows the block, but table rbkp_blocked does not.
    Is there another way to manually block at the header level AFTER the invoice has been entered??  (so that it shows on the MRBR report).  Or is this a possible error with SAP's FI/MM integration?
    I thought I'd post my question here first before submitting an OSS message.
    I'd appreciate any guidance on this,
    Cindy

    Decided to just create custom reports to view blocked invoices either in FI or MM.

  • Blocking the change of Supplier Invoice Number on update using SP

    Hi Mentors,
    Just wondering if blocking the change of Supplier Invoice No. (OPCH.NumAtCard) is possible using SP_TransactionNotification?
    I've been trying to make it work with the following code:
    --Prevent Duplicate Supplier Ref. No. in AP Invoice
    if @object_type = '18' and (@transaction_type in ('A' ,'U'))
    begin
    declare @RefNo as varchar (100)
    declare @CardCode as varchar (100)
         if (@object_type = '18')
              begin
                 select @RefNo = NumAtCard, @CardCode = CardCode from OPCH T0 where docentry = @list_of_cols_Val_tab_del
                 begin
                   if (@RefNo is not null)
                     begin
                       if 1!= (select count (docentry) from OPCH  where (NumatCard = @RefNo) and (cardcode = @CardCode))
                         begin
                            select @error = 10
                            select @error_message = 'Duplicate Supplier Reference Number!'
                         End
                       End
                   End
              End
    End
    --Prevent Supplier Ref. No. in AP Invoice from being changed during update mode.
    if @object_type = '18' and (@transaction_type = 'U')
    begin
    declare @DocEntry as int
         if (@object_type = '18')
              begin
                 select @RefNo = NumAtCard, @CardCode = CardCode , @DocEntry = DocEntry from OPCH T0 where DocEntry = @list_of_cols_Val_tab_del
                 begin  
                       if (@RefNo != (select NumAtCard from OPCH where (CardCode = @CardCode) and (DocEntry = @DocEntry)))
                         begin
                            select @error = 10
                            select @error_message = 'Changing of Supplier Reference Number is not allowed!'
                         End
                       End
              End
    End
    I'm not sure if this is really possible,and that I could be just beating the wind by trying.
    Thanks in advance!
    Sean

    To avoid modifiing the vandor reference use this:
    IF @Object_type = N'18' and @transaction_type = N'U'
    BEGIN     ---
    declare @li int
    declare @pref nvarchar(100)
    set @li=
    (select max(t.LogInstanc)   from ADOC t
       where t.ObjType=18 and t.DocEntry=@list_of_cols_val_tab_del)
    set @pref=
    (select isnull(t.NumAtCard,'')    from ADOC t
        where t.ObjType=18 and t.DocEntry=@list_of_cols_val_tab_del
          and t.LogInstanc=@li-1)
    If @pref !='' and @pref !=
    (select isnull(t.NumAtCard,'')   from OPCH t
       where t.DocEntry=@list_of_cols_val_tab_del)
    Select @error = 10, @error_message = N'Changing of Supplier Reference Number is not allowed!'
    END     
    --- To avoid using duplicated reference try this:
    if @object_type = '18' and @transaction_type in (N'A', N'U') -- AP invoice
    BEGIN          ----
    declare @Invoice AS VARCHAR(15)
    declare @Card AS VarChar (20)
    SELECT @invoice = NumatCard, @card = CardCode FROM dbo.OPCH
         WHERE DocEntry = @list_of_cols_val_tab_del
    If exists (SELECT T0.cardcode, T0.NumatCard FROM OPCH T0 where T0.NumatCard = @invoice
               and T0.CardCode=@card and T0.DocEntry!=@list_of_cols_val_tab_del)
    Select error = 10, @error_message = N'Duplicate Supplier Reference Number!'
    END          ----

  • Configuring double invoice check for vendor invoices posted through FB60

    Dear all
    Can anyone tell me how to configure double invoice check for vendor invoices posted through FB60.
    for miro documents..we can use Tcode OMRDC
    Is there any such tcode which can be used for configuring fi invoices for double checking..
    regards
    Expertia

    Dear Expertia,
    In FI,when checking for duplicated invoices, the system compares the
    following :Vendor, currency, company code, gross amount of the invoice,
    reference document number and Invoice document date.
    SAP Note 305201 clarifies this in a more details; please read it.
    The following fields must be identical for Duplicate invoice check
         Company code                              (BUKRS)
         Vendor number                             (LIFNR)
         Currency                                  (WAERS)
         Reference number                          (XBLNR)
         Amount in document currency               (WRBTR)
         Document date                             (BLDAT)
    If the document is having any one of the above filed different then the
    system does not consider it as a duplicate invoice.
    Also It will check duplicate invoice check in vendor master data and
    in posting key is there check box selected for sales related
    The setting you making in OMRDC i.e Materials management->Logistics
    Invoice Verification->Incoming Invoice ->Set Check for Duplicate
    Invoices is only valid for MM and not  FI invoices posted via FB60/FB65
    You should check the F1 help on field "Chk double inv." (LFB1-REPRF)
    in the relevant vendor master record (transaction FK03).
    Please also check, that message F5 117 has been set correctly in the
    IMG using this path:
    Financial Accounting -> Financial Accounting Global Settings ->
    Document -> Default Values for Document Processing -> Change Message
    Control for Document Control For Document Processing
    Finally & mainly, go to the relevant posting key is defined as sales
    related in transaction OB41. You have to flag this field if the
    duplicate invoice check should work.
    I hope this helps You.
    mauri

  • MM-Check Double Invoice functionality for Vendor Invoices

    Dear All,
    How Check Double Invoice functionality for Vendor Invoices can be implemented in SAP?
    We have implemented Check double invoice with the standara sttings for it however if i give my referenece text differently it will aloow me to post double invoices and against vendor open items are shown for payment?
    Is there any other efficient way to do it?
    Thanks and Regards
    Shrinivas

    dear SAPian friend,
    go through the below link and you will find the solution with the screenshots.
    http://sapfunctional.com/MM/Duplicate/Invoices.htm
    U can also do the setting using the SPRO t-code:-
    path is
    >>SPRO
    >>SAP Reference IMG
    >>Materials Management
    >>Logistics Invoice Verification
    >>Incoming Invoice
    >>Set check for duplicate invoices

  • Posting invoice in MIRO when invoice is out of tolerance

    I can not post an Invoice in MIRO when it is out of tolerance with payment block. I would like to go to MRBR to release the block.
    What am I missing? config somewhere?
    Need help- thanks
    I

    Hi,
    Go to the vendor master data, at the view -- Payment transaction accouting, you can find a field of "Payment block", assign a block indicator to the field. Then system will automatically block the payment for every invoice document which is posted under the vendor number.
    Hope it could answer your question.
    Good day
    Z.T

  • Query Report:To Retrieve Data from A/R Invoice and A/P Invoice

    Hii Experts,
          I am a new Sap B1 Trainee.I am facing a problem when retrieving data from A/R Invoice and A/P Invoice in order to track
    Expenditure and Revenue according to a Bussiness partner,
    I am using union to retrieve the information,but it is saying a error that  Error Converting Varchar to Numeric and also
    i would like to know how can i show the total final payment by reflecting Downpayments in A/R Invoice and A/P Invoice
    With Regards
    Cherry.

    Hii.
    My Sap B1 version is 8.8.1 and patch level is 20. Actully i need a scenario where i can able to show both Expenditure and Revenue of a particular bussiness partner and profit/loss in a single query report.
    I need some tips regarding this,When i am doing union i am getting conversion error converting varchar to numeric when i take
    Sum(Line Total) from OINV and Sum(line total) OPCH group by docdate and docentry and BP .
    and another scenario is how to deduct A/P downpayment or A/R downpayment from A/P invoices and A/R invoice to get the final Revenue and Expenditure ..
    Thanks & Regards
    Cherry

  • Difference between Parked invoice and posted park invoice.

    Dear All,
    I am trying to create a new program to extract the invoices posted by MIRO and MIR7.  I have no problem to find invoices posted by MIRO in RBKP and RSEG.
    However, as currenty one user will use MIR7 to park invoices and another user will use MIRO to post the invoices, I don't know how to sparate the parked invoice and posted park invoice. C's I have found that the parked not posted invoice and posted park invoice were all displayed in RBKP with transaction code MIR7.
    Thank you very much
    Emma

    Hi,
    *Park*
    If the Invoice document is missing some information that is required for posting. In this case we will park the document. Here some preliminary checks will be performed.  Balance might not be zero.But in this case updates were performed.
    *Post*
    The invoice was posted online and verified as being correct(Balance must be Zero). Updates were made.
    Please use RBKP-RBSTAT field to find out the different type os status.
    I hope this helps.
    Regards
    Ravinagh Boni

  • Creation of one Excise invoice from multiple commercial invoice

    Hi
    Can it possible to create one excise invoice from multiple commercial invoice
    regards,
    K.S.Rao

    hi,
    I am trying in another way - creating one proforma invoice for multiple deliveries. and with that proforma invoice trying to create excise invoice.
    But i am facing problem in creating proforma with multiple deliveries because of DIFFERENT NUMBER RANGE IN HEADER (delivery)AT FOREIGN TRADE --- UNDER ORGANIZATION --- NUMBER OF FOREIGN TRADE DATA - ( which is internally assigned by the system)
    If i can get where this number is assign my problem is solved
    K.S.Rao

  • Single Commercial Invoice for multiple Excise Invoices

    Hi ,
    The business requirement is like this:
    Contract1- Sale Order1- Delivery1- Excise Invoice 1(17th Feb) - Price As per Contract
    Contract1- Sale Order1- Delivery2- Excise Invoice 2(17th Feb) -
    Contract1- Sale Order1- Delivery1- Excise Invoice 3(17th Feb)
    Contract1- Sale Order1- Delivery3- Excise Invoice 418th Feb)
    Contract1- Sale Order1- Delivery4- Excise Invoice5(18th Feb)
    Contract1- Sale Order1- Delivery5- Excise Invoice 6(18th Feb)
    Contract1- Sale Order1- Delivery6- Excise Invoice 7(19th Feb)
    Contract1- Sale Order1- Delivery7- Excise Invoice 8(19th Feb)
    For all the 8 Excise Invoices, single Commercial invoice with Price based on the Exchange rate.
    Is it possible to do in SAP , if so, what are the settings need to be done.
    Thanks& Regards
    Sri

    Dear Lakshmipathi,
    In standard, we can create excise referencing billing document and I dont know how you could generate multiple excise invoices. Are you generating proforma against each delivery ??
    Delivery1- Proforma Invoice1- Excise Invoice1 (17th Feb) - Customer A- Shiping to X
    Delivery2- Proforma Invoice2- Excise Invoice 2(17th Feb)- Customer A- Shipping to Y
    on 17th Feb one ARE-1 for both the Excise Invoices of Customer A
    Delivery3- Proforma Invoice3- Excise Invoice3 (18th Feb) - Customer A- Shiping to X
    Delivery2- Proforma Invoice4 Excise Invoice 418th Feb)- Customer A- Shipping to Y
    on 18th Feb one ARE-1 for both the Excise Invoices of Customer A
    Finally, for all the 4 Excise Invoices on 28th Feb, Client wants to Send a Commercial Invoice for the total dispatch qty(@1000US$/Ton) and the Exchange rate(Ex:48.46)  is taken based on the Bank Negotiations.
    I would like to understand, Is its possible to create a commercial invoice  with Accounting entries for the above mentioned scenario for Excise Invoice 1 and Excise Invoice 3.(As in Proforma Invoice no accounting entries created). Based on this the client will recieve the payment from the Customer A.
    Thanks & Regards
    Sri
    Edited by: Sri on Feb 18, 2009 3:18 PM
    Edited by: Sri on Feb 18, 2009 3:23 PM

  • Invoice Number and Performa invoice number

    Hi all
      I want to get the combination of invoice Number and Performa invoice number, I have got the VBFA Table, but it’s very slow, any alternative program or function please help me
    Thanks
    Kanishka

    Try AC_DOCUMENT_RECORD. It returns all kind of accounting documents.

  • T-code for cancelled Invoice and cancelled Excise Invoice

    Dear Guru,
    kindly let me know the T-code for cancelled Invoice and cancelled Excise Invoice.
    Wishes,
    Abhishek

    Hi Abhishek,
    I am not aware of any T-code through which you can see the cancelled invoice. I think either you have to go for development (SQVI)
    or
    Extract the list of your all billing document like billing document created from 01.01.2010 to 22.04.2010
    Now go to SE16 --> Table VBFA --> Give your billing document number in field "Preceding Doc." --> and in the field "Subs.doc.categ." --> choose entry "N     Invoice cancellation" --> system will show you all the entries for which cancellation billing document has been created.
    or
    Go to SE16 --> Table VBRK --> enter your billing document list --> In the field "Posting status" --> Choose  option "E      Billing Document Canceled"
    Hope it helps,
    Regards,
    MT

  • Invoice cancellation out of Invoice List

    Hi!
    As per std SAP invoice list processing, all invoices will go in one invoice list. How can I delete a specific invoice out of invoice list?
    Thanks.
    Thomas

    Hi ,
    As per std SAP, once the invoice list is created, it is not possible to delete specific invoice out of invoice list.
    You can cancel entire invoice list and create new invoice list excluding the specific invoice. Also there is simulation option available for creation of invoice lists via the work list for invoice lists.
    Hope this will help.
    Thanks,
    sanjay

  • Down Payment Invoice and A/R Invoice

    Dear Expert
    I have been experiencing a scenario where my client wants to create A/R down payment Invoice to their Customers. But the down payment may or may not be received before issue of the (balanced) A/R invoice and further the client sometimes would have to issue the down payment invoice together with the (balanced) A/R invoice to customers.
    The problem is that SAP B1 does not allow me to refer or adjust the down payment in A/R invoice unless there is Incoming Payment received against the down payment . But as per this scenario the payment may or may not be received before raising the (balanced) A/R invoice.
    I know that using the A/R down payment request could solve the billing issue, however, it can not reflect account receivable of customers which can not satisfy my client's need.
    Could you please suggest some workarounds to overcome this limitation?
    Thank you very much
    Regards
    Elton

    Dear Expert
    Let me clarify my client's scenario more to see whether you could give advise.
    My client's business is project based and the invoicing flow is as below:
    Phase 1 -
    Invoicing  30%
    Phase 2 -
    Invoicing  30%
    Phase 3 -
    Invoicing  40%
                                                   Total 100%
    However, invoice for phase 2 maybe issued before invoice for phase 1 is paid and so do invoice for phase 3.
    There is also possibility that invoice for phase 1 is paid while invoice for phase 2 is not at the time when whole project is completed. Invoice for phase 3 therefore has to be issued before invoice for phase 2 is paid.
    The installments for A/R is not applicable in this case since sales would be realized at the time when the A/R invoice is issued.
    My client would have to realize the sales upon completion of project phase. A/R down payment invoice almost satisfy this scenario however, no A/R invoice of the balance with reference to the down payment invoices can be issued before the down payment invoices are settled.
    Can anything be done to overcome this limitation?
    Regards
    Elton

Maybe you are looking for