Payment terms Payables - Can a discount period be longer than the Due Date

My client regularly pays their supplier invoices beyond the due date but yet deducts the early payment discounts
anyway
I have tried unsuccessfully to create payment terms that would have the correct due date ex Net 30
But would nevertheless calculate the discount they wish to take even beyond that due date
For example try to set up a payment term 2% 60 Net 30
But the discount is always canceled beyond the due date even if I set the discount period to go beyond the due date
Now it is true they could still manually take it but the system would no longer calculate it for them
The only way I think I can make this work is to make the due date period equal to the discount period
So 2%60  Net 60
Am I missing something here
The client used to be able to do this automatically in his old Accpac dos system (take the discount anyway)
Any comments would be appreciated
Thank you
Georges Ostiguy

Hi Georges,
the application considers the due date as the pertinent date & uses this date to calculate discounts, ageing reports etc.So this date cannot be used as 'merely advisory'. This is also the reason why this date is always the last date where the application allows an automatic discount calculation to.
It is possible to manually change the due date of AP invoices & then adjust the 'Cash Discount Date Offset' field in the accounting tab of the document. This then allows an automatic re-calculation of the discount according to the payment terms & the updated due date.
Since your customer uses the due date on the AP invoice received as an FYI only, you could let them enter this date in the BP Reference field on the document in addition to the actual vendor refenece number & then make that column visible in Step 6 of 9 in the payment wizard. Then maintain the actual due date as decided by your customer in the document & adjust the cash discount offset date.
All the best,
Kerstin

