Down Payment Entries

Hi All,
Can someone guide me through the entries that are posted when processing a down payment for a vendor?  I'm having trouble viewing the logic behind the entry and IMG config.
Thanks.

The following entries will be passed.
Vendor       (Subledger)  Dr   1000 This will have spl gl indicator
Alternate Recon a/c       Dr   1000
Bank a/c                       Cr   1000

Similar Messages

  • Down Payment entries not reflecting in J1INMIS report

    Dear Guru's,
    TDS deducted at  the time of down payment made to vendor is not reflecting in J1inmis report.
    Is J1INMIS report does not reflect down payment entries?
    What will be the reason for this?
    Which alternative report to followed for J1INMIS !!!
    Waiting for your positive reply.
    Regards,
    Sany.

    Hi Sany,
    To update Business Place & Section Code, execute the program given below. After execution of the program run T.Code J1INPP and your issue should get resolved. Let me know if this works.
    Ask the Abaper to write the following Code & execute the program:
    REPORT  ZFI_BUP_SEC_CHANGE.
    TABLES : BSIK,BSAK,BSEG.
    parameters: PA_BELNR TYPE BSEG-BELNR OBLIGATORY,
                PA_BUKRS TYPE BSEG-BUKRS OBLIGATORY,
                PA_GAAHR TYPE BSEG-GJAHR OBLIGATORY.
    PARAMETERS : PA_BUPLA TYPE BSEG-BUPLA NO-DISPLAY,
                 PA_SECCO TYPE BSEG-SECCO NO-DISPLAY.
    PA_BUPLA = 'MUM'.                               (Note : Use the Business place & section Code Used
    PA_SECCO = 'MUM'.                                         in your company code).
    START-OF-SELECTION.
    PERFORM CHANGE_DATA.
    END-OF-SELECTION.
    *&      Form  CHANGE_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM CHANGE_DATA .
    DATA : LT_BSEG TYPE TABLE OF BSEG WITH HEADER LINE,
           LT_BSIK TYPE TABLE OF BSIK WITH HEADER LINE,
           LT_BSAK TYPE TABLE OF BSAK WITH HEADER LINE.
    BSeg updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSEG
    FROM BSEG
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSEG.
      IF LT_BSEG-BSCHL    = '25' OR LT_BSEG-BSCHL = '26'
         OR LT_BSEG-BSCHL = '27' OR LT_BSEG-BSCHL = '28'
         OR LT_BSEG-BSCHL = '35' OR LT_BSEG-BSCHL = '36'
         OR LT_BSEG-BSCHL = '37' OR LT_BSEG-BSCHL = '38'
         OR LT_BSEG-BSCHL = '39'.
        LT_BSEG-BUPLA = PA_BUPLA.
        LT_BSEG-SECCO = PA_SECCO.
        MODIFY BSEG FROM LT_BSEG.
        Write : / LT_BSEG-BELNR, 'Update For BSEG', LT_BSEG-BSCHL,
                  LT_BSEG-BUPLA,LT_BSEG-SECCO.
      ENDIF.
    ENDLOOP.
    Bsik updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSIK
    FROM BSIK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSIK.
      IF LT_BSIK-BSCHL    = '25' OR LT_BSIK-BSCHL = '26'
         OR LT_BSIK-BSCHL = '27' OR LT_BSIK-BSCHL = '28'
         OR LT_BSIK-BSCHL = '35' OR LT_BSIK-BSCHL = '36'
         OR LT_BSIK-BSCHL = '37' OR LT_BSIK-BSCHL = '38'
         OR LT_BSIK-BSCHL = '39'.
        LT_BSIK-BUPLA = PA_BUPLA.
        LT_BSIK-SECCO = PA_SECCO.
        MODIFY BSIK FROM LT_BSIK.
        Write : / LT_BSIK-BELNR, 'Update For BSIK', LT_BSIK-BSCHL,
                  LT_BSIK-BUPLA,LT_BSIK-SECCO.
      ENDIF.
    ENDLOOP.
    BsAk updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSAK
    FROM BSAK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSAK.
      IF LT_BSAK-BSCHL    = '25' OR LT_BSAK-BSCHL = '26'
         OR LT_BSAK-BSCHL = '27' OR LT_BSAK-BSCHL = '28'
         OR LT_BSAK-BSCHL = '35' OR LT_BSAK-BSCHL = '36'
         OR LT_BSAK-BSCHL = '37' OR LT_BSAK-BSCHL = '38'
         OR LT_BSAK-BSCHL = '39'.
        LT_BSAK-BUPLA = PA_BUPLA.
        LT_BSAK-SECCO = PA_SECCO.
        MODIFY BSAK FROM LT_BSAK.
        Write : / LT_BSAK-BELNR, 'Update For BSAK', LT_BSAK-BSCHL,
                  LT_BSAK-BUPLA,LT_BSAK-SECCO.
      ENDIF.
    ENDLOOP.
    ENDFORM.                    " CHANGE_DATA
    Thank You.

  • Down Payment with reference capital PO (Down Payment Entry)

    Hi,
    This is regarding Down Payment entry.
    While making Down Payment with reference capital PO including taxes (f-48) we are getting the entry as below
    Vendor A/c                                                   Debit
    Asset   A/c                                                   Debit
    Cenvat Clearing A/c                                      Debit
    Cenvat Clearing A/c                                      Debit
    Input Tax Clearing A/c                                  Debit
    Bank A/c                                                      Credit
    Down Payment Clearing A/c                        Credit
    Input Tax A/c                                                Credit
    But User is asking the entry should not be like, he wants the entry should be while making F-48
    Vendor A/c                 Debit
    Bank A/c                     Credit
    We are using 4.7 version.
    someone has told me that if we implement some patches then system will show the entry whichever user is asking.
    Is it possible? Is there any solution for this?
    Please help me on this.
    Regards,
    Schilukuri

    Hi,
    No, that is not requirement.
    We will make the down payment with reference of Capital PO including taxes
    then system will generate 7 to 8 line items. But user is asking system should show only 2 line items as i said above.
    But someone has told me that if we apply some patches system will generate the entry as per user requirement.Since we are using 4.7 version.
    any one can help me on this..
    Regards,
    Schilukuri

  • Down payment entry at MIGO

    Dear all,
    we are making down payment  with reference to PO line item & it is generating normal FI entry.But while doing MIGO it is generating another two line item for down payment.I am not able to understand this.we donot want this to happen at MIGO level.
    How to proceed now.
    Thanks
    Shivaji

    Purchase cycle starts from creation of purchase requisition ends with final payment to Vendor along with the following activities.
    1.Purchase Requisition           -     ME51N
    2.Purchase Order Creation,
          Approval and Release          -     ME21N / ME22N
    1.Down Payment Request      -     F-47
    2.Down Payment                    -     F-48 / F110
    3.Good Receipt /Service Entry  -  MIGO /  ML81N
    4.Invoice Receipt                        - MIRO
    5.Down Payment Clearing         - F-49
    6.Final Payment                         - F-53/ F110 
    Purchase Cycle Documents flow is as below: 
    1. Purchase Requisition No à Purchase Order No à Goods Receipt / Service Entry
    Material Document ßà Invoice Receipt Material Document
    2. Goods Receipt / Service Entry Material Document à Goods Receipt /Service Entry
    Accounting Document.
    3.      Invoice Receipt Material Documents à Invoice Receipt Accounting Documents 
    4.      Purchase Order No.à Down Payment Request No à  Down Payment Document No
    à Invoice Receipt à Down Payment Clearing  à Final Payment.
    5.      Material /Vendor à Purchase Requisition à Purchase order à Material documents for Goods Receipt /Invoice Receipt
    6.      Purchase Organization à Material/Vendor/ Plant/ Purchase Requisition à Purchase Order à Material Documents for Goods Receipt / Invoice Receipt
    7.      Cost Object à Purchase Requisition à Purchase Order à Material Documents for Goods Receipt / Invoice Receipt à Accounting Documents for Goods Receipt/ Invoice Receipt à Payment Documents
    As the purchase cycle processes through both Logistics and Finance modules and to view and analyze finance relevant information requires combining of data from SAP Tables related to both the modules as below:   Material Data
    Hope this will help you for understanding.
    pherasath

  • How t o do customer / vendor Down payment Mass entries

    Hi gurus,
    Can any body tell me How can i do the customer & vendor mass Advances down payment entries? when i tried to use the T.code: F-29 (customer down payment) i fill the first line item &when i go through the following path: Select GOTO Tab >>> GL item fast entry is supress (which is in grey colour)
    for doing fast entry how can i activate the GL item fast entry button?
    Please help me to workout this issue.
    Than'x,
    Dhananjay R.

    Hi Dhananjay,
        Inspite of going for Mass entries through G/L fast entry, you should go for a BDC program for the same.
    Just ask your ABAPER to record BDC for F-48 and F-29.
    As you said above that this is a routine exercise in your company, then please go for BDCs. This is the
    only appropriate solution. You can also have a single BDC for F-48 and F-29 insted for going 2 separate BDCs.
    Regards
    Sandeep Panwar

  • Error -Account 'Down-payments clearing account' could not be found for area

    When I am trying to pass a down payment entry by debiting vedor and crediting bank with asset it is giving an error as follows.
    Account 'Down-payments clearing account' could not be found for area 01
    Message no. AU133
    Please help me to rectify the same.
    Thanks in advance
    Deepak

    HI
    Please pay attention at  the possible causes of message AU133:
    1. Error AU133:
       a) You have not defined a contra account for acquisition value postings in the Asset Accounting Customizing settings (Transaction AO90).However, this is required as of Release 4.6C because, as is the case for all other integration postings in Asset Accounting, invoice receipt postings have to be displayed in Asset Accounting via the new posting kernel to ensure an identical document
    structure.
       b) You have defined the account in Asset Accounting, however, it is not created in the affected company code.Check whether the account is correct and create it for the company code, if necessary.
    2. You have entered an asset reconciliation account for the "Contra account: Acquisition value posting" (for example, the same account as for   "Acquisition:Acquis. and production costs" account).This is not  permitted.Check whether your account determination is correct               
       (Transaction AO90) in Asset Accounting Customizing. The same applies
       for the 'Contra account: Down payment posting'.
    3. As "Contra account: Acquisition value posting" you entered an asset G/L account. If necessary change the automatic posting indicator in the G/L account master record.
    4.Check if you need  revaluation accounts in depreciation areas involved   (AO90):
      -Revaluation acquis. and production costs
      -Offsetting account: Revaluation APC
    Please run also programm RACKONTO where missing or wrong customizing
    the accoutn determinations per company code is displayed
    Also have a look at note 7595 in this regard.
    Please assign points if it useful.
    Regards
    Ravinagh Boni

  • How to change sales order no. in already posted down payment?

    A sales order was created and a down payment was also posted.
    Later sales order was deleted, but the related down payment still exists.
    Subsequently a new sales order was created for the same customer.
    Now customer is asking to clear his current sales order against the older down payment (which has reference of the deleted sales order)
    An error is getting raised while clearing the sales order and down payment in F-32 as the down payment has reference to deleted sales order.
    Now can I change the sales order no. in the down payment document?
    or is there any other way to clear these transactions, current sales order and old down payment?

    Hi,
    Reverse the down payment entry and repost the same with reference to the new sales order number.
    FB08  to reverse accounting document.
    Regards,
    Srinu

  • Down Payment Clearing (F-54)

    I have an issue in F-54. While clearing the down payment system is not picking up the whole amount. It shows the difference. For E. g.
    Down Payment Entry (F-48) :-
    Vendor (Special G/L) Dr. 10000
    TDS Cr. 2000
    Bank Cr. 8000
    While Clearing Down Payment by F-54 it gives me the below entry
    Vendor  Dr. 4000
    TDS                             Cr. 2000
    Vendor (Special G/L) Cr. 10000
    As there is difference in an entry, system is not allowing me to clear the down payment. Can you please help me out to resolve this issue.
    Thanks & Regards,
    Sheetal

    Hi,
    Check the invoice document given in F-54. System reverse TDS basing on the invoice document given in F-54.
    Check the entries also once.
    Regards,
    Sankar

  • Asset Down Payment - Error code: . AA 834

    Hi ,
    I am getting below error while doing F-48 Asset down payment entry.
    You cannot use this transaction type to post to this asset
    Message no. AA 834
    Diagnosis
    The transaction type entered belomgs to transaction type group 15. It has been specified for this transaction type group, that it is only allowed to post to asset classes for which it has been explicitly allowed (for example, the asset class for assets under construction). The asset to which you are posting belongs to class 16 (chart of depreciation IN). You cannot post to this asset class using the transaction type entered.
    Procedure
    Check the asset number you entered. You may want to allow posting to this asset class using this transaction type group.
    What would be the problem..?
    Regards
    Ashok

    Hi,
    Check setting in tcode OAYB. Here you have to allowed downpayment in asset class for which you want to make down payment.
    Warm Regards

  • Error while using Special GL indicator H for Customer Down Payment

    Dear Friends,
    I have configured the Special GL Indicator H (Security Deposit) for Customer Down Payment received. I also make the necessary settings in OBXY for assignment of Special GL against the reconciliation account.
    When I am doing the Customer Down Payment entry through F-29 using special GL indicator H system giing me the following error message
    Special G/L indicator H is not defined for down payments
    Message no. F5053
    Diagnosis
    The specified special G/L indicator is not classified as "down payment" or not listed in the list of the target special G/L indicators for indicator "F".
    System Response
    The entry is not accepted.
    Procedure
    Enter an allowed special G/L indicator or initiate a change of the default settings
    I also check the configuration again but still systems is giving me the same above error.
    Kinldy give me the solution or way of doing this ASAP because I am working in an implementation Prj.
    Regards,
    Sandeep

    Dear Surya,
    I have made the necessary changes in Special GL Indicator F in their properties I assign target spl GL indicator H but while in spl GL indicator H when I assign target spl GL indicator F system gives me following error
    Delete target special G/L indicator
    Message no. F4137
    Diagnosis
    In the SAP system, you can only use "Target special G/L indicators" with "Down payment/down payment request" when "Noted item" is also selected at the same time. These requirements are not fulfilled in the special G/L indicator "H".
    Procedure
    Delete the specified target special G/L indicator.
    Effects on Customizing
    You can define when this system message is to be issued in accordance with your requirements.
    You do this in Customizing as follows: Cross-Application Components -> Bank Directory -> Change Message Control.
    The application area and message number can be taken from the technical documentation.
    Thanks,
    Sandeep

  • Issue In Sales Invoice DTW with down payment

    Dear Friends,
    I am trying to add some Sales Invoice with advance payment by DTW.
    Entries of Sales order , Sales Advance Down Payment request & Payment against Advance Down payment request are already done.
    In Invoice master file for DTW I add down payment amount in DpmAmnt.
    Invoice was successfully uploaded but link between down payment & invoice is not generated.
    But link between Invoice and Sales Order is generated.  
    How to link Down Payment Entry to Sales Invoice in DTW?

    Dear Swapnil,
    After seeing your attached image file, can you please rectify the same in your system as I have done it successfully at my end. Please find below screen shot for your reference.
    Please test it and let me know the same for any issue.
    Regards,
    Vinod Memane

  • EWT-Tax on Down Payment and Invoice

    Hello,
    I've activated the accumulation feature in the Withholding Tax Type for both IV as well as Payments. The tax code is the same for both tax types.I've also defined the minimum base amount for Witholding Tax code as Rs.5000 for Official Withholding Tax key 194A and have also maintained formula for Tax code i.e tax should only get calculated if tax amount is more than Rs 5000.
    However I've noticed that the tax is getting calculated on the accumulated amount of both Payment and IV separately.
    Example:
    Tax Type for IV is 01
    Tax type for Payment is P0
    Tax code is T1 @ 11.33%
    I've made a down payment entry using T-code F-48 for Rs 4000 (Tax type P0 and Tax code T1). Now Tax is not getting calculated on this amount which is correct.
    Now if I post an Invoice for Rs 1500 for the same vendor (Tax type 01 and Tax code is T1), ideally my tax should get deducted on Rs 5500 (4000 of DP and 1500 of IV) @11.33%. Howver this does not happen. The accumulation feature is working for Payments and IVs separately.
    Can someone please help me on this. Is it a particular config  which I've missed?
    Thanks and Regards,
    Sumita

    Hi Sumita,
    Please follow the below mentioned steps for this issue.
    Steps:
    1. Define Withholding Tax Type for Payment Posting
    Path: FA/****/Withholding Tax/Extended Withholding Tax/Basic Settings/Calculation/Withholding Tax Type/Define Withholding Tax Type for Payment Posting
    Here create 2 Withholding Tax Types:
    1. 1st for TDS (Basic@10%) Tax Type: S1 and
    2. 2nd one for Education Cess (EC@3%) Tax Type: S2
    2. Define Withholding Tax Codes
    Path: FA/****/Withholding Tax/Extended Withholding Tax/Basic Settings/Calculation/Withholding Tax Codes/Define Withholding Tax Codes
    Create 2 Tax codes (One for Basic and another one for Education Cess)
    In that screen, give the following inputs
    Give WT Key also on the same screen
    Save the data
    WT Name    WT Type    Tax Code    Base Amount     Calculation
    1. Basic               S1               C1                             100%                    10%
    2. EC                  S2                C2                             10%                       3%
    3. Define Min/Max Amounts for Withholding Tax Codes
    Path: FA/****/Withholding Tax/Extended Withholding Tax/Basic Settings/Calculation/Minimum and Maximum Amounts/Define Min/Max Amounts for Withholding Tax Codes
    Letu2019s say there is no TDS up to Rs. 1,50,000 per annuam
    Monthly amount or Invoice amount Rs. 12,500 per month
    There is no TDS up to Rs. 12,500 and TDS will be charged if the salary exceeds Rs.12,500 p.m.
    WT Name    WT Type     Tax Code     Max Amount     Minimum Base Amt
    1. Basic                  S1                         C1                 99,999,999,999      12,501
    2. EC                      S2                         C2                99,999,999,999      375.03
    4. Assign Withholding Tax Types to Company Codes
    Path: FA/****/Withholding Tax/Extended Withholding Tax/Company Code/Assign Withholding Tax Types to Company Codes
    5. Update Withholding Tax Codes in the Vendor Master (Employees A/c u2013 Employees will be treated as vendors here)
    Give WT Type and WT code here
    WT Type     WT Code  
            S1              C1
             S2              C2
    Note:
    1. Please follow the above example and apply it in your case.
    2. We have created 2 tax codes for Basic W Tax and Education Cess.
    3. Assumed there is no Sur charge.
    Hope this is clear and let me know if you have any queries.
    Regards,
    Kannusamy S

  • Down payment document not picking up the PC , but picking up the segment

    Dear Sir/Madam,
    We are making one down payment against a Purchase order through T code: F-48 in the vendor line item we are putting the PO reference. It picks up the segment on the basis of PO, but is is not picking up the Profit center in the general ledger view. This does not allow to post the down payment entry.
    KIndly advice how the same can be resolved.
    Prashant Zinge

    Hi,
         By default the payment will go to the bank that is listed first in the vendor master. If you do not need the old details, delete them completely from the master data and leave only the new ones. Alternatively use the Partner Bank field to assign the invoice to which Bank the payment is to be made.
    Kind regards

  • Very urgent, vendor down payment clearing - ka doc type

    hello gurus,
    while clearing vendor down payment, some down payment entries are posted as ka doc type. now i have to clear the invoice down payment with the ka doc type. how to do this.
    for retention account we booked in special G now that retention money also paid but that doc is not showing as cleared. still it showing in red colour. but balance is nill.  what to do for this..
    can anybody help me very urgent friends
    thanks
    jaya

    HI ,
    CHECK THI SPROCEDURE ,
    DOWN PAYMENT;
    Vendor A/C--a DR1
      TO Bank
    Invoice;
    Expence a/c  dr
    to Vendor----
    2
    down payment clear:
    Vendor A/C-----Adr   -
    3
    to Vendor a/c----4.
    Hi once you do the Down payment clearing only 1 & 3 line items will be cleared.
    but 2&4 line items will show as open items .
    This line items you have to clear  .Clear this in F-44.
    CHANDRA

  • VAT on Down Payment in Indonesia ***URGENT***

    Hi,
    In Indonesia, We are Calculating VAT (Input Tax Credit) on Down Payments and when the Invoice is Raised we are Calculating  VAT (Input Tax Credit) Only on the remaining amount For Eg. 10,000 IDR VAT calculated on Down Payment and on invoice, normally say 50,000 IDR have to be calculated, But here we are Posting VAT for 40,000 IDR only (50,000-10,000) as the Tax certificate contains only 40,000 IDR.
    So, Till here my total VAT is calculated as 50,000 IDR ( 10,000 at Down payment and 40,000 IDR at invoice ) which is correct.
    But when i am doing F-54 for clearing Dwn Pmt . and invoice, The VAT calculated on Dwn Pmt. i..e 10,000 IDR is getting reversed.Now the total VAT calculated on this invoice becomes 40,000 which is not correct.
    Pls advise, How to deal with this situation..
    Pavan,
    +919822336750.

    Hi Babu,
    Also I posted down payment entry with F-48.
    System generated below entry.
    Cash Cr   Rs. 100000
    Vendor Dr Rs. 100000
    AUC Asst Dr. 100000
    Down payment clrg Cr 100000
    Can u tell me further step? I mean what is procedure for down payment clearing with auc assets.
    I waiting ur reply.
    Thanks & regards
    Amar

