Automatic deduction of amt while paying vendor

<b>Hi SAP Gurus,
I am trying to post 100/= using f-53 for a particular vendor. In the next screen for partial payment I m finding at the right bottom field as below,
Amt Entered: 100/=
Assigned : 99/=
Non Assigned : 1/=
While the WHT tab is showing that 1/= is deducted on account of TDS for the respective line item.
Now if I enter 1/= in the difference posting field at the bottom of in partial posting screen and simulate, the posting takes place as,
Vendor Dr. 100/=
Vendor Dr. 1/=
Bank Cr. 100/=
TDS Payable Cr. 1/=
Can you pls help  me on this.
Regards,
Anirban</b>
anirban bardhan

Hi Anirban,
Just go to the right down column., in the partial payment Tab.,  Not assigned and double click on it.
Donot give the 1 in the difference posting, because it is used to the difference in the amount posting,  which will go to the difference account., in this case the w/t is calcuated as Rs. 1 and vendor A/c 99, out of invoice of Rs. 100.
There is no difference in the amount.
This will give you the expected entry.
Try this out, hope it should work.
Assign the points, if it works
Thanks and Regards,
Sri

Similar Messages

  • Error while posting vendor invoice in F-43

    Hi experts,
    while posting vendor invoice with Tax code , i am getting the following error:
    Posting is only possible with a zero balance; correct document
    Message no. F5060
    Here tax line item is not yet all displaying in simulation.
    If I posted with tax code with ZERO percentage it is posting correctly.
    where as same transaction I am able to post through transaction code FB60.
    What could be the reason?
    regs,
    ramesh b

    Hi
    Please check and correct the respective line items , because your selecting incorrect GL account with respective posting keys
    Example : You have exp gl a/c at first line items against vendor invoice posting's, normaly this vendor will post in first line item with posting key is 31 with vendor a/c and second line item 40 with exp GL a/c and same you will check any required inputs have missed out from this transactions.
    Regards
    CHOWDARY

  • Error while creating vendor contact person using vmd_ei_api

    Hi,
    while craeting vendor contact person using maintain_bapi of vmd_ei_api class iam getting error like 'Specify address number or address handle'.
    code :
    CALL FUNCTION 'BAPI_PARTNEREMPLOYEE_GETINTNUM'
    EXPORTING
    quantity = 1
    IMPORTING
    * RETURN =
    contactid = lv_contactid
    * QUANTITY =
    * TABLES
    * CONTACT =
    ls_contacts1-task = 'I'.
    ls_contacts1-data_key-parnr = lv_contactid."ls_knvk-parnr.
    ls_contacts1-data-abtnr = '0002'."ls_knvk-abtnr.
    ls_contacts1-data-pafkt = '02'."ls_knvk-pafkt.
    ls_contacts1-data-parau = 'BNotes'."ls_knvk-parau.
    ls_contacts1-datax-abtnr = 'X'.
    ls_contacts1-datax-pafkt = 'X'.
    ls_contacts1-datax-parau = 'X'.
    * Inserting Phone ,Fax and email.
    ls_phone-contact-task = 'I'. "Phone
    ls_phone-contact-data-telephone = '89655696569'.
    ls_phone-contact-data-extension = '778548'.
    ls_phone-contact-datax-telephone = 'X'.
    ls_phone-contact-datax-extension = 'X'.
    APPEND ls_phone TO lt_phone.
    ls_phone-contact-task = 'I'.
    ls_phone-contact-data-r_3_user = 'X'.
    ls_phone-contact-data-telephone = '89845589369'.
    ls_phone-contact-data-extension = '858588'.
    ls_phone-contact-datax-updateflag = 'X'.
    ls_phone-contact-datax-telephone = 'X'.
    ls_phone-contact-datax-extension = 'X'.
    ls_phone-contact-datax-r_3_user = 'X'.
    APPEND ls_phone TO lt_phone.
    ls_fax-contact-task = 'I'.
    ls_fax-contact-data-fax = '8896589'.
    ls_fax-contact-data-extension ='44521'.
    ls_fax-contact-datax-fax = 'X'.
    ls_fax-contact-datax-extension ='X'.
    APPEND ls_fax TO lt_fax.
    ls_contacts1-address_type_3-communication-phone-current_state = ' '.
    ls_contacts1-address_type_3-communication-phone-phone = lt_phone.
    ls_contacts1-address_type_3-communication-fax-current_state = ' '.
    ls_contacts1-address_type_3-communication-fax-fax = lt_fax.
    ls_contacts1-address_type_3-communication-fax-current_state = ' '.
    ls_contacts1-address_type_3-communication-fax-fax = lt_fax.
    ls_contacts1-address_type_3-task = 'I'.
    ls_contacts1-address_type_3-POSTAL-data-FIRSTNAME = 'Roger'.
    ls_contacts1-address_type_3-postal-data-lastname = 'Fedrer'.
    ls_contacts1-address_type_3-POSTAL-datax-FIRSTNAME = 'X'.
    ls_contacts1-address_type_3-postal-datax-lastname = 'X'.
    APPEND ls_contacts1 TO lt_contacts1.
    ls_vendor1-header-object_instance = p_lifnr.
    ls_vendor1-header-object_task = 'M'.
    ls_vendor1-central_data-contact-contacts = lt_contacts1.
    ls_vendor1-central_data-contact-current_state = 'X'.
    ls_vendor1-central_data-central-data-adrnr = ls_adrnr.
    ls_vendor1-central_data-central-datax-adrnr = 'X' .
    APPEND ls_vendor1 TO lt_vendor1.
    gs_vmds_extern-vendors = lt_vendor1.
    DATA:gs_succ_messages TYPE cvis_message,
    gs_vmds_error TYPE vmds_ei_main,
    gs_err_messages TYPE cvis_message,
    gs_vmds_succ TYPE vmds_ei_main.
    * Call the Method for creation of Vendor.
    CALL METHOD vmd_ei_api=>maintain_bapi
    EXPORTING
    is_master_data = gs_vmds_extern
    IMPORTING
    es_master_data_correct = gs_vmds_succ
    es_message_correct = gs_succ_messages
    es_master_data_defective = gs_vmds_error
    es_message_defective = gs_err_messages.
    if sy-subrc  = 0.
    commit work.
    Please suggest which fields else i have to pass??

    Hi Abhijeet,
    here i am showing you some scn help to use maintain bapi of vmd_ei_api class, i think you are missing some data to be uploaded along with there are methods in lsmw, bdc too for this, please go through below links carefully , i hope you will able to solve your problem.
    Vendor Master Upload Program - ABAP Development - SCN Wiki
    unable to vendor master record update using class vmd_ei_api
    Creation of Vendor - VMD_EI_API

  • No WHT deduction at the time of Vendor down Payment

    Hi All,
    I want to calculate WHT at the time of Vendor Down Payment in F-48 but system is not deducting WHT.
    I checked the WHT Configuration, it is ok.
    WHT is liable in vendor Master data.
    WHT in Field status group of Reconcilliation Account is not suppress.
    Pop up menu display of WHT in Vendor down payment in F-48 but not deducted.
    System generate entry Vendor Dr, Bank Cr.
    Waiting for solution.
    Regards
    AJ

    Hi,
    Please check whether the configuration in Withholding Tax Type for payment postings are done properly, and see to that the Central invoice settings are done properly... and also check "Define Min/Max Amounts for Withholding Tax Codes"
    Regards
    Edited by: Sathish Kumar.K on Oct 27, 2011 9:23 PM

  • Automatical payment(F110) for one time vendor

    Hi
    Can we use automatical payment (F110) for one tiem vendor ?
    When I do it , system always cancel payment proposal .

    Hello,
    The One time vendor is a vendor and there is no difference and SAP doesn't restrict nothing for this case.
    You said : " When I do it , system always cancel payment proposal " : You means, the system said "No payment" in the proposal ?
    Please give me the error message (Edit -> Proposale -> Display Log)
    Thanks

  • Pan number compulsory field while creating vendor code

    is it possible to make pan number compulsory field while creating vendor code

    Dear Sanjeev
    you can make PAN number mandatory use t.code shd0 in that first give transaction code than give screen variant detail for screen variant program go to xk01 and then go to pan field here click on f1 then click on technical specification u can copy the program and screen name after that click on create tab the xk01 screen field comes again go to pan field double click on that field and then select this as required field and save . then go to transaction variants give the transaction name and add a row in which insert row and gives screen  variant , program and screen then save it now move to standard variant give your  screen variant name and activate  now your pan field is mandatory . if you have any problem in understanding i can provide you the screen shot also on your mail. provide your email id
    Award points .
    Regards

  • Legal control error while doing Vendor return

    Hi,
    While doing vendor return Delivery , I am getting error that material cannot be copy because of Legal Control

    Resolved

  • Discount amount should not be from total amount + freight amount while pay

    How can I set up the system so that unplanned costs goes to fright account ( which I think is working fine) at the invoice level but also the discount amount while paying is not taken out from the amount +freight amount. We need to pay so that discount amount comes out from only amunt-freight amount.
    Please help
    Thanks
    Ritu

    Dear All,
    Any BTE is available for my req.
    In validation  what will the steps i have to follow.
    Do suggest

  • Link Purchasing Vendor to Paying Vendors

    Dear Gurus,
    How can we link multiple purchasing vendors to a single paying vendor?
    Thanks.
    regards,
    Raj

    Hi Sridhar,
    In our company we currently have 2 separate vendors, one for purchasing and one for FI. We are wondering if it was a good business requirement, if not we probably want to consider changing it.  For this we are using Partner Functions to link 2 vendors, using PI-"Invoice Presented By".
    The main idea behind doing as we are doing currently is we could link multiple purchasing vendors to a single paying vendor.
    Can we improve this process or is it the best?
    Thanks.
    regards,
    Raj

  • Link Purchasing Vendor to Paying Vendor

    Dear Gurus,
    How can we link multiple purchasing vendors to a single paying vendor?
    Thanks.
    regards,
    Raj

    Hi Sridhar,
    In our company we currently have 2 separate vendors, one for purchasing and one for FI. We are wondering if it was a good business requirement, if not we probably want to consider changing it.  For this we are using Partner Functions to link 2 vendors, using PI-"Invoice Presented By".
    The main idea behind doing as we are doing currently is we could link multiple purchasing vendors to a single paying vendor.
    Can we improve this process or is it the best?
    Thanks.
    regards,
    Raj

  • Is it possible to get images automatically into text captions while simulation recording?

    Is it possible to get images automatically into text captions while simulation recording?

    I want that will be like described below (as it works in another software for captioning):

  • Termination while creating vendor through XK01 IS-Retail

    Hi All,
    While creating vendor through XK01 ....update is getting terminated.
    When I checked the SM13 i got this error.
    Update was terminated
    System ID....   RDP
    Client.......   510
    User.....   PRASH
    Transaction..   XK01
    Update key...   4993DEF56A574020E1000000AC19005E
    Generated....   12.02.2009, 19:22:54
    Completed....   12.02.2009, 19:22:55
    Error Info...   B2 050: Change pointer ID already exists
    Please suggest.
    Regards,
    Prashant

    Hai,
    Please go through the link below, and analyse according to that.
    Also post the dumps or system logs if any.
    http://help.sap.com/saphelp_nw04/helpdata/en/e5/de874735cd11d3acb00000e83539c3/frameset.htm
    Regards,
    Yoganand.V

  • CIF Error while transferring vendor

    We are facing CIF error while transferring vendor master to APO.
    The issue is in e-mail address of the vendor master.
    One way is to correct the e-mail addresses - one per line without semicolon at the end.
    But the issue list is very huge to get it corrected.
    Is there any other way by which we can exculde the e-mail addresses or its validation?
    Thanks and regards,
    Sushant

    Hi Senthil,
    The objective was to avoid CIF error due to incorrect address setup. This required us bypass it before data transfer. We could fix this using enhancement in ECC.
    Apreciate your kind reply, though. Thanks a lot.
    Warm regards,
    Sushant

  • Automatic tax code populated while creating service PO

    Hi,
    My requirement is that whenever i create service purchase order then service tax code (P4=12.24%) should automatically be poulated in the PO screen tab.
    Kindly let me know your inputs and also let me know if you want any further clarification.
    Thanx n regards
    Amit Choudhary

    The tax code can be populated Automatically in two ways while making PO
    1. Maintaining INFO Record Me11
    2. Maintaining condition Record in MEK1. select the appropirate fields through creation of Condition table.
    Hope this may be useful
    Regards
    Sakthi.K

  • Exit to set the automatic PGI and picking while creating outbound delivery

    Hi experts,
    Could anybody suggest how to set the automatic PGI and Picking while creating outbound delivery.
    Currently we are settting VBUK-WBSTK field with value C. But PGI is not happening.
    kindly help me.
    Regards,
    Ravi

    Hello Parihar,
    thanks for reply.
    yes we know that "This process of picking and GI involves reducing the stock and allocating the goods to the delivery"
    if you go for Custom program and Use FM WS_DELIVERY_UPDATE, we can do Picking and PGI.
    our requirement is to do pickong and PGI while creating Delivery it self, based on this output types will be processed.

Maybe you are looking for

  • Can't get music to sync?

    Can't get music to sync to my iPhone? Everything else syncs except my music.

  • SMS Web Services Using ADF BC

    We would like to implement SMS web services using ADF BC. Could u please help us to point us to the right path to start this. The SMS web services will send the logs, errors or exception generated by Oracle ADF based application to mobile phones. The

  • I am beyond frustrated.

    My JetPack delivers fast Internet connections, but I am being charged at least 5X my data usage.  By Verizon's own estimation, 6 GB is equivalent to 4000 e-mails, 20 hours music, 12 hours video....  Two months ago I used a small fraction of that and

  • H-tree expansion weird on web deployment

    I've got a problem with a hierarchical tree and I can use some help. Everything runs fine with Client/Server mode. When deployed on WEB the tree shifts upward when a node is expanded and so some nodes are hidden. Any thoughts? I am using Forms6i for

  • We need to change of dependent demand requirement in IDP

    Hi gurus, when i click selection profile, we need to change of dependent demand requirement in Interactive Demand Planning screen, what is the procedure. System showing display model.how to change dependent demand requirement. REGARDS,BABU