Invoice Payment Error

Hi Guys,
I am facing the following issue.
We are posting a vendor down payment in F-48.
We are trying to process the open items in F-58 and when we are posting, we are getting the following error.
"Deferred Tax : Post Invoice and Payment Seperately $1"
Please advise.
Thanks,
Srikanth.

Hi,
It is not a Validation. i have checked the message in OSS and it says as follows
"The error occurs only if the invoice reference is removed from the down payment clearing during the entry."
we have given the  reference number in the vendor invoice  but still shows the same message.
Thanks
srikanth.

Similar Messages

  • A/R Invoice+payment error

    Hi,
    when i go to create a a/r invoice + payment for one time customers, I get an error message which says default business partners for invoivce and payment not defined message 439-39. I know we have to do initial settings. I created a default customer wth code c9999. Apart from this, what other settings do I have to do?

    Hi,
    You need to define the default Custmer code at the Sales Tab in the Administration > Setup > Financials > G/L Determination window.
    Following information from Online Help (F1) will be useful :
    Default Customer for A/R Invoice + Payment If you perform one-time sales (that is, the payment is made at the same time that the A/R invoice is generated), enter the code of the one-time customer, to which you will generate the A/R invoice + payment document whenever a one-time sale is made.
    Regards,
    Jitin

  • Payment amount is greater than invoice amount error

    Payment amount is greater than invoice amount error when doing incoming payment
    regards
    kavitha S

    Hi Kavitha,
    please check in the OINV table the balance due on the invoice. This amount has to match the payment. If the problem is due to different decimal places & you are using a version lower than 2007 you will be able to change the decimal places for this particular payment. If you are using 2007, you will no longer be able to reduce the number of decimal places. In that case you could check out SAP note 1321183 & verify with your accountant that the workaround may be used.
    All the best,
    Kerstin

  • Outgoing payment error: invalid payment to name

    Hello,
    We are trying to do a outgoing payment error. Everything seems to be allright (dates, amounts...), but when adding
    the payment the following error is appearing in red in the status bar:
    "Invalid payment to name"
    Do you know why?
    Version is 2007PL03
    Thank you in advance for your help.

    Hi
    Have you changed the BP data like BP name or address since the purchase document was generated?
    Try to edit that data in the original document (like Invoice) to seeif you can use the current address at the drop down box at the Logistcs tab.
    Paulo Calado
    SAP Business One Forums Team

  • AR Invoice + Payment won't allow negative

    When using AR Invoice + Payment the screen calls Payment Means (moneybag) when you save the Invoice. The Payment Means window is only configured for Incoming Payments, and rejects a negative (ie Outgoing) value.
    Some user companies have POS software that posts transactions to B1 from tills in a shop.
    When a customers buys an item for, say, £19.25 using a £20 Gift Voucher, and expects £0.75 change, the POS software attempts to post the transaction to B1 and generates an error - causing the whole batch posting to fail.
    To make this work requires replicating the transaction manually using a vanilla AR Invoice for the item at £19.25 and qty -1 of Gift Voucher at £20 to generate an AR Invoice with a net value of £-0.75. Then you can do a customer Outgoing Payment of £0.75 to reconcile.
    Can the Payment Means offered in AR Invoice + Payment be enhanced to include Outgoing (-ve) too, and the functionality be incorporated to accept such transactions from POS software?
    Regards,
    Mike Burmeister

    As far as I know, your registered location and your credit card information must match... but,
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • ETax Module - Problems displaying in req, PO, invoice, Payment, reports...

    Hi,
    We are in the midst of a 12.1.1 implementation and we have encountered a significant problem with Oracle eTax module.
    Are there others that are encountered problems we are faced with?
    1. Currently eTax information is not displayed on any existing requisitions, purchase order, receiving, invoice, payment, reports or forms.
    2. eTax distinct tax accounts are not being applied to every transaction
    3. eTax has rounding errors, when processing small amounts having multiple distirbutions.
    4. eTax information is only generated on purchasing document, after accessing the Tools bar and selecting, 'Manage Tax'. If you don't do this step no taxes are applied.
    This is just a fluke or am I in the same boat as everyone else?
    Thank you in advance for your comments, advice and expert opinion.
    John

    11Albert11 wrote:
    bpont wrote:I am having similar problems...not sure if it's related, but have a look at my post: https://bbs.archlinux.org/viewtopic.php?pid=1253942
    We have the same Intel Chip Maybe some problem with the driver or de dri I'll try the SNA method to se if it helps.
    Using SNA in 20-intel.conf solved my problem, I see the desktop and programs right and I have Slim login back. But now I have another problem flash content in firefox is displaying weird and I think is not a flash problem because it happens in Chromium too.

  • Create A/R Invoice + Payment

    Hi,
    My customer is using a our POS (point of sale) system to made order and invoice (payment is done immediate). I want to import these transaction information to SAP B1. I will also use B1 to maintain my stock inventory and Journal entry. I think what I need is similar to the "A/R Invoice + Payment". Instead of creating these invoice with the B1 front-end, I would like to develop a console program in VB .NET (2008) with the B1 SDK.
    I have reference the SDK help on invoice and try the following code.
               'Create the Documents object
                Dim vInvoice As SAPbobsCOM.Documents
                vInvoice = oCompany.GetBusinessObject(BoObjectTypes.oInvoices)
                'Set values to the fields
                vInvoice.Series = 0
                vInvoice.CardCode = "C99998"
                vInvoice.HandWritten = BoYesNoEnum.tNO
                vInvoice.PaymentGroupCode = "-1"
                vInvoice.DocDate = Today
                vInvoice.DocTotal = 5733
                'Invoice Lines - Set values to the first line
                vInvoice.Lines.ItemCode = "A00001"
                vInvoice.Lines.ItemDescription = "IBM Infoprint 1312 喷墨打印机"
                vInvoice.Lines.PriceAfterVAT = 4095
                vInvoice.Lines.Quantity = 5
                vInvoice.Lines.Currency = "RMB"
                vInvoice.Lines.DiscountPercent = 0
                'Invoice Lines - Set values to the second line
                vInvoice.Lines.Add()
                vInvoice.Lines.ItemCode = " A00002"
                vInvoice.Lines.ItemDescription = "IBM Infoprint 1222 喷墨打印机"
                vInvoice.Lines.PriceAfterVAT = 2047.5
                vInvoice.Lines.Quantity = 5
                vInvoice.Lines.Currency = "RMB"
                vInvoice.Lines.DiscountPercent = 0
                'Add the Invoice
                lRetCode = vInvoice.Add
    However, the vInvoice.Add always return below errors.
    -2028 No matching records found (ODBC -2028)
    Can you give me some advise?
    Besides, I think I only need to create the invoice and payment objects so as to pretend as A/R Invoices + payment? I don't need to create an order object, isn't it?
    I think it may be easier if I can load the invoice object from an XML file. Can I use the GetBusinessObjectFromXML method on invoice and payment object? Can you share with me some code samples?
    Thank you very much!
    Yvonne

    I'm not sure about this but give it a Try to remove the line which set the series. ( remove/comment that line )
    I have same error message regarding with UDO series ( which is working fine in 2005 )
    ref note : 1328973

  • Invoice and reciept must be paid exactly in A/R Invoice + Payment

    We have set the option of overpayment/undepayment amount to 1.00 in the incoming payment of per document tab in the document settings. However, when we enter an invoice and then pay the document with under/overpayment of 1.00 or less in the A/R invoice +payment screen we get the following error: invoice and reciept must be paid paid exactly (message 131-45).
    Is there an option of adding the document for cash sale customers even if the payment is greater than or less then by atleast 1.00 due to rounding/adjustments.

    Hi Asif
    A/R invoice+ Payment
    SAP Business One provides the A/R Invoice + Payment transaction for sales to one-time customers.
    Prerequisites
    The customer pays the entire amount at once (for example, in a shop).
    The customer does not need documents such as an order or delivery note document.
    Settings in the System
    You maintain a representative master record for one-time customers in the system (Administration - Setup - Financials - G/L Account Determination, choose the Sales tab page, then choose Default Customer for A/R Invoice + Payment)
    The system automatically calls up this customer when you enter the invoice. You cannot change the customer number in the document. You can, however, change the customer's name and address in the fields provided.
    Using the default values in the user parameters, you can also assign a separate customer master record to each user for the A/R Invoice + Payment transaction.
    Exception: The customer only makes a partial payment
    In this case, you should create a separate customer master record for this customer so that you can monitor the incoming payments.
    Regards
    Rashid

  • Unable to open A/R Invoices + Payment

    Hello,
    I am unable to open the A/R Invoices + Payment from the Sales A/R module.
    It gives an error Default business partner for invoices and payment not defined.
    I am connected to the SBODemo_US database.
    Thanks,
    Sheetal

    Hi Sheetal Pisolkar
    Inside sbo go to Administration->setup->Financials->G/L Acc Determination. On the sales tab you must fill in "Default Customer for AR Invoice + Payment" with a valid BP Code. Then it will work.
    Hope this helps

  • Invoice payment status will update in SRM

    Dear Experts,
    I  have done the invoice in SRM and invoice created in ECC and the same invoice number has been updated in SRM with status 'posted in the backend'.
    for thi invoice, i have completed the payment. I would like to know whehter these status will be updated in SRM or not?
    Thanks
    Ravi

    Hi
    It is not possible to see, but there is a way.  You need to check in ECC in FBL1N for this invoice for the invoice payment. and if you are confirm that no further invoice you need to tick final invoice posted in PO.
    With this tick you can confirm the status of the payment.
    regards
    Satish

  • Invoice Payment status in SRM Browser

    Dear SRMers,
    System Information: SRM 4.0, R/3 4.6 c
    We have a situation where users want to see the invoice payment status in the SRM browser. We have not implemented the Invoice module in SRM and invoices are posted and updated in R/3.
    Please suggest what is the best way to accomplish displaying the invoice payment status in SRM browser preferrably in the shopping cart header or in the follow on documents area with less custom work ? Any ideas are welcome.
    Points will be rewarded for answers
    Thanks in advance,
    Bob.

    Hi,
       As explained in one of my previous thread,running the report "BBP_IV_UPDATE_PAYMENT_STATUS" does not update the status in SRM .So for this there will be a lot of std modifictaions required to update the status in the SRM browser(SC history/follow on docs) i.e. ITS template as well as the std includes.
    BR,
    Disha.
    Pls reward points for useful answers.

  • Invoice Payment Block (RBKP-ZLSPR / BSEG-ZLSPR) Update

    Hi ABAP Gurus,
    Good day.
    Basically, I need to update Invoice Payment Block from "W" to "R".  I have tried BAPI_INCOMINGINVOICE_CHANGE but could not change the Payment from "W" to "R".  I believe that this is part of the said FM's restriction.  As per documentation, "it is not possible to change invoice documents flagged for invoice verification in background using this method".  Payment Block "W" is basically Invoice Verification via Workflow.
    On the other hand, I have also tried to use FM FI_DOCUMENT_CHANGE without any success. I keep on getting no document found.  I have played around with the parameters being passed but without any luck.
    Can you kindly provide a solution for this?  Thanks in advance for your help.
    Best regards.
    Brando Braganza

    Hi,
    You want to release a blocked invoice.You can use following BAPI
    'BAPI_INCOMINGINVOICE_RELEASE'
    For sample code
    goto>SWO1>Enter BUS2081
    Method-->Releasesingle
    Thanks
    Nabheet

  • Invoice payment due date.

    Dear all,
    I would like to display the invoice payment due date in my SAPscript. I've heard about the FI_TERMS_OF_PAYMENT_PROPOSE function module and thought that it could feet my need. But I'm wondering if there is no other way to proceed since I can't find documentation on the above function module. Also I'm surprise to do not find in standard among the structured tables the invoice payment due date data.
    Best regards.
    Nozome.

    Hi Nozome,
    You may look at the following post.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent?documenturi=/forums/sdn_jive_forums/thread{74687265616449443d3731303434}.jspa
    Cheers
    Vinod

  • Invoice payment made but document not displaying

    HI gurus ,
    I have made an invoice payment  but the document  is not displaying in FB03. How could I know if the posting went through properly or not?
    many thanks for your help
    regards
    cecile

    Hi,
    TIP 1]
    in F110 ( payment run ) you can find a icon Payment ( that one that looks like a paper scheet ). This is payment log and here you can also find which documents were posted by payment and also by which open postings positions. This requires by payment run addtional log check box and vendor/customer number.
    TIP 2]
    In FB03 you can find also by using dynamic selection and selection option Transaction with value "F110" than a list of documents posted in F110 will popup. With another dynamic seletion option it will be more accurately.
    TIP 3]
    Use FBL1N with specific select option to see cleared items to specific date. By generated list of line items you can find your invoice and clearing document as wrote Nitin abov.
    Hope it helps
    Jan

  • A/R invoice+payment and A/R invoice PLD reports

    We are using PLD to generate our reports. Our A/R Invoice+payment report is different from our AR invoice. We have designed to report formats for this in PLD. However, PLD allows to preview only one report that has been made default. Is there an option that we can use to select the type of report to print especially for these reports?
    Regards,
    Asif

    Hi
    I don't think there is any alternative way beside selecting PLD everytime you print the layout .
    I believe it is done by same person (both A/R+ payment and A/R invoice )
    If not you can do :
    1. make your PLD  default  by user  or
    2. In most cases ,only few customer pays right away , you can set PLD default by Business partner or customer who does that
    Hope this helps
    Bishal

Maybe you are looking for

  • Can not select a destination Volume

    Stuck on this one.. a macbook 1.88 intel I bought my wife has been giving me problems for the past couple of years.. would have to re-install OS, after crashes.. maybe four times in past 2 years.. will about four months ago I had to re-install again

  • Block auto-approval for initiator of project

    We have a need to requirement to block auto-approval for initiator of project invoices if he or she is also an approver. Please can someone clarify if this can be done using functional setups or WF customization is required.

  • Is this a proper way to check if a string exist in a db-column?

    I don't know I am posting this in the right forum... anyway... I am trying to check if a string as an email address exist in a database with jsp (by returning true if the string exist). I have managed to do it but I am not sure if this is the best wa

  • Add Row Number and use it to calculate other column

    Hi, I have below query which I am using to generate a report. Select (count(I.Colour)*3) as TotLitres, (count( distinct P.description)) as NumOfMachine, (count(I.Colour)*3)/(count( distinct P.description)) as AverageLiter, DATEName(MONTH,ShipDate) +

  • Does any app exist to track the history of iphone

    is there any app which can track the history of the apps opened or used in the iphone ?