Fixed day limit to calculate Due date for payments

Dear Gurus,
My Management wants to regulate its cash flows and want to use terms of payment in such a way that customer invoicing should be due on whole month evenly
Proposed payment plan is that
if invoices are created with 01 to 15th of the month, term of payment should be 40 days due net
if invoices are created with 16 to 25th of the month, term of payment should be 30 days due net
if invoices are created with 26 to 30th of the month, term of payment should be 25 days due net
so according to above scenario, plan should be
Invoice date     Payment terms     payment due date
9/1/2011     40     10/11/2011
9/15/2011     40     10/25/2011
9/16/2011     30     10/16/2011
9/25/2011     30     10/25/2011
9/26/2011     25     10/21/2011
9/30/2011     25     10/25/2011
Requirement,
Please advice how to cater it through OBB8 or should we have to look towards ABAP solution
BR
Sajida

Hi
Create the payment terms like
1)
Payment Terms           Z01
Day Limet                    15
In Payment Terms TAB
Term      Percentage            No,of.days
1             0.00                          40
2)
Payment Terms           Z01
Day Limet                    25
In Payment Terms TAB
Term      Percentage            No,of.days
1             0.00                          30
3)
Payment Terms           Z01
Day Limet                    30
In Payment Terms TAB
Term      Percentage            No,of.days
1             0.00                          25
This will resolve your issue,we can create multiple levels with same payment term with different day limit
Thanks
Kameshwar Rao