Similar Messages

  • How can I move a title longer than the screen, no the page but just the title in FCP X?

    How can I move a title longer than the screen, not the page but just the title in FCP X?

    Select the title clip in the Timeline, Then Transform. Either click and drag or use the Inspector Position parameters to adjust.
    Russ

  • My iphone home button wont work - according to the Sale of Goods act I can expect this to last longer than the 1 year 83 days that I have had the phone, regardless of any guarentee

    I have a 3Gs iPhone, which I've had for 1 year 83 days and the home button si faulty. I have checked on the internet and this seems to be a common issue.
    I have a contract with O2 for 24 mouths due to run out March 2012 but the phone was bought from Carphone Warehouse.
    I have been to O2 and they say it's out of the Apple warranty and therefore I will have to pay for a repair. They also have now said because it came from CPW they will do nothing for me.
    I have been to Apple and they say the same thing that I have to pay for the repair as it's out of warranty
    My query is surely I can expect a phone that has been looked after should last longer than 83 days? Therefore under the sale of good act I should get a repair or replacement for free???
    I am now paying for a contract where the phone doesn't work!

    Good luck with that. Most of the world does not have anything like what you believe your "sale of goods act" is supposed to do. It sounds like you expect it to extend the warranty on a Product from Apple until your contract with an entirely different company is complete.  I think you'll find that you are misinterpreting that law.  The exception may be if you purchased the phone from the carrier and the law is written in such a way as to require them to replace the device if it fails during the term of the contract, though I doubt that will be the case either.

  • AP PAYABLES- Not getting all the DUE DATE's in with split schedule payments

    Hello All,
    We have some issues with AP Data loading's into our DW from EBS 11.5.10 AP - PAYABLES.
    One of our customer is using split schedule and share payment into few payment. Our
    sql is not reading all the due dates for PAYABLES.
    We are using PAYMENT_NUM=1 from ap_payment_schedules_all table as condition to load the Data to avoid duplicate rows coming for Payables.
    Some hints: removing the "PAYMENT_NUM=1" from the where clause gives all the due_dates but then we have duplicate rows for Payables.
    Please help to modify our query so that it will work for split schedule payment.
    select
    inv.invoice_num,
    inv.doc_sequence_value,
    sob.currency_code,
    inv.invoice_date,
    'EH'||inv.vendor_id vendor_id,
    'EH'||inv.vendor_site_id vendor_site_id,
    ael.ae_line_number distribution_line_number,
    inv.invoice_currency_code,
    aeh.accounting_date,
    'EH'||ael.code_combination_id code_combination_id,
    nvl(ael.entered_dr,0)-nvl(ael.entered_cr,0) accounted,
    nvl(ael.accounted_dr,0)-nvl(ael.accounted_cr,0) amount,
    fuser.user_name,
    fuser2.user_name user_name2,
    inv.payment_status_flag,
    'PAYABLES' rowtype,
    inv.discount_amount_taken,
    inv.invoice_type_lookup_code invoice_type,
    inv.exchange_rate,
    inv.exchange_date,
    tax.name,
    inv.source,
    inv.attribute6 eflow_doc_id,
    sysdate transfer_date,
    sch.hold_flag,
    inv.cancelled_date,
    sch.due_date
    from
    ap.ap_invoices_all inv,
    apps.ap_ae_headers_all aeh,
    apps.ap_ae_lines_all ael,
    ap.ap_tax_codes_all tax,
    ap.ap_payment_schedules_all sch,
    gl.gl_sets_of_books sob,
    applsys.fnd_user fuser,
    applsys.fnd_user fuser2
    where
    aeh.ae_header_id=ael.ae_header_id and
    inv.set_of_books_id=sob.set_of_books_id and
    inv.invoice_id=sch.invoice_id and
    sch.payment_num*1=1 and ---------------------------------------------- *
    fuser.user_id=inv.last_updated_by and
    fuser2.user_id=inv.created_by and
    ael.tax_code_id=tax.tax_id(+) and
    ael.ae_line_type_code='LIABILITY' and
    inv.invoice_id=ael.source_id and
    ael.source_table='AP_INVOICES' and
    aeh.gl_transfer_flag='Y'
    Thanks,
    Aman

    Hello All,
    We have some issues with AP Data loading's into our DW from EBS 11.5.10 AP - PAYABLES.
    One of our customer is using split schedule and share payment into few payment. Our
    sql is not reading all the due dates for PAYABLES.
    We are using PAYMENT_NUM=1 from ap_payment_schedules_all table as condition to load the Data to avoid duplicate rows coming for Payables.
    Some hints: removing the "PAYMENT_NUM=1" from the where clause gives all the due_dates but then we have duplicate rows for Payables.
    Please help to modify our query so that it will work for split schedule payment.
    select
    inv.invoice_num,
    inv.doc_sequence_value,
    sob.currency_code,
    inv.invoice_date,
    'EH'||inv.vendor_id vendor_id,
    'EH'||inv.vendor_site_id vendor_site_id,
    ael.ae_line_number distribution_line_number,
    inv.invoice_currency_code,
    aeh.accounting_date,
    'EH'||ael.code_combination_id code_combination_id,
    nvl(ael.entered_dr,0)-nvl(ael.entered_cr,0) accounted,
    nvl(ael.accounted_dr,0)-nvl(ael.accounted_cr,0) amount,
    fuser.user_name,
    fuser2.user_name user_name2,
    inv.payment_status_flag,
    'PAYABLES' rowtype,
    inv.discount_amount_taken,
    inv.invoice_type_lookup_code invoice_type,
    inv.exchange_rate,
    inv.exchange_date,
    tax.name,
    inv.source,
    inv.attribute6 eflow_doc_id,
    sysdate transfer_date,
    sch.hold_flag,
    inv.cancelled_date,
    sch.due_date
    from
    ap.ap_invoices_all inv,
    apps.ap_ae_headers_all aeh,
    apps.ap_ae_lines_all ael,
    ap.ap_tax_codes_all tax,
    ap.ap_payment_schedules_all sch,
    gl.gl_sets_of_books sob,
    applsys.fnd_user fuser,
    applsys.fnd_user fuser2
    where
    aeh.ae_header_id=ael.ae_header_id and
    inv.set_of_books_id=sob.set_of_books_id and
    inv.invoice_id=sch.invoice_id and
    sch.payment_num*1=1 and ---------------------------------------------- *
    fuser.user_id=inv.last_updated_by and
    fuser2.user_id=inv.created_by and
    ael.tax_code_id=tax.tax_id(+) and
    ael.ae_line_type_code='LIABILITY' and
    inv.invoice_id=ael.source_id and
    ael.source_table='AP_INVOICES' and
    aeh.gl_transfer_flag='Y'
    Thanks,
    Aman

  • Payment Block removed or allow to make the payment after the due date

    Hi,
    Regarding Payment block, we have created one payment term with block indicator and assigned to some vendors. So each posting system will generate the entry with payment block, once the document crossed the due date (assume that 30days) system wants to allow to make the payment to the vendor without deleting or removing  the payment block. Is it possible.
    govind

    Hello,
    For this change, you need to develop a program and need to identify the age of 30 days invoices and remove payment block for those invoices. So 30 days aged invoices can clear.
    Logic: go to BSIK and find out ZFBDT of the document and deactivate the ZLSPR (Payment block).
    Or
    try to find out any functional module or user exit is available while clearing invoices. if available maintain the above logic.
    Regards,
    venkat

  • Cash discount calculated even after the due date in F110

    Hi Friends,
    Invoice and Credit memo is created with the reference to PO, but when the payment is made to the vendor through F110 the cash discount is calculated on the credit memo even though it has passed the due date.
    Let me know what else is remaining that has to be checked and corrected
    Regards
    Paddy

    Check the following configuration:  t-code FBZP -> All Company Codes -> double-click on the relevant company code to display the details. 
    In the "Cash discount and tolerances" section, I'm thinking that you'll find that the "Max.cash discount" check box is checked.  This check box tells F110 to always take the discount, even if the terms have expired.  If you uncheck the box, then F110 will only take the discount within terms.
    Regards,
    Shannon

  • Can I return my MacBook Air past the return date?

    Hi, I have a question that I've been googling but I haven't been able to find an answer to anywhere. Can I return a MacBook Air past the return date to an Apple store if it is still in shrink-wrap and I have a receipt? Thanks.

    I would think you cannot return a product after the return date has passed.
    Call the Apple Store and ask them.

  • How do I change my iPod onto my new apple account from my old account? It always ask's me for my old password, which I can't remember, and no longer have the email address. Thanks

    How do I change my daughter's  iPod onto my new apple account from my old account? It always ask's me for my old password, which I can't remember, and no longer have the email address. Thanks

    Purchases are locked to the account that purchased them. Thus first try to recovery use of the original account.
    Also, yo have obtain use of the original account to deactivae the Activation Lock
    Find My iPhone Activation Lock
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. See Changing your Apple ID password if you'd like more information.
    The method includes if you do not have access to your original email account.
    The
    I no longer have an email address that was also my Apple ID. Can I still use the email address as my Apple ID?
    Apple recommends you change your Apple ID to your current, working email address. This will not create another Apple ID, it will only change it to your working email address. See Changing the name you use for your Apple ID if you'd like more information.
    CHANGE ID
    Apple ID: What to do after you change your Apple ID
    The ID is used in the following locations and you  have to change them.
    Settings>Messages>Send and Receive
    Settings>FaceTime
    Settings>GameCenter
    Settings>iCloud
    and Settings>iTunes and App store
    You  have to sign out of ID (for iCloud you delete the iCloud account from the iPod) and sign in with other ID.
    Note the following are resolved if you  use Family Sharing (iOS 8 and later):
    - Apps are locked to the account that purchased them.
    - To update apps you have to sign into the account that purchased the apps. If you have apps that need updating purchased from more than one account you have to update them one at a time until the remaining apps were purchased from one account.

  • Can I get a query to get the output data like 4th column instead of 3rd col

    Can I get a query to get the output data like 4th column instead of 3rd column ?
    SQL> select emp.deptno, empno, rownum from emp, dept where emp.deptno=dept.deptno;
    DEPTNO EMPNO ROWNUM
    10 7782 *1* *1*
    10 7839 *2* *2*
    10 7934 *3* *3*
    20 7369 *4* *1*
    20 7876 *5* *2*
    20 7902 *6* *3*
    20 7788 *7* *4*
    20 7566 *8* *5*
    30 7499 *9* *1*
    30 7698 *10* *2*
    30 7654 *11* *3*
    30 7900 *12* *4*
    30 7844 *13* *5*
    30 7521 *14* *6*
    14 rows selected.

    SQL> select emp.deptno, emp.empno,
      2    row_number() over(order by emp.deptno, emp.empno) rn,
      3    row_number() over(partition by emp.deptno order by emp.empno) dept_rn
      4  from emp, dept
      5  where emp.deptno=dept.deptno
      6  order by emp.deptno, emp.empno;
        DEPTNO      EMPNO         RN    DEPT_RN
            10       7782          1          1
            10       7839          2          2
            10       7934          3          3
            20       7369          4          1
            20       7566          5          2
            20       7788          6          3
            20       7876          7          4
            20       7902          8          5
            30       7499          9          1
            30       7521         10          2
            30       7654         11          3
            30       7698         12          4
            30       7844         13          5
            30       7900         14          6
    14 rows selected.Regards,
    Dima

  • HT4275 Can I use a different batteries than the apple ones 1900 mAh, like 2500 mAh which are the usually sold in stores?

    Can I use a different batteries than the apple ones 1900 mAh, like 2500 mAh which are usually sold at any store?

    Yes.  They should work fine.

  • HT201299 have updated my iphone 4s to the new iso7. Now i can't find how to switch on the cellular data. Please help.

    Hi
    I have updated my iphone 4s, with the new iso7. Now i can't find how to switch on the cellular data, please help!! Can't find the option in Settings

    Settings>cellular>cellular data

  • Hello!  I need Apple (!!!) headphones for Ipod Shuffle 3! (only apple earphones with remote and mic!!!) Tell me, what distinguishes the model are presented in black and white boxes? They may differ in features? Can one model is more modern than the other?

    Hello!
    I need Apple (!!!) headphones for Ipod Shuffle 3! (only apple earphones with remote and mic!!!)
    Tell me, what distinguishes the model are presented in black and white boxes? They may differ in features? Can one model is more modern than the other?
    Thanks in advance!

    Hi Fencer1986,
    I apologize, I'm a bit unclear on your request. If you have questions about headphone compatibility for your iPod shuffle 3rd Gen, you may find the following article helpful:
    iPod shuffle (3rd generation): About headphone compatibility
    http://support.apple.com/kb/ht3472
    Regards,
    - Brenden

  • "The end date can't be set to occur before the start date" issue

    I have a subscribed calendar that draws from data in a Filemaker database. In all of these records, the start date & end date are the same. When I try to refresh the description, it fails with a "NSCocoaErrorDomain / error 1560" error, and the console log shows "The end date can't be set to occur before the start date."
    Well, it doesn't occur before the start date. It's the same as the start date. I can work around this by setting my Filemaker database to add a day to the end date, but that's a clunky solution.
    Anyone else run into anything like this?
    (iCal 4.0.3 and OS X 10.6.4, btw)

    It may not be the same problem, but the message was the same (end date...etc). I tore my hair out at the time trying to solve it. It was on my fathers computer. Everything appeared to be correct and consistent. What solved it was logging into MobileMe/account/personal info/time zone, where I found the time zone was wrong. I can't remember the detail now but at the time it seemed like a third place where time had to be correct. Worth your checking there anyway.

  • Error 1502: A script has executed for longer than the default timeout period of X seconds.

    Hi,
    I have a swf that i can´t change (i don´t own the code and it´s copyrighted). In some cases, I´m getting error 1502, after 30 seconds executing the file.
    Is there a way to change or disable the default timeout period? Remember that i can´t edit the .fla...
    Thanks in advance!

    you can load that swf into another swf and adjust the timeout duration in the main swf.

  • How can I add vocal effects other than the 9 Voice options? (I can't shift pitch)

    Hello!
    I am making the switch from PC and am just trying to lower the pitch of a vocal track by at least an octave; I just got a MBP last week and am running GB 10.0.2. I can't find any info on similar problems that is helpful; most solutions I've come across show that when the track is selected, there should be a pitch shift bar with a sliding button, but I do not have that. I read a lot of people saying something about the track being purple or not, but I'm not sure if that's relative to the version I have or if that has anything to do with what's happening. When I select the track, in the little area toward the lower left when "Track" is selected, (what is that space called?) where the pitch shift option is for other people, I only have a sliding bar for Pitch Correction, and a checkbox for Limit to Key and Enable Flex. When "Region" is selected, it just shows the name of the region and there are no options. Another question I have is how to change the pitch of midi sounds? When the keyboard is open on the screen I have tried moving the little octave shifter, but it assigns the sounds that are on the keyboard at different locations if I move it, so it changes the sound completely. A couple of them shift one octave up or down, but there are no actual controls..
    I'm mostly just dabbling with EDM/trap/Hiphop tracks at the moment, but am confused about whether or not there are other vocal effects and controls other than the preset Voice options in the instrument area (Bright vocal, Classic vocal, compressed vocal, Edge vocal, etc.)? I'm not going to be using GB forever, but are there not any other options like for current rap/trap production (phaser, balance, EQ, auto tune, choppers, actual voice altering effects, etc.) [preferably without buying extra things]? And not only vocals, but editing effects for all sounds.. If so, how do I get to them? And if not I know I should at least be able to lower or raise the pitch of a vocal recording... There are some pretty legit electronic instruments that are exactly the kind of sound I'm going for so I was surprised to not see an equally simple to access vocal effects board or something. Any additional tips for a n00b electronic music producer would also be greatly appreciated! Thank you for any help!

    In GarageBand 10 you can no longer change a track with an audio file to a "purple" audio recording, as it has been possible in GarageBand '11.
    Even, if you can make the transpose slider visible by enlarging the the track editor panel, the slider will be disabled.
    What you can do however, is either add an AuPItch filter  from the audioUnit panel or to convert your audio file to loop and to admit from the Loop Browser.
    In the new GarageBand you add the AuPitch filter from the Smart Controls.
    Enlarge the SmartControl panel by dragging the dividing line upwards, until you see the Audio Units brick, then add an Apple Audio Unit and set it to AuPitch.
    Or create a loop from the audio file. Select the region in the track and use the command "File: Add region to Loop library". You need to trim the filet an exact number of measures.
    Set the current key and tempo, name the loop, and save the loop. Make sure, that one-shot loop is not enabled.
    Now add it from the loop browser to a new track and delete your old track. The search field in the Loop browser will help you to find the loop quickly.
    You will be able to transpose the sample  like any regular loop.

Maybe you are looking for