Function Module - FBL1 (Payment due date)

Hi All,
In FBL1n i notice that once an invoice is posted into system, the due date for payment is calculated based on the payment terms for the vendor. I would like to know which FM i can use to get the same functionality?
Vivek

Mr. Santosh,
Thanks for the quick response. Well actually i need to build a customized report for a specific requirement. I will be reading in 2 different dates & then I want to calculate the due date of payment as on those dates
eg: Vendor payment terms 30 days.
Case 1:
Date 1: 3.4.2008
Case 2:
Date 2: 15.4.2008
I want to pass these 2 dates individually into the FM & then the output should read me
Case 1:
Payment Due on: 3.5.2008
Case 2:
Payment Due on: 15.5.2008
I hope i was able to put across my need clearly.
Addition:
Is there any function module or any other way to calculate the payment due date depending on baseline due date(ZFBDT) and payment terms(ZTERM)?
Edited by: Vivek on Apr 23, 2008 10:04 PM

Similar Messages

  • Function Module to determine due date in BI form Payment Terms

    Hi to all,
    Can any one tell me what is the Function Module to determine due date in BI, form ZTERM ( Payment Terms ).
    I am working on Accounts Receivable (AR). and need to calculate Due date.
    I shall be thankful to you for this.
    Regards
    Pavneet Rana

    Thanks For reply,
    I have to do aging for Receivables and report format is like that.
                    1 - 10      11 - 30        31 - 60         61 - 90       > 90     Notoverdue   Overdue
    North
    East
    south
    West
    According to client requirement in first 5 bucket i need to display Receivables according to aging
    and for  Notoverdue   Overdue  bucket condition is like that.
    if sy-datum - vbrk-fkdat  > 0NETDUEDATE then it is under Overdue bucket
    if sy-datum - vbrk-fkdat  < 0NETDUEDATE then it is under notOverdue bucket
    there i have created 2 DSO , one for sales which have North,East,south,West and vbrk-fkdat using 2LIS_13_VDHDR,2LIS_13_VDITM
    and other  DSO which will have 0NETDUEDATE from 0FI_AR_4 .
    for Notoverdue   Overdue how i will calculate aging at query level.
    also is 0p_keydt is variable for 0CALDAY which will take user entery and should i applied offcet, to get firts 5 bucket Receivables data for aging.
    i shall be thankful to you for this.
    Regards
    Pavneet Rana

  • 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

  • Function module to get due date by terms of payment

    Hi,
    Is there any function module which can give me the due date when I pass
    1) Terms of payment
    2) Baseline date
    Read the terms of payment and use the properties of the terms of payment ( Like Fixed date )  to get to the due date.
    Thanks in advance.,
    Raj

    Hi,
    I had the same problem, as J_1A_SD_CI_DUEDATE_GET does not work when FI document is not created yet.
    This is the way I used and it works:
        CALL FUNCTION 'FI_TERMS_OF_PAYMENT_PROPOSE'
          EXPORTING
            i_bldat               = sy-datum        "if baseline is filled, value here is ignored
            i_budat               = sy-datum
            i_cpudt               = sy-datum
            i_zfbdt               = vbdkr-zfbdt    "baseline due date
            i_zterm               = vbdkr-zterm   "payment terms
          IMPORTING
            e_zbd1t               = lv_zbd1t
            e_zbd2t               = lv_zbd2t
            e_zbd3t               = lv_zbd3t
            e_zfbdt               = lv_zfbdt
          EXCEPTIONS
            terms_not_found       = 1
            OTHERS                = 2.
        IF sy-subrc <> 0.
        ELSE.
          CALL FUNCTION 'J_1B_FI_NETDUE'
               EXPORTING
                    zfbdt   = lv_zfbdt
                    zbd1t   = lv_zbd1t
                    zbd2t   = lv_zbd2t
                    zbd3t   = lv_zbd3t
               IMPORTING
                    duedate = z_duedate.
        ENDIF.
    Hope it helps.
    Regards,
    Fernando

  • Function module to calculate due date of FI document

    Hi All
    I need a function module to calculate the due date of FI document considering BSId Zterm ( Payment terms ) Document date , Basline date .
    Regards,
    chitra

    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_zbd2t         = gv_zbd2t
        e_zbd3t         = gv_zbd3t.
    faede-shkzg = 'H'.
      faede-koart = 'K'.
      faede-zfbdt = gv_zfbdt.
      faede-zbd1t = gv_zbd1t.
      faede-zbd2t = gv_zbd2t.
      faede-zbd3t = gv_zbd3t.
      faede-bldat = gv_bldat.
      call function 'DETERMINE_DUE_DATE'
        exporting
          i_faede = faede
        importing
          e_faede = faede.
    *    if sy-subrc eq 0.
      duedate = faede-netdt. <<<<<< ------

  • 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

  • Getting Payment due date

    Dear gurus,
    I need to show Payment due date in my billing output.
    How to get Payment due date for a billing document (VF02 is the tcode)?
    Thanks,

    Hi,
    call this function module in u r program
    J_1B_FI_NETDUE
    Regards
    Kiran

  • Payment due date in billing

    Hi,
    We want the system to pick the date of next working day if the payment due date is falling on non working day during billing.
    There is a functional module 'DATE_CONVERT_TO_FACTORYDATE' available. I donu2019t know where to use this FM so that it can work accordingly.
    Can some body plz give some input here.
    Thanks in advance.

    Invoice user exit: RV60AFZZ
    USEREXIT_ACCOUNT_PREP_KOMKCV
    USEREXIT_ACCOUNT_PREP_KOMPCV.
    Also please check this link: https://wiki.sdn.sap.com/wiki/display/ERPLO/SDUserexits
    Regards
    Sai
    Edited by: Sai on Apr 9, 2010 10:41 AM

  • In which package would I find the recalculate payment due date logic

    In R12 Invoice Workbench screen when you change certain fields the payment due date is recalculated.  I want to look at the logic behind that functionality.  I am looking at the code for the form but struggling as I haven't looked at Oracle forms in years and never anything this complex.  Can someone point me to the pl/sql package that contains the logic?  Thanks!

    The information comes from multiple tables.
    But you can get most of the information from mtl_material_transactions. It will give you transaction date, type, subinventory, quantity, uom , transaction value
    You will have to join the record with po tables to get PO#
    Hope this answers your question,
    Sandeep Gandhi

  • Vendor Payment Due Date Report

    Is there any standard T.code for Payment due dates as per Vendor ?
    Please provide solution for this
    Thanks & regards

    Hi,
    Pls check this report: S_ALR_87012082,  S_ALR_87012287, S_ALR_87012168, S_ALR_87012078, S_ALR_87012084
    Regards,
    VJ
    Edited by: vrunda on Jul 8, 2009 11:12 AM
    Edited by: vrunda on Jul 8, 2009 11:17 AM

  • Letter of Credit in Payment Due Date Calculation

    Dear All,
    I meet a case as following:
    Sales Order A with 80% Letter of Credit
    (L/C) payment (set in header condition) and 20% downpayment, with Payment Terms: L/C payment due
    date is before a special date.
    Question 1: If downpayment has cleared, whether user can see that a
    record of downpayment paid in a Sales Order under SAP standard design?
    Question 2: whether SAP standard desgin/configuration can set L/C
    payment due date by a payment term? note: L/C is flexible depends on
    different Sales Order?
    Thanks for all your helps!

    Did you find a solution to this?
    Is it possible to separate down-payment from rest of sales order - so Letter of Credit is only for the sales value minus down- payment?
    SO value 1 Mio USD
    Down-payment .2 Mio USD
    LOC value >> .8 Mio USD?
    Cheers
    Hein

  • How to generate 3 payment due dates& 3 posting against single invoice?

    Hello Experts,
    Kindly provides some inputs on below requirement.
    For example :- In the Utility Bill,
    Consumption months: June, July, August
    Meter Reading taken in August
    Billing Months: September, October, November
    Bill generated in August
    Consumer receives the bill on September month
    Payment Due dates: 12 Sep 2009, 12 Oct 2009 and 12 Nov 2009
    Issues-:
    1.How to generate three posting against single invoice?
    2.How to generate three payment due dates for above postings in three consecutive months since payment due date logic is incremental in nature here, e.g.
    1st due date = posting date + 15 days
    2nd due date = 1st due date + 30 days
    3rd due date = 2nd due date + 30 days
    Requirement description:-
    The utility generates bill quarterly for domestic consumers. For such consumers, the utility takes reading from the consumers premises after end of consumption period (quarterly ) and generates bill on the 1st billing month (here 1st billing month is September).
    In the bill the utility divides total consumption into three parts (considering each part for each consumption month) and calculates all charge heads separately on each part. It however, consolidates and generates a single bill having three rows, each row showing charge heads of each consumption month and also net and gross amount to be given for each consumption month.
    Moreover, three postings have to be generated in FICA against that single bill. Also, it provides three due dates to the consumer, each date falling in each billing month, to pay the above three net amounts respectively. Dunning and other activities should be triggered if the consumer fails to pay the stipulated amount by corresponding due date.
    Looking forward for valuable suggestions
    Thanks in advance
    Regards,
    Vaseem
    Moderator note - question reposted - OP notified of violation Issue on quarterly bill
    Edited by: William Eastman on Jun 3, 2010 3:25 PM
    Edited by: William Eastman on Jun 3, 2010 5:01 PM

    Hello Experts,
    Kindly provides some inputs on below requirement.
    For example :- In the Utility Bill,
    Consumption months: June, July, August
    Meter Reading taken in August
    Billing Months: September, October, November
    Bill generated in August
    Consumer receives the bill on September month
    Payment Due dates: 12 Sep 2009, 12 Oct 2009 and 12 Nov 2009
    Issues-:
    1.How to generate three posting against single invoice?
    2.How to generate three payment due dates for above postings in three consecutive months since payment due date logic is incremental in nature here, e.g.
    1st due date = posting date + 15 days
    2nd due date = 1st due date + 30 days
    3rd due date = 2nd due date + 30 days
    Requirement description:-
    The utility generates bill quarterly for domestic consumers. For such consumers, the utility takes reading from the consumers premises after end of consumption period (quarterly ) and generates bill on the 1st billing month (here 1st billing month is September).
    In the bill the utility divides total consumption into three parts (considering each part for each consumption month) and calculates all charge heads separately on each part. It however, consolidates and generates a single bill having three rows, each row showing charge heads of each consumption month and also net and gross amount to be given for each consumption month.
    Moreover, three postings have to be generated in FICA against that single bill. Also, it provides three due dates to the consumer, each date falling in each billing month, to pay the above three net amounts respectively. Dunning and other activities should be triggered if the consumer fails to pay the stipulated amount by corresponding due date.
    Looking forward for valuable suggestions
    Thanks in advance
    Regards,
    Vaseem
    Moderator note - question reposted - OP notified of violation Issue on quarterly bill
    Edited by: William Eastman on Jun 3, 2010 3:25 PM
    Edited by: William Eastman on Jun 3, 2010 5:01 PM

  • I Want To Change My Payment Due Date

    Change Payment DateFrom: szygw9To: ATTCustomerCareSent: ‎07-08-2015 7:15:33 AMRead: Not Yet ReadI want to change my payment DUE date to the first week of the month, preferrably to the 1st day of every month! Because AT&T changed my payment DUE date to the 27th and there is NO money in my account until the 1st of every month, so I am incuring LATE charges.  PLEASE change my payment DUE date to the 1st of every month.  I have called in a few times and yesterday was the last time and the representative said she could not help me and she would email me directions on how to do this myself online!  I have received NO email! 

    Hi there! @szygw9 thanks for posting your concerns. I’m sorry to hear you did not receive the email with steps to do this.  At this time this is not a self-service option.
    So we can see what options may be available to change this, please private message me by clicking here and provide your name and a good contact number.
    We will contact you within two business days.
    Thanks!
    Charise

  • How to set the payment Due date calculation as per working days.

    how to make changes in the vendor Payment terms so that while calculating the Payment due date as per Payment terms, system calculates it based on Working Days & not the Calender days ?
    Help is much appriciated.
    Thank you,
    Amit

    Hi,
    This is the standard settings by SAP, normally we couldn't change it to working day.
    Good luck
    Tao

  • The new payment due date

    When will this take place?

    Hi there! @phantombagger thanks for posting your question. The Payment Due Date Standardization started in June and will end the last part of July.
    You will receive a text message when to expect the change.
    This information should also be on your most recent bill, either the June or July copy.
    Keep in mind, this will not impact your monthly charges.
    Thanks!
    Charise

Maybe you are looking for