Help with F-48 Vendor Down payment for Italy please

Hello,
I have a problem with the F-48 Vendor down payment process.  I'm working with an Italian company, and they state that with a Pro-forma invoice, they post the down payment.  The Vendor has Withholding tax, and when I use a Vendor that is setup for Withholding in the Vendor master, the Withholding tax is not being applied to the Down payment.  They state that they need it to apply to the down payment.
Also, they claim that the VAT tax is not posted at the time of the down payment, but is used to help calculate the Withholding tax.  When I create a F-48 down payment and use the 'Calculate Tax' box, the VAT that is calculated is actually posted at the time of the Down payment posting.  They claim that it should not post until the Invoice is cleared.
Any ideas?
thanks for your help!

Hello Deepa Khatri,
Thanks for your response.  I know that the Vendor is setup correctly, because when I create and FB60 Invoice for his same vendor, the Withholding tax is properly applied.  When I use the F-48 transaction, the Withholding is not brought in.  Is there some Down Payment configuration that might help this Withholding to be applied?
thanks again for your help!

Similar Messages

  • Vendor down payments for one time vendor

    Hi There,
    I am not sure why this is happening, but when we try and post a down payment to a one time vendor, it comes up with the error F5 265.
    When we do this for a normal Vendor it is OK.
    Has anyone come across this?
    Is there some special config required to activate one time vendors for Down payments?

    Special GL transactions (like down payments) are not allowed for one-time vendors.  Please refer to the following SAP Note.
    https://service.sap.com/sap/support/notes/19638

  • Help with Appleworks-Spreadsheet - "Dragging down formula for entire column

    I have Appleworks 6 and am attempting to duplicate what I can do in Excel - Namely, entering a simple formula (=a1*.20) and dragging the lower righthand corner down to duplicate for the entire column. I know that Appleworks doesn't mimic many of Excel's features but am wondering what the Apple variation of this is?
    Thanks,
    Roberta

    You can "Fill Down" (or Fill Right) from the Calculate menu. Enter your formula, text, etc. it the first cell, click on that cell & drag the cursor until all of the cells you want to populate are highlighted, the choose your fill. Unless the original formula has absolute references, the filled formulas will be relative to the original cell. Say C1 is the first cell & the formula is =A1+B1, filling down from C1, the formula in C6, for example, will be =A6+B6.
    Peggy

  • Would like help with treeset ,the codes that using for sorting, please ?

    hi every body. i faced a problem while writing this program, everything worked properly except this one. The program is related to Jframe and it asks the user to add three labels , three text field , one text area and three Jbuttons which are add sort and exit. i could deal with add and exit but sort, i couldn't do it properly because i don't know the codes that should be added in actionperfomed?
    These codes are :
    package gui;
    import javax.swing.SwingUtilities;
    import java.awt.BorderLayout;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import java.awt.Rectangle;
    import java.util.ArrayList;
    import javax.swing.JButton;
    import javax.swing.JTextField;
    import javax.swing.JTextArea;
    import sun.misc.Sort;
    import domain.Student;
    public class StudentFrame extends JFrame {
          * This method initializes btnAdd     
          * @return javax.swing.JButton     
         private JButton getBtnAdd() {
              if (btnAdd == null) {
                   btnAdd = new JButton();
                   btnAdd.setBounds(new Rectangle(13, 135, 59, 27));
                   btnAdd.setText("Add");
                   btnAdd.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(java.awt.event.ActionEvent e) {
                        btnAddClicked(); // TODO Auto-generated Event stub actionPerformed()
              return btnAdd;
         protected void btnAddClicked() {
              // TODO Auto-generated method stub
         String name = txtName.getText();
         String id = txtID.getText();
         String age = txtAge.getText();
         Student s = new Student(name , id , age);
         txtArea.setText(String.valueOf(s ));
          * This method initializes btnSort     
          * @return javax.swing.JButton     
         private JButton getBtnSort() {
              if (btnSort == null) {
                   btnSort = new JButton();
                   btnSort.setBounds(new Rectangle(95, 136, 62, 25));
                   btnSort.setText("Sort");
                   btnSort.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(java.awt.event.ActionEvent e) {
                             btnSortClicked(); // TODO Auto-generated Event stub actionPerformed()
              return btnSort;
         protected void btnSortClicked() {
              // TODO Auto-generated method stub
          * This method initializes btnExit     
          * @return javax.swing.JButton     
         private JButton getBtnExit() {
              if (btnExit == null) {
                   btnExit = new JButton();
                   btnExit.setBounds(new Rectangle(173, 134, 61, 23));
                   btnExit.setText("Exit");
                   btnExit.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(java.awt.event.ActionEvent e) {
                             System.exit(0); // TODO Auto-generated Event stub actionPerformed()
              return btnExit;
          * This method initializes txtName     
          * @return javax.swing.JTextField     
         private JTextField getTxtName() {
              if (txtName == null) {
                   txtName = new JTextField();
                   txtName.setBounds(new Rectangle(79, 11, 60, 23));
              return txtName;
          * This method initializes txtID     
          * @return javax.swing.JTextField     
         private JTextField getTxtID() {
              if (txtID == null) {
                   txtID = new JTextField();
                   txtID.setBounds(new Rectangle(73, 55, 65, 26));
              return txtID;
          * This method initializes txtAge     
          * @return javax.swing.JTextField     
         private JTextField getTxtAge() {
              if (txtAge == null) {
                   txtAge = new JTextField();
                   txtAge.setBounds(new Rectangle(74, 96, 61, 24));
              return txtAge;
          * This method initializes txtArea     
          * @return javax.swing.JTextArea     
         private JTextArea getTxtArea() {
              if (txtArea == null) {
                   txtArea = new JTextArea();
                   txtArea.setBounds(new Rectangle(138, 5, 154, 128));
              return txtArea;
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        StudentFrame thisClass = new StudentFrame();
                        thisClass.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                        thisClass.setVisible(true);
          * This is the default constructor
         public StudentFrame() {
              super();
              initialize();
          * This method initializes this
          * @return void
         private void initialize() {
              this.setSize(300, 200);
              this.setContentPane(getJContentPane());
              this.setTitle("JFrame");
              return jContentPane;
    }Edited by: hypocrisy on Apr 26, 2009 6:51 PM

    There are three actionPerformed in that program.One for add Jbutton , Sort , and Exit
    the codes that i have added for add button after action performed are
    String name = txtName.getText();
    String id = txtID.getText();
    String age = txtAge.getText();
    Student s = new Student ( name , id , age);
    System.out.println(s);
    the codes for Exit button to make it works properly was :
    System.out.println(0);
    But when i came to Sort Button and i tried to enter many codes but it didn't sort properly so would you like to help me with the right codes :)

  • Need help with Photoshop Clone Stamp Tool. For Homework Please??!!!

    Hi Everyone.
    I am trying to create a Type self portrait, It was going well for the first bit. until I closed the program and brought it back up.
    Now when I bring it back the word / stamp changed color. and now its all blurry.... help please???

    I am having similar problem.  Can't open any of CS3 programs after trying to download Dreamweaver Trial, which wouldn't work because "couldn't remove DLM extention" error message.  So now I can not run Illustrator, Photoshop, or even Adobe Reader.  These are properly licensed for about a year. I get "License for product has stopped working".  Have 2 pending cases open with Adobe support (one for Dreamweaver trial, one for license problem) since 8/3 with NO ANSWERS - It says answers within 1-3 business days.  Was on phone support hold today for over 3 hours before line went dead with no help.  What is up with adobe support?  Can anyone help?

  • Vendor down payment with input tax

    Dear Expert
    My client receieves down payment with input tax, to meet their legal requirement for VAT filing, they have to book entries as below;
    When receieving down payment with input tax:
    Dr. Down payment
          Input tax
      Cr. Bank
    When receiveing vendor invoice for remaining AP amount:
    Dr. Expense
          Input tax
      Cr. AP (remaining amount)
    Then clear down payment by expense
    Dr. Expense
      Cr. Down payment
    They do in this way, because input tax in down payment and input tax in remaining AP invoice should be listed as two items in their VAT report. And intput tax in down payment document is with reference field which is different from reference field in remaining AP invoice, and reference field is also one mandatory field in VAT report.
    In this case, I can not use SAP standard T-code F-54 to clear down payment. But when I tried to create a manual JV to post entry with Dr. Expense and Cr. Down payment, it's OK, but then when I used F-44 to manully clear down payment doc by manual JV, I got problem because the amount in down payment is down payment amount + input tax amount, but the amount in manual JV is only down payment.
    Does someone have a solution?
    Thanks,
    Nicole

    Nicole,
    Which country is this requirement for?  As far as I know, there is no tax incidence on downpayment.  Input tax arises only when you receive the invoice, right?  Not when you receive a downpayment.

  • FS206 error message for vendor down payments

    Hi All,
    I m getting following error message while posting vendor down payment using F-48,
    Down pmnts with taxes are not permitted when processing with jur.code
    Message no. FS206
    Diagnosis
    Taxes may not be entered for down payments with the jurisdiction code taxation procedure.
    Procedure
    Change the master record of the reconciliation account for down payments. It may not be tax-relevant (leave tax category blank).
    I made the tax category in GL master data as blank. However it is still asking for a tax code.
    Kindly let me know if anyone has faced a similar issue earlier.
    Thanks in advance!
    Best Regards,
    Aman Goel

    Hi,
    Change the "Alternative Reconciliation Account" master data (in FS00) for down payment assigned to your vendor reconciliation account.
    Leave the tax field blank and do not check mark posting without tax allowed.
    Regards,
    SDNer

  • Error in profit center determination for settled vendor down payments

    Hello All,
    When we try to settle vendor down payments an error is detected for the profit center determination .
    The settled down payment is found on the dummy profit center instead of the profit center of the original invoice. This means that the reporting of oustanding payables per profit center is wrong
    When you only see the invoice and not the settled down payment which should reduce you outstanding debt (down payment already paid).
    Can any one help in this matter
    Regards
    Arun

    Hi,
    Check the document splitting configuration. Advances to vendors recon.. account should be assigned as category 'Vendor 'special gl transaction''.
    Check the document type 'KA' transaction as '0300'... or unspecified posting.
    Thanks,
    padmaja N

  • Partial payment for Vendor down payment request

    Hi Gurus
    How to do partial payment for vendor down payment request  using F-48
    If i enter partial amount next time same request is not appearing in the list.
    Pls guide me. Reply will be appreciated with full points
    Thanks in advacne
    Sneha

    Hi Ravi
    Thanks for info
    My doubt is MM is creting Down payment request using F-47 For ex  Rs100000
    for this request using F-48 i want to pay partialally means for Rs50000
    Balance i want to pay it later, How this can be done.
    Pls guide me
    Rgds
    Sneha

  • Vendor down payments with TDS

    Hi Experts
    I am trying to make vendor down payment with deducting Withholding tax through transaction code F-48. At the time of simulating of the same system is giving error message
    "Withholding tax amount exceeds total bank line item amounts.
    Message no. 7Q320"
    All configuration has been done like tax code and tax type for down payment and assinment of GL account.
    Kindly advise as on urgent basis.
    Kuldeep Dubey

    Hi
    Check the Total Debit & credit for that document
    the normal JV for TDS entry in F-48 is
    Vendor Dr 10000
    Bank    Cr 7734-
    TDS - B     Cr 2000-
    TDS - S       Cr  200-
    TDS - C        Cr 66-
    hope its useful ........assign points if found useful
    Regards
    R.Ramakrishnaraj

  • Field Modification while down payment for vendor

    Hello Gurus,
    While doing down payment in F-48, in the Post Vendor Down Payment Display Overview screen when we double click the line item, it will go to item screen here i have to disable the amount field,
    I have tried some search but didn't find any user-exit or screen enhancement for that.
    Kindly Suggest.
    Edited by: pankajdewangan on Jan 6, 2012 1:35 PM

    Hi,
    For Transaction Variant no need to create new T code Just create one transaction Variant with screen variant and activate it.
    It works fine without Z T code.
    If you have further query i will send document for same.
    Thanks & Regards
    Saravanan

  • Down payment for Stock Vendors

    Hi,
    I need to create a down payment for stock vendors, If I create an invoicing plan but then I get this error saying "Invoicing plan not possible in case of GR-based invoice verification".
    My scenario is that do make down payments to Stock vendors based on POs, is there any other way of nadling down payments for stock vendors.
    thanks

    Use transaction F-48 to create the down payment for Vendor.
    than once you post the invoice it will know off the downpayment amount when the FI people clearing the invoice you posted.
    You can post down payment aginst vendor with PO also.

  • BAPI/Function Module for Vendor Down Payment Clearing(F-54)

    My requirement is to clear Vendor Down Payment Document(F-54). One way is to use BDC but I am looking for other options.
    Is there any other way(BAPI/FM) possible except BDC recording to achieve above requirement?
    Thanks in advance,

    Hi Nilesh,
    I have the same requirement. How did you achieve it?
    Regards
    Prashant

  • Badi/User-exit for vendor down payment request in f-47

    hi all,
    is there any badi/user-exit available for vendor down payment request?
    I need to trigger a workflow when a vendor down payment request in transaction code F-47.
    how can i do this?
    Pls guide me.
    Thanks & regards,
    Raj

    Did it using a business transaction event

  • Need BAPI for F-54 Clear Vendor Down Payment

    HI Gurus,
    Is there any BAPI available for clearing vendor down payment? We can use F-54 tcode to do it manually.
    I need to clear the vendor down payment from an USER-EXIT.
    how can I do this?
    Pls guide me.
    Thanks & regards,
    Murphy

    Hi,
    Looks we don't have any dedicated BAPI for F-54..You can check 'BAPI_ACC_INVOICE_RECEIPT_POST' for your requirement...
    User-Exit you need to search for F-54.

Maybe you are looking for