Similar Messages

  • Sales Credit Memos, Payment terms and due date for payment

    Hello all,
    does anyone out there know how to get the terms of payment assigned to sales credit memos taken into account when the due date for payment is calculated in the accounting document?  (I know this is a bit puzzling as why should one need payment terms for a credit memo)
    I have looked at SAP notes 17410 et al..but remain unclear re how 'V' is populated in BSEG-REBZG.

    Number of the Invoice the Transaction Belongs to
    For line items which are related to another line item, this field contains the number of the partner document.
    Use
    In the standard system the field is used for:
    o   Credit memos which refer to a particular invoice item
    o   Subsequent invoices for an invoice item
    o   Partial payments for an invoice item
    o   Partial clearings of down payments.
    In the first two cases mentioned, the terms of payment are copied from the cross-referenced invoice item into the item currently being processed. This ensures that items due on the same date are paid together by automatic payment.
    A special rule applies to credit memos which have a "V" in this field.  The due date is determined in the same way as for an invoice. If the field is empty (containing neither a document number nor a "V") the due date is the baseline date for payment.

  • Calculate due date for vendor payment

    hi friends,
    In my project i need to calculate the due date for vendor payment.as my client maintain different payment terms for different vendors am not able to pick the payment key from t052 table and calculate the due date.
    do anyone have a solution for this......
    prajith

    Hi
    You can insert Payment terms in Vendor master and also you can change or assign payment term while making transaction.
    But first of all you should have payment term.
    IMG -- Financial Accounting -- Accounts Receivable and Accounts Payable -- Outgoing Invoices/Credit Memos -- Maintain Terms of Payments
    Regards,
    Amit

  • Year of Cash Effectivity and Due Date for payments in following year

    Hi experts!
    I have a problem with Year of Cash Effectivity when dealing with invoices which have Due Date in a different year from the posting date. I just need revenues and expenses to be recognized under the accrual basis of accounting (with the invoice, not with "cash effectivity" depending on terms of payment). But we do need "cash effectivity" for commitments budget and MM.
    I am using Update Profile=000359, and have tried to "Override Update Profile" for Value Type=54 (Invoices) checking "Posting Date" for Payment/Commitment Budget, instead of "Due Date". I have also deactivated settings that have to do with payments transfer in <<Public Sector Management->Funds Management Government->Actual and Commitment Update/Integration->Integration>>.
    Is there any way to change this without changing Update Profile?
    Thanks for your help!
    Iván Garcí

    Hello Ivan
    I believe this note will help you:
    [Note 883122 - Spanish Public Sector: Specific functions (BAdIs and exits)|https://service.sap.com/sap/support/notes/883122]
    see this paragraph
      BAdI FMRI
      The method FMRI_BADI_9 allows the customer to change, according
      to their needs, the Year of Cash Effectivity in which FI
      documents are updated in Funds Management.
      The system performs some checks (for example the update profile
      has to use the Year of Cash Effectivity) to permit the
      modification of the Year of Cash Effectivity in this BADI. The
      Year of Cash Effectivity determined in this BAdI cannot be
      earlier than the one for the date when the Financial Accounting
      payments are updated in Funds Management.For more detailed
      information on this topic, consult the note 1129408.
    hope this will help you!
    Kind regards
    Mar

  • Function Module to Calculate Due Date from Payment Terms?

    I'm writing an aged debtor report as the SAP standard one isn't quite right for our requirements.  Is there a function module that will calculate the payment due date if I give it the payment terms and the base line date?
    I did a search in SE37 but couldn't see one which fitted my requirements (I was searching on CALCDUEDATE and variantions of).
    Any suggestions welcome, thanks.
    Gill

    Hi,
    Use the FM FI_TERMS_OF_PAYMENT_PROPOSE for calculating the Payment due date
    call function 'FI_TERMS_OF_PAYMENT_PROPOSE'
      exporting
        i_bldat         = gv_bldat
        i_budat         = gv_budat
        i_cpudt         = sy-datum
        i_zfbdt         = gv_zfbdt
        i_zterm         = gv_terms_paym
        i_bukrs         = gv_comp_code
      importing
        e_zbd1t         = gv_zbd1t
        e_zbd1p         = gv_zbd1p
        e_zbd2t         = gv_zbd2t
        e_zbd3t         = gv_zbd3t.
    Regards,
    Dwaraka.S

  • Setting Due Date for task using business days

    While this may not be new news to many, I found little information on how to add a certain number of business days to determine the due date for a task to be used in a workflow.  For SharePoint 2010 environments that cannot run custom code, I have
    found a solution that utilizes two additional columns in the task list.  The first column I named
    Deadline (a number with no decimal places), which will contain the number of business days until a task is to be completed.
    The second I named Business Deadline (a calculated column returning a
    Date and Time).  The formula for the calculated column is:
    =[Modified]+INT(ROUNDDOWN([Deadline]/5,0)*7)+ IF(WEEKDAY([Modified]+MOD([Deadline],5))<MOD([Deadline],5), IF(WEEKDAY([Modified]+MOD([Deadline],5)+2)=7,MOD([Deadline],5)+4, IF(WEEKDAY([Modified]+MOD([Deadline],5)+2)=1,MOD([Deadline],5)+3,MOD([Deadline],5)+2)), IF(WEEKDAY([Modified]+MOD([Deadline],5))=7,MOD([Deadline],5)+2, IF(WEEKDAY([Modified]+MOD([Deadline],5))=1,MOD([Deadline],5)+1,MOD([Deadline],5))))
    The workflow on create in the task list then is:
    Set Deadline to {number of business days}
    then Wait for Deadline to equal {number of business days} 'Necessary to ensure the Business Deadline has been set
    'then Set Due Date to CurrentItem:Business Deadline
    Hope this helps a few others that are beating their heads against their desks like I was.

    Hi,
    Glad to hear that you solve this issue, thanks for your sharing.
    Thanks,
    Linda Li
    Linda Li
    TechNet Community Support

  • Due date for fi open items

    i need to calculate due date for open items as we can see in fbl5n. can ny1 suggest how to calculate dat?
    points 'll b rewarded

    Hi,
      Refer the theards
    https://forums.sdn.sap.com/click.jspa?searchID=12914621&messageID=3772604
    https://forums.sdn.sap.com/click.jspa?searchID=12914621&messageID=1369295
    Regards
    Kiran Sure

  • Baseline date for payment due date.

    Hi,
    In FB60 and Miro, Baseline date for calculating due date for payment is taken as default as document date, as per setting in payment terms. But I want to take this date as date of GR/SE. Can we do this. I also want to make it gray and dont want user to change it. Please suggest how to do it.

    Hi
    go through the link answered by me.
    Re: Substitution - Baseline Date to be replaced by the Goods Receipt date
    the Goods receipt date can be defaulted as Baseline Date.
    tell your ABAP consultant to check the BADI and do the necessary.
    regards
    venkat

  • Effect on SD Credit Limit when extension of Due Date for Certain Invoices

    Dear SD Members,
    Brief Description
    Extension of Due Date for Certain Invoices
    Due Date extension to be made for certain invoices posted in FI
    Requirement
    After Billing is done and invoice is posted in FI management may decide to postpone due date for certain for any particular invoice for a specific customer.
    The payment term will be changed in the invoice and due date should change. But for this no SD credit limit should be affected. The change can only be made by specific user with authorization. The bank also will be intimated with details from SAP.
    What I want to know will there be any effect on SD Credit Management part, when from FI side invoices payment terms due date will be extended. Please share your view & suggestions on this.
    Regards
    Subrat

    There will be no affect on the credit mgmt..... the credit screen captures the total open AR... it does not consider Aging in AR.... all the values even if not due r calucalted in the open AR purpose for Credit....

  • DUE DATE FOR CREDIT MEMO

    Hello,
    I have a question about credit memo -due date.
    Using MIR7, MIRO for credit memo  the due date for net payment is the same with baseline date.
    e.g. document date:18/07/2007
    posting date:18/07/2007
    baseline date:18/07/2007                         terms of payment are 30 days
    the system issue due date : 18/07/2007 but correct is 18/08/2007
    What can I do to calculate due date correct for credit memo ? (baseline date + terms of payment) ?
    Thanks.

    Hello
    Check the settings in "Terms of Payment"
    Check what you have checked in "base line date calculation', I think you need to enter 1 in the box additional months.
    Next in the default date setting, check if you ticked "posting date "
    Reg
    *assign points if useful

  • Calculate due date

    Hello guys:
    I need your help here.
    I try to build an application that has to calculate the due date for 14 days.
    I have two date picker:
    1)P11_BORROW_DATE
    2)P11_RETURN_DATE
    How can i calculate the borrow date plus 14days to become the return date shown in the in the second date picker.
    I am using date format of (DD-MM-YYYY).
    Can u guys explain to me step by step, for example : (html form header region, process, and also htnl attiributes, etc )
    Edited by: user10258545 on 14-Sep-2008 10:57

    hello
    >> It can calculate the date after i press a button. It cannot calculate automatically when i change the borrow date in my application.
    In his example, Denes is using AJAX. You can read more about AJAX with APEX in here - http://htmldb.oracle.com/pls/otn/f?p=11933:63 . This page should answer most of your questions.
    I’m not sure why you think you must press a button in order to fire the AJAX code. You have complete control on the firing timing, by using the appropriate event. Using ‘onchange’ or ‘onblur’ will fire the AJAX code without pressing any button.
    >> Btw, where should i load the process??
    The processes involved with APEX are Application Processes with process point of “On Demand …”. They are been loaded on demand, by part of the AJAX process.
    Regards,
    Arie.

  • Fixed Date for Payment term

    Hi,
    We have a customer with three fixed date of payment depending on the invoice date, but we do not know how to customize payment terms with fixed date. It seems it is not possible with OBB8...
    Thank you very much,
    Ariana

    Hi Ariana,
    Yes it is very much possible using OBB8 to have fixed date of payment.You have to make use of the field Day Limit (which is just below the payment tem field) and Fixed Day and Additional month (Which you will find in the tab for baseline date calculation) in OBB8
    Lets say the you want the TOP (Terms of Payment) like
    1) For invoicing up to 10th of the month the baseline date is 30th of the current month
    2) For invoicing up to 20th of the month the baseline date is 15th of the next month
    3) For invoicing up to 30st of the month the baseline date is 30th of the next month
    Hence when lets say u create a TOP say TEST in OBB8 you will make the configuration as below
    1) Payment Term: TEST, Day Limit: 10, Fixed Day:30, Additional Month: 0
    2) Payment Term: TEST, Day Limit: 20, Fixed Day:15, Additional Month: 1
    3) Payment Term: TEST, Day Limit: 30, Fixed Day:30, Additional Month: 1
    Hope this helps you
    Reagrds
    Pratiksha
    *Assign points if helpful

  • Can't set due date for to do in iCal

    I'm not sure if I'm blind or not, but i can't seem to set a due date for my to-do events. There's an option to say that there is a due date, but all it does is that it bring the view to the current day and changes the icon to an alert icon.
    Is anyone else facing this problem?
    I'm using iCal Version 3.0.5 (1270).

    qwertyjem,
    Click on "due date" and define your requirements (day/month/year) ...if...you have set the preferences to match your requirements in System Preferences...>International>Formats>Region:/Dates/Times.
    ;~)

  • To find cash discount due date for invoice

    Hi,
    is there any fuction module to get cash discount due date using Payment term Zterm, Ztag:1Days from Baseline Date for Payment and Ztag2:Days from Baseline Date for Payment from T052 table.
    Regards,
    santosh

    check the below fuction module.
    CALL FUNCTION 'DETERMINE_DUE_DATE'
      EXPORTING
        I_FAEDE                          = faede
    IMPORTING
       E_FAEDE                          =  faede
    EXCEPTIONS
       ACCOUNT_TYPE_NOT_SUPPORTED       = 1
       OTHERS                           = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    you can pass the zterm and Days from Baseline Date for Payment from T052 table to correspoinding fields of faede structure .
    Thanks and Regards,
    pavankumar

  • New Due date for reversed Invoice

    Hi Experts,
    Can we determine a new due date for reversed invoice through standard configuration? The due date of reversed invoice remains the same as that of the original invoice even if its reversed after a year. It looks very odd that a FICA entry has a due date of past.
    I tried by assigning the out-going payment term to the FICA payment term configuration but it doesnot determines a new due date from the posting date I provide during invoice reversal.
    Any Clue ?
    Regards
    Satyajeet

    Hi Satyajeet,
    As per standard SAP, the due date of a particular invoice is derived from the date you are posting it in SAP and the payment terms configured in the contract account master, irrespective of the fact that whether it is a cancel-rebilled invoice or a normal invoice.
    So if a invoice is posted on 05.08.2011 and the payment terms mantained at the CA master is 5 days then the due date will be on 10.08.2011.
    The due date of a invoice is determined in event R417. Check if any custom FM is assigned in there which is changing the standard SAP functionality.
    Also check event 1330, which gets called from event R417 to determine the due date.
    Hope it helps.....
    Thanks,
    Amlan

Maybe you are looking for

  • How do I insert a photo into a pre-designed template?

    Help!  I downloaded a 30 day trial of Photoshop to design our Christmas family newsletter. Christmas is over and my trial will expire by the time I figure out how to insert a photo!!! This is not very intuitive and I'm exhausted!  Can someone please

  • Diff. Tcodes for Vendor Master Data

    Hi, We create the Vendor Master through XK01 Tcode...In which 3 window comes...General Data, Company Code Data and Purchasing data... In General Data, 4 checkbox are there....Address, Control, Payment Transactions and Contact Persons... Now requireme

  • New Ipod touch and new computer...all bought apps and movies gone?

    Ok i just took ym ipod touch to the genius bar and got a new one and i recently got windows 7...and all my music is there but all my apps and movies arn't in the downloads tab or anywhere!? How can i get these back?

  • XML as result from webService call from JSP

    I have a jsp page, where I will invoke a WebService call, which will return           a big XML object back to me, of which I need to select few key-value pair as           display item in a table only as result.           Any idea how to achieve thi

  • Gallery indexing everything

    Does anyone know of a way to stop the gallery application indexing all the iamges you have on the phone and the memory card? I have a N73 with a 2GB card installed where all of the applications are stored. I have only 14 photos and 1 video on the car