Maybe you are looking for

  • Sync wont start up?

    I plugged my iPod touch (4th Gen.) into my PC and started up iTunes normally. Everything was working perfectly until I started backing up my iPod. At the top of the itunes window (where it displays the songs playing, downloads, etc.) It said "Startin

  • Personnel Change Requests option missing in MSS

    Hi everyone.  I hope you can help. In Manager Self-Service, under the "Team" workset, there should be an iview for Personnel Change Requests: http://help.sap.com/saphelp_erp2005vp/helpdata/en/54/957e40ec66ce62e10000000a155106/frameset.htm However, no

  • Setting a Custom Scope in a Page

    Greetings again i am trying to set a custom scope for my pages, i am following the example 6.3.2 Setting Scope in a Page - Create New Task Flow in the Oracle® Fusion Middleware Developer's Guide for Oracle WebCenter 11g Release 1 (11.1.1) E10148-06.

  • Query on unicode application

    Hello Experts, Is it possible to convert an unicode BSO Application to ASO? When I am trying to convert, the following error occurs - "Can not convert unicode block storage outline to aggregate storage outline" As per the documentation, I see that AS

  • How Do Property Wrappers Work?

    Bellow is an example of a simple string property wrapper. In the program bellow I expected any changes that I made to a property object to be pushed back to the field in the Pojo that it wraps. Based on the outpup it doesn't seems like changes are pu