Table for field net due date

Hi,
In which table we will find field net due date.
Regards,

Hi
ZFBDT is the field for the Baseline date and ZBD1T, ZBD2T, ZBD3T are the days for disc.calculations....you can caluculate the Net due date based (ZFBDT  + [ZBD1TZBD2TZBD3T]) and accordingly the discounts(ZBD1P, ZBD2P) also
VVR

Similar Messages

  • Which table for the field "Net due date" of customer line items?

    Hi All,
    In which table could I find the field "Net due date" of customer line items?
    Thanks
    Gandalf

    I don't think there is a field for that.  In various SAP screens where you see this field, I think it is a calculated value (baseline date ZFBDT + days ZBD*T).

  • Amount Due for a Net Due date

    Hi Experts,
         I need to calculate the Net amount due based on the bet due date obtained by
    Fm: Determine_due_date. Can you guys help me out in finding a function module or procedure  for getting the amount that needs to be payed at the end of the due date.
    This is with referece to customer credit control.
    My inputs are kunnr, bukrs.
    Thanks
    Dany

    Hi,
    Try posting in the specific FI forum - see here SAP ERP Financials
    Gareth.

  • Table name for the field FAEDT(net due date)

    hi every body,
    plz can any body tell me the table name for the field net due date(FAEDT).
    its very very urgent
    thanq.

    Hi mark chalfen,
    thanq very much ur reply.
    actually my client want to change the payment term for all the vendor invoices.so wt we did is... we created aprogram to change the old payment term to new payment term in the vendor line items(fbl1n).
    when we run the program its changing the payment term and the base line date and the NO of days in the vendor linitems.but it not changing the net due date based on the new baseline date.
    i think with out changing the net due date only changing the payment term is use less.coz the item again show as due in the same date.
    so how can we change the net due date based on the new baseline date.?from which table we can take the field FAED and update with the new date.
    plz advise me?
    thanq.

  • Fields for Arrear and Net due date in FBL5n

    Dear FI expert,
    In FBL5n I need the fields for "Arrear" & "Net due date".
    Can anybody tell me exactly the fields and tables?
    Or any other FM for getting those?
    Thanks & Best regards
    Bishnu
    06/04

    hi
    check whether this spro path can help
    Financial Accounting (New) --> Accounts Receivable and Accounts Payable --> Customer Accounts --> Line Items --> Display Line Items --> Display Line Items without ALV --> Define Additional Fields for Line Item Display

  • Selection by net due date

    Dear all,
    I want to make a report with selection net due date, for example(net due date in tcode fbl5n). but i dont know how to read the BSID , because there is no field - net due date in BSID.
    Can anyone tell me how the selection net due date in fbl5n works?

    Hi.,
    For Open Items Radio button.
    Open at Key Date -: the table name is  RFPDO and field name is ALLGSTID
    For Cleared Items Radio button.
    Clearing Date -:  the table name is  BSID  and field name is AUGDT
    Open at Key Date -: the table name is  RFPDO and field name is ALLGSTID
    For radio button All Items.
    Posting Date - : the table name is  BSID  and field name is  BUDAT
    hope this helps u.,
    Thanks & Regards
    Kiran

  • Payment term net due date as 15th of month

    Hi Tea,
    I have created a payment term Z005 for net due date is 15th of the month, while doing testing I found that it's calculating wrongly, while posting the invoice I have given the document date as 10th of April, for this net due date is calculating as 15 of April, it's correct if i give the document date as 18th of April, for this also system is calculating the net due date as 15th of April it's wrong, it should calculate as 15th of may.
    Can you please help me to fix this one?
    Thanks
    Nenu

    Hi Nenu
    You should use day limit in term of payment.
    As per your concern bill enter upto 14th of the month net due date will be 15th of the month, and bill enter between 15th to 30th, due date will be 15th of next month.
    T Code - OBB8
    New entry -
    pmt term - Z005
    Day limit - 14
    Fixed Day - 15
    save
    back
    New entry
    Pmt term - Z005
    Day limit - 31
    Fixed day - 15
    Additional months - 1
    Save
    Thanks
    Nakula Das

  • Subroutine in sapscript for net due date

    Hi,
    This is the first time I am creating a subroutine for sapscript and I could not get it to work. I need to calculate the net due date using the baseline date plus cash discount days. But the form is just printing out 0000000. I am just trying to extract one due date here but I will have to get it for all line items then sort descending to get the latest one. Can anyone help me to see the gap why this is not working?
    In the sapscript I have the following:
    DEFINE &BASEDATE& = &REGUP-ZFBDT&
    DEFINE &PAYTERMS& = &REGUP-ZBD1T&
    PERFORM NET_DUE_DATE IN PROGRAM Z_SAPSCRIPT_FUNCTIONS
    USING &BASEDATE&
    USING &PAYTERMS&
    CHANGING &DUEDATE&
    ENDPERFORM
    In program Z_SAPSCRIPT_FUNCTIONS
    Thanks in advance!
    Cholen

    Hi Raju!
    I am really getting close! I did the conversion for all variables, however for VBLNR, it does not work. It gives leading zeroes but the value starts with a 'P' before the zeroes and the numeric value. I tried to remove that from the where clause and my select finally got something. However the output on the form is in the internal format. I suppose I should use CONVERT_DATE_TO_EXTERNAL which I tried doing after out_tab-value = lv_netduedate which is the variable I am passing to the form. 
    Raju Shrestha wrote:
    Hi Cholen,
    I believe your lv_laufd is a 10 character field in format MM/DD/YYY or DD/MM/YYYY. You should move that data to a 8 character variable (say lv_date) in YYYYDDMM format.
    Please try this conversion
        CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
          EXPORTING
            date_external            = lv_laufd
          IMPORTING
            date_internal            = lv_date
          EXCEPTIONS
            date_external_is_invalid = 1
            OTHERS                   = 2.
    Check in debug, you should get lv_date in YYYYMMDD. Now use lv_date in your WHERE clause.
    If you still do not get data after lv_date eq YYYYMMDD, check your LIFNR and KUNNR. They should be 10 charaters with leading zeroes if not 10 .
    If needed use the conversion for lv_lifnr and lv_kunnr.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            date_external            = lv_lifnr
          IMPORTING
            date_internal            = lv_lifnr.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            date_external            =  lv_kunnr
          IMPORTING
            date_internal            =  lv_kunnr.
    Cheers,
    Raju.

  • Tables for fields for machine wise production data

    PP gurus,
    Plz let me know abt the tables for fields
    machine code
    quantity poduced
    quantity rework
    quantity rejected
    no of settings
    hours available
    hours produced
    time per setup(in minutes)
    segemnt
    Plz let me know all dse ASAP.
    regards,

    Sudha,
    AFRC                           Incorrect cost calculations from confirmat
    AFRD                           Default values for collective confirmation
    AFRH                           Header information for confirmation pool
    AFRP0                          Table of planned changes for confirmation
    AFRP1                          Table of planned changes to conf.: Automat
    AFRP2                          Table of planned changes for confirmation:
    AFRP3                          Table of planned changes for confirmation:
    AFRP4                          Table of planned changes to confirmatn: Da
    AFRU                           Order Confirmations
    AFRUHR                         Order Confirmations for HR
    AFRV                           Confirmation pool
    AFRV_DEL                       Backup Copy for Confirmation Pool
    Regards,
    Prasobh

  • Subtotal price, net due date, PPD discount, damage discount requirement

    Hi all,
    I have the following requirements for a change in a user exit.
    Can you please help me, i need to know which table and what field to get them from.
    1.) damage discount
    2.) PPD discount = ZPDZ in header level
    3.) subtotal price = unit price * quantity (sales unit)
    4.) net due date
    Thanks =)

    Hi Joesph,
    Try checking any of the following tables :-
    EBPP_INV_DOC_HEADER   Biller Direct Bill Structure (Header Data)
    RF057F   Credit insurance: open items structure
    Regards
    Abhii

  • How to fetch net due date details

    Hi sap gurus
    I am fetching data from fbl5n transaction.
    i want days in arrears by NET due date(VERZN) and net due date(FAEDT) fileds
    but the data is coming from structure RFPOS-FAEDT and RFPOS-VERGN Fields.
    i want to display those fields in my script layout.
    RFPOS is a structure so its not contain  any data so exactly which table i will get FAEDT and VERGN fields..
    how i will fetch those fields for my requirement.
    if any solution really helpful.
    i am using standard print program RFKORD10.
    and  standard form is F140_ACC_STAT_01. and copied form into zform.
    if any one can guide it will resolve my problem..
    with advance thanks..

    This is a standard SAP functionality. Usually a credit memo is referenced to an invoice and if you don't have a reference to an invoice SAP would consider that credit memo as due immediatly.
    If you have an invoice to be referenced to this credit memo enter the invoice number in the invoice reference field in FB75 > payment tab and then enter the payment term. If you don't have an invoice reference enter V  in the invoice reference field and then the payment term, system will calculate net due date based on payment term.

  • Net Due Date - FBL5N

    Hi All
    There is a request to change the net due date at the report FBL5N : if the net due date is on a weekend or holiday, it is necessary to change it to the next business day..
    I realized that this field is calculated using FM DETERMINE_DUE_DATE (when running FBL5n).
    Questions:
    -  Is it possible to change this date as requested? If yes, is it an ABAP issue?
    -  Modifying this net due date at this point, may affect the integrity of other reports or transactions?
    Thanks in advance.
    Regards.
    Gaia

    HI,
    As per SAP standard, it is not possible to link the due date calculation
    to a calendar so as to avoid having the due date fall on a holiday or
    weekend.  There is no provision in standard SAP to enable this.
    Only for automatic payment and dunning purposes, you can use a calendar
    to avoid payments on Saturdays, Sundays, and Holidays. Please see
    customizing transaction OBBA.
    One suggestion could be to use the substitution functionality, where
    you can substitute and change several fields from BKPF and BSEG. By a
    user exit you will calculate the adequate baseline date to avoid due
    date on Saturdays, Sundays or Holidays.
    Regards
    Madhu M

  • Credit memo net due date is not correct

    Hi experts,
    In most cases the net due date of customers credit memos (posting key 11) is correct based on payment terms but sometimes itu2019s not (e.g. payment terms 30 days end of month but net due date is the same as document date).
    Any ideas why?
    I checked payment terms in customer master data and in FI and they are the same.
    Thanks for your help,
    Ben

    The general rule is that the due date of a credit memo is the baseline date.
    There are 2 exceptions: if you put the number of an invoice in the field BSEG-REBZG (Number of the Invoice the Transaction Belongs to), the due date of the credit memo is the due date of the invoice.
    2nd exception: if you put the constant 'V' in this field REBZG (you can do it thru a substitution rule), the due date will be calculated the same way as for an invoice.
    You can see this in the documentation of the data element REBZG:
    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.

  • How to change value date from posting date to net due date

    Hi Gurus,
    My client wants to change value date from posting date to net due date. currently posting date is considered as value date but in future client wants to change value date to net due date of documents.
    1. what configurations need to be maintained to change value date from posting date to net due date.
    2. Will these changes effect automatic payment run.
    Thanks and Regards,
    Suresh

    Hi Suresh,
    In Future
    While posting the documents you can mention the value date as due date of the documents.
    For already posted documents
    You can change the value date to net due date.
    If the value date is display mode i.e. if you are not able to change the value date in FB02 (Document Change Mode), use OB32 transaction and make value date field as eidtable (BSEG-VALUT).
    In OB32 transaction enter all the required fields like Account type, transaction type, company code and finally activate the Field can be changed check box.
    But not sure, whether we can change the value date to previous date or not?
    This would help you..
    Regards,
    Praisty
    Edited by: Praisty on Jul 28, 2009 9:56 AM

  • How to see (net due date + payment term's days) in fbl5n as a date

    hi experts.
    i need some informations about fbl5n fields
    i can see net due date and i can see terms of payment fields in the fbl5n but  if the invoice has a payment term (30 day additional etc) i want to see (net due date + payment term's extra days) . for example if the net due date is 01.06.2011 and payment term is extra 20 days  , how can i see 21.06.2011 in fbl5n or any other sceens?
    Edited by: Burak Akdasli on Jun 22, 2011 3:43 PM

    Hi
    I understand from ur question whats the billing date?
    If this is ur question, you can fetch it from sales order>item>billing tab.
    The logic u had mentioned is confusing be more specifc as to what scenario u are trying.
    Reward if it helped
    Chandru

Maybe you are looking for

  • Photosmart 7515 Not Working

    I bought my HP Photosmart 7515 All-in-One (Print / eFax / Scan / Copy / Web) when it first came out - honestly can't remember.  I use a 2008-MacBook Pro and 2009-27" iMac desktop computer.  Originally, the 7515 worked wonderfully.  I updated my compu

  • How to maintain the Vendor having branches in different cities

    Hi We have a Vendor ABC Limited with HQ in Delhi. It has branches in Mumbai, Bangalore, and Calcutta. Currently we are maintaining these Vendors with 3 different Code like: 10001 - ABC Limited, New Delhi 10002 - ABC Limited, Bangalore 10003 - ABC Lim

  • Knowing which Row was selected when Hide/Show is clicked

    Hi everyone, I have an advanced table, with some search criteria that works. I have added a "detail" flag and when I click the link Hide/Show, the details are displayed. How can I get in the code which Hide/Show link was clicked? I am more interestin

  • I need to stream video from itunes to apple tv with out using my 40gb hd.

    i need to stream video from itunes to apple tv with out using my 40gb apple tv can it be done you see i have a 40gb apple tv and it's full and i still have lots more video (movies) in my itunes can i stream movies from itunes to apple tv with my memo

  • Offical iTunes 7 feedback.

    Does anyone know where to leave offical feedback on the glaring problems with iTunes 7? I am having a lot of problems with this upgrade and would like to report them through offical channels. Extremely dissapointed with this update, it's like going b