Terms of Payments in Credit Memos

Hi All:
Please help me solve this problem.
The Credit Memo has a due date of 30 days and the Invoice reference field id blank.(No Invoice number or V).
Will the document be posted with the invoice having a due date of 30 days or will the system throw an error?
Your response is highly appreciated.
Thanks
Krishna.

Hi,
The document (Credit Memo) will be posted with the net due date as payable immediatly. SAP picks the payment term setting only when invoice reference is filled or "V" is filled.
SAP will not through any error message.
Regards,
SNDer

Similar Messages

  • Terms of Payment for credit memo

    Dear Friends:
    I have created  terms of payment (Z12). This has to be used in credit memo in customer - T.code F-27 .But in customer master, there is a different terms of payment.How can i use the newly created terms of payment(Z12) in T.code F-27.
    The New Terms of Payment should be in the credit memo by default. Is there configuration settings by which the new terms of payment are selected by default?
    Please advise.
    Regards
    MSReddy

    Hi MSReddy,
    There should be a field in the customer master/company code data/payment transactions tab to enter the payment terms for credit memos.
    If this is not displayed for your customer group check screen layout settings for customers.It might be supressed.
    Regards
    Nadini

  • TERMS OF PAYMENT AND CREDIT CONTROL AREA

    WHERE AND HOW EXACTLY TERMS OF PAYMENT AND CREDIT CONTROL AREA MAINTAINED IN CUSTOMER MASTER RECORD WILL REFLECT WITH EACH OTHER?  AND
    HOW DOES CREDIT CONTROL AREA CONTROLS THE
    TERMS OF PAYMENT OF CUSTOMER MASTER RECORD?

    hi
    1) terms of pay ment and credit memo----
    under customer master record, company code data, and payment transaction tab  there terms of pay ment field is there.
    2)FD32-----customer credit Matins
    regards
    sar

  • Change terms of payment and credit limit

    Hello, i need to change the terms of payment of a customer as well as  his credit limit.
    CUSTOMER - terms of payment
    KNB1-ZTERM
    KNVV-ZTERM
    CUSTOMER - credit limit
    KNKA-KLIMG
    KNKA-KLIME
    KNKK-KNKK
    any idea of how to do this (bapi or FM) besides of doing a BDC

    Try function "BAPI_CUSTOMER_CREATEFROMDATA1"
    First look at it seems to show that it might work.  It calls function "SD_CUSTOMER_MAINTAIN_KNKA_K":
        (iv) insert the credit control data
      IF CREDIT_CONTROL_FLAG = 'X'
      AND SY-SUBRC = 0.
        CALL FUNCTION 'SD_CUSTOMER_MAINTAIN_KNKA_K'
            EXPORTING
                PI_REF_CUSTOMER   = I_BAPIKNA102-REF_CUSTMR
                PI_CUSTOMER       = I_BAPIKNA103-CUSTOMER
            EXCEPTIONS
                KNKA_INSERT_ERROR = 23
                KNKK_INSERT_ERROR = 24.
      ENDIF.
    Would still require some investigation.  But seems like it might be a good starting point for you.
    ~Ian

  • Automatic programme for  Down payments and  Credit memos & pratial payment

    Hi Guysis
    vendor credit memo is 5000rs when i  Excute the Automatic programme for the APP it asks enter payment method for the Incoming payments.
    how to slove this error.
    vendor down payments Automatic payment programme is possible or not
    please give sollution Immdieatly.
    with regards
    srinivas

    Hi,
    rao
    i understood your problem
    we can do it in a different way.
    i think you have a due amount and one credit memo..
    if it is ok
    then in F110
    GO to proposal change and select first the invoice document and REALOCATE then change the bank details
    for ex.
    payment method      M
    bank                        SBI
    account                  curr
    and press shift+F1
    and go back
    select second one that is credit memo
    and REALOCATE
    there you can find the bank
    select that and shift+F1
    thus you do the payment
    this can solve your problem
    thank you
    Shankarchitupolu

  • Automatic Payment Program - Credit Memos

    Hi Experts,
    I have one client scenario.
    There are 3 invoices for the vendor and 1 credit memo. 1 st invoice: 10000, 2nd Invoice is 8000 and third invoice is 7000 and credit memo is 4000.
    Now i have to make individual payment to invoice 1 and 2. I want to clear the third invoice with the credit memo and for the rest of the 3000 i have to clear.
    This all process should go through in APP. How i have to make it possible.
    Thanks,
    SravanK

    Hi Sravan
    if you want invoice wise separate checks you have to enable the tick mark for separate payment for each ref in paying company codes at FBZP t.code.
    first you set of the credit memo against invoice in residual method.ater run the F110. you can get invoice wise checks.
    satish

  • Apply Cash Payment and Credit Memo to an Invoice via DI API

    Hi, All:
    I would like to be able to create an invoice and apply cash and a credit memo to it which equals the total of the invoice.  This will close out the invoice.
    Does anyone out here know if this can be done through the DI API?  If so, some sample code would be greatly appreciated.
    Thanks.

    For those of you who are wondering, here is an example:
                    int invoiceDocEntry = 0;
                    int creditMemoDocEntry = 0;
                    Documents invoice = (Documents)company.GetBusinessObject(BoObjectTypes.oInvoices);
                    invoice.CardCode = "S001600";
                    invoice.DocDate = DateTime.Today;
                    invoice.DocDueDate = DateTime.Today;
                    invoice.Lines.ItemCode = "A2-IC-6"; //$78.00
                    invoice.Lines.Quantity = 2;
                    invoice.Add();
                    if(invoice.Add() != 0)
                        throw new Exception("Could not add invoice: " + company.GetLastErrorDescription());
                    invoiceDocEntry = Int32.Parse(company.GetNewObjectKey());
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(invoice);
                    Documents creditMemo = (Documents)company.GetBusinessObject(BoObjectTypes.oCreditNotes);
                    creditMemo.CardCode = "S001600";
                    creditMemo.DocDate = DateTime.Today;
                    creditMemo.DocDueDate = DateTime.Today;
                    creditMemo.Lines.ItemCode = "B4-HDMI-.7";
                    creditMemo.Lines.Quantity = 1;   // $10.00
                    if(creditMemo.Add() != 0)
                        throw new Exception("Could not add credit memo: " + company.GetLastErrorDescription());
                    creditMemoDocEntry = Int32.Parse(company.GetNewObjectKey());
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(creditMemo);
                    Payments payment = (Payments)company.GetBusinessObject(BoObjectTypes.oIncomingPayments);
                    payment.CardCode = "S001600";
                    payment.Checks.CheckSum = 68.00;
                    payment.Checks.CheckNumber = 100;
                    payment.Invoices.DocEntry = creditMemoDocEntry;
                    payment.Invoices.InvoiceType = BoRcptInvTypes.it_CredItnote;
                    payment.Invoices.Add();
                    payment.Invoices.DocEntry = invoiceDocEntry;
                    payment.Invoices.InvoiceType = BoRcptInvTypes.it_Invoice;
                    if(payment.Add() != 0)
                        throw new Exception("Could not add payment: " + company.GetLastErrorDescription());
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(payment);

  • Credit memo payment term

    hi,
    in customer master, what is credit memo payment term?
    what is the difference between credit memo payment term and terms of payment.
    i read from F1 but still can't get it.
    thanks
    rgds

    HI
    In customer master we define a payment terms as well as Credit memo payment terms.
    Like suppose we have for Customer with Payment term = Net 30 days (Z001)
    And for the same customer we have defined Credit memo terms = Pay Immediately (Z005).
    When we post an Invoice for this customer it will have Payment terms as Z001 i.e. net 30.
    Whereas when we post a credit memo for the above invoice it will inherit the new payment terms from Customer master that is, Z005 i.e. due Immediately.
    Credit memo payment terms can be same as payment term or different depending on the business requirement.

  • Credit management and Terms of Payment

    Hi
    Can anybody throw some light on the role of Terms of Payment in .Credit Management.
    Thanks in advance
    Ravi

    Dear sankar ravi, 
    Credit management
    Purpose
    Outstanding or uncollectible receivables can spoil the success of the company greatly. Credit Management enables you to minimize the credit risk yourself by specifying a specific credit limit for your customers. Thus you can take the financial pulse of a customer or group of customers, identify early warning signs, and enhance your credit-related decision-making. This is particularly useful if your customers are in financially unstable industries or companies, or if you conduct business with countries that are politically unstable or that employ a restrictive exchange rate policy.
    Integration
    If you are using the Accounts Receivable (FI-AR) component to manage your accounting and an external system for sales processing, Credit Management enables you to issue a credit limit for each customer. Every time you post an invoice (created in FI-AR), the system then checks whether the invoice amount exceeds the credit limit. Information functions such as the sales summary or early warning list help you to monitor the customer’s credit situation.
    If you are using both the Accounts Receivable (FI-AR) component to manage your accounting and the Sales and Distribution (SD) component for sales processing, you can also use Credit Management to issue credit limits for your customers. You can make settings in Customizing to decide the scope of the check and at what stage in the process (for example, order entry, delivery or goods issue) a credit limit should take place. General information functions are also available for use with credit checks.
    Features
    If you are using both the SD and FI-AR components, Credit Management includes the following features:
    Depending on your credit management needs, you can specify your own automatic credit checks based on a variety of criteria. You can also specify at which critical points in the sales and distribution cycle (for example, order entry, delivery, goods issue) the system carries out these checks.
    During order processing, the credit representative automatically receives information about a customer’s critical credit situation.
    Critical credit situations can also be automatically communicated to credit management personnel through internal electronic mail.
    Your credit representatives are in a position to review the credit situation of a customer quickly and accurately and, according to your credit policy, decide whether or not to extend credit.
    You can also work with Credit Management in distributed systems; for example if you were using centralized Financial Accounting and decentralized SD on several sales computers.
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh
    P.S. you can send me a mail at my mail id [email protected] for any specific details

  • F110 - payment run for paying Credit memo to the customer

    Hi,
    I haven't found any question about payment of credit memo to the customer via transaction F110. There is a error message Payment with currency EUR, payment method: No valid payment procedure appears. On the customer and in FBZP there are ok data.
    The problem is I think in the sales invoice, where I don't se the payment method.
    Do you have any experience with that?
    Thanks
    Saso

    i solved the problem by myself

  • Credit Memo replication from CRM to ECC

    Dear all,
    We need to create credit memo to refund the customer payment.
    Credit Memo needs to be Released / approved at item level and Credit Memo Request has to be created in ECC.
    Credit Memo release is based on different levels of Rules.(can we user Multilevel Categorization at item level?)
    Credit Memo need to be created in ECC system based on a set of Rules
    For all released line items system has to create credit memo requests automatically in ECC system.
    Please suggest me that, how can we configure this functionality in SAP CRM?
    Your help will be highly appreciated.
    Best regards

    Hi Raghu,
    Have a look at the following link : [Data Exchange for Complaints: SAP CRM - SAP ERP|http://help.sap.com/saphelp_crm70/helpdata/en/2e/b0da18dbe84ed9bdff9a5d6d91f531/frameset.htm]
    Hope this will help.
    Thanks,
    Samantak.

  • Reg: Two credit memo for one credit memo request

    HI expert,
    The requirement here is related to warranty, payment thru credit memo, partial payment 90% first 10% after receipt of some required documents.
    So need to configure for two credit memo with ref to one credit memo request, not based on qty.. we have worked on value part so no problem abt it.. will share it later,  but at first we need to create two credit memo with ref to 1 Credit memo Req.
    Please through some light....
    Regard
    Praveen

    Hi,
    You can use the BILLING PLAN for this
    Just assign the TAO  ITEM CATEGORY for you sales document type in VOV4 and maintain the Billing Plan dates while processing the Sales order.
    Now you can create two Billing documents with reference to the Same order based on the BILLING PLAN dates maintained in the Sales ordre-Item-BILLING PLANT tab will appear .
    There you can define the BILLING DATE and on that particular date you can create the Billings for one sales order.
    Please check and revert back if you need frther details
    regards,
    santosh

  • Manualy applied Credit Memo

    I am not sure if this is the correct form for this question, but I will start bey asking it here.
    I am creating a statement using the SDK/VB.net.  I am trying to show Open Invoices with partial payments
    or Credit memos applied againstthe Invoice.  I understand how to join the tables (ORIN & RIN1) for a Credit Memo
    that the system applied to and Invoice(s) but Credit Memos that are applied using the Internal Reconcilation are joined differently.
    Could some one point me in the direction of what tables are updated to Join a Credit Memo to an Invoice if Internal Reconcilation is used to Apply a Credit Memo to an Invoice?  And is there any documentation to explain the relationship?
    And if this is not the correct forum,  please point me to th ecoprrect forum or this question!
    Thanks in advance!!
    Dana

    Dana,
    Sound like you are doing SDK.  If that is the case, post is on SDK forum.  In general, it would better to do this reconciliation in UI.
    Thanks,
    Gordon

  • Manually applied Credit Memo

    I am not sure if this is the correct form for this question, but I will start bey asking it here.
    I am creating a statement using the SDK/VB.net. I am trying to show Open Invoices with partial payments
    or Credit memos applied againstthe Invoice. I understand how to join the tables (ORIN & RIN1) for a Credit Memo
    that the system applied to and Invoice(s) but Credit Memos that are applied using the Internal Reconcilation are joined differently.
    Could some one point me in the direction of what tables are updated to Join a Credit Memo to an Invoice if Internal Reconcilation is used to Apply a Credit Memo to an Invoice? And is there any documentation to explain the relationship?
    And if this is not the correct forum, please point me to the correct forum or this question!
    Thanks in advance!!
    Dana

    Hi Dana,
    What version of SBO are you using? The reconciliation process has changed significantly between versions 2005 and 2007 so the query requirements are quite different.
    For 2007A, the ITR1 table contains details on any matching that's been done. The SrcObjType column holds the transaction type (13 for an AR invoice and 14 for a AR Credit Note) and SrcObjAbs holds the DocEntry.
    I had to write a statement in Crystal for a client who had multi-currency business partners and who used down-payment invoices. It was impossible to use a single query to generate the data so I ended up writing a stored procedure to collate the data. This used the JDT1 table to get a list of transactions on the BP's account and then used the ITR1 table to work out how much of each document was still outstanding.
    Kind Regards,
    Owen
    P.S. There will be people on this forum who can help you. The most suitable forum for this type of question is the reporting forum:
    Reporting and Printing

  • Credit Memo - Terms of Payment Default

    My earlier post received no response, so I am posting again,
    In MIRO if I create a credit Memo, payment terms default from PO. (not from vendor master) I do not know if was configured that way. How can I find out ?
    I do not want payment terms to default from any thing, neither PO nor vendor master.
    It should fall due immediately say based on base line date, which is posting date in our case.
    How can I do this ?
    Thanks

    Hello,
    You might find interesting this OSS Note: [322430 - MIRO: Proposal logic for terms of payment|https://service.sap.com/sap/support/notes/322430]
    Regards,
    Milen.

Maybe you are looking for

  • How can I download a file over the internet from a WebDAV server?

    I am trying to download a file over the internet from a WebDAV server. I've tried doing it with Datasocket as suggested in these articles, <a href="http://digital.ni.com/public.nsf/websearch/f3cc5f7e60a75cb2862567e700696abf?opendocument">Retrieving a

  • Why am i not able to find iPad documents in the iCloud on my imac

    I believe that I have documents that are saved to the iCloud and then switched to the iCloud drive but I am unable to view those documents on the iCloud online or on my iMac. Why can i not find the documents.

  • How can I sort my bookmarks with newest bookmarks on top

    My previously installation of OS X sorted my bookmarks menu to have the most recent bookmarks at the top. I'm not sure how I did this. It was probably some terminal command. I remember at some point Apple changed the behavior (why they would do this

  • Type of OLE objects in Oracle

    Hi, In Oracle, which is the type equivalent to OLE objects of Access? Thanks with anticipation. Regards

  • Installing CS6 Suite

    I am considering purchasing CS6 Design Suite.  In installing the applications, can I pick and choose which applications to install and can I split the applications between two different PC's.  Will they all use the same serial number to install?  And