Vendors Charged Bank Fee

Hi Everyone,
We have employees set up as vendors and there is one company code that when we pay the vendor they are also are being hit with a bank fee.
There is supposed to be an area somewhere in the config that I should be able to check a box that will say we will take all the charges for the payment run so the vendor does not get charged.
If anyone knows where this config lives it would be much appreciated.
Many Thanks to All!
Gerardo

Hello,
This very much depends on the country in which you're conducting business. Within the EU, as long as you're paying from an EU bank account to an EU bank account and provide IBAN and SWIFT, no additional fee should be incurred. In the US, we solved this by moving to paying our vendors through ACH. In international wires, there is usually a payment instruction to set the cost allocation as either "BEN" (Beneficiary), "SHA" (Shared), and "OUR" (Our cost). However, I have experience that US banks will still charge a fee to the recipient, even if the cost allocation instruction is set as "OUR". There, it often depends on the type of account a customer has with their bank.
Hope this helps,
Jacco

Similar Messages

  • Bank fee deduction

    in F110 payment, vendor is responsible for bank fee charge, for example, vendor invoice is 1000 USD, we only pay to vendor 950 USD, if we setup bank fee deduction in FBZP, it looks like we pay the bank fee, but actually vendor is responsible for it, so any standard SAP configuration for vendor liable bank fee in auto  payment? thanks

    Hi Siva,
    Please maintain the config for bank charges in FBZP.
    T-Code FBZP > Bank Determination > Choose your company code > Expenses/Charges > Give your currency and Charges amount.
    I hope it helps else revert us with your queries.
    Thanks & Regards,
    Lakshmi S

  • Vendor master bank details urgent.........

    Hi Exps,
    In the vendor master under general data, option payment transactions the window opens for bank details.
    Here which bank details i have to maintain? is my company bank details or vendor bank details?
    for bank interface we have to maintain every vendor swift code or only our swift code to assign? if so where we have maintain this?
    Kindly give the answers asap please.. this is very urgent.

    Hi,
    In the option for nak details you have to mantain the bank details of vendor not your bank... you rhouse bank will maintained in company code data tab...
    so for the bank interface you have to give vendor house bank swift code... by which bankers will be able to send through Electronic system...
    If helpful assign points...
    cheers
    PK

  • Profit Center : Reflect - Vendor, Customer, Bank/Cash Balance

    Dear Experts,
    Ref. : Reflect - Vendor, Customer, Bank/Cash Balance, Balance Sheet GL Accounts - Profit Center wise.
    When we do postings to P&L Items, we assign a CO / Cost Object. Such Cost objects may be Orders, Cost Centers, etc., which has a Profit Center assigned to it.
    Now, we wish to view Balance Profit Center wise.
    My Concerns :
    1.  Can Vendor, Customer, Bank/Cash Balance, Balance Sheet GL Accounts - Profit Center wise. Since we do not assign CO objects to such line items, but the correspondense line items (P&L GL) has a CO object.
    2.  If yes, how do we move balance of such items, to Profit Center / profit Center wise.
    Experts, please help me to understand the concept.
    Regards,
    Hussein.

    Hi,
    Are you in ECC activated new G/L? If yes, then you can define Profit Center as Document Splitting Characteristic for General Ledger and profit center will be in the AR/AP line item as well in ledger view (though you don't enter profit center during document entry).
    You cannot give the Profit center in line item level to the Subledger accounts like vendor and customers.Vendor and customer accounts take the profit center from the offsetting entry.If want to see the profit center to the particular document, open the document go to Environment field and select Balance Sheet Adjustment option.
    If you want to see the Profit center wise payables and receivables, use T.code GR55 and take report group 8A90 for Periodic Receivables and 8A91 for Payable.
    If you want to see the all payables with Profit center use Table BFOK_A for vendors BFOD_A for customers.
    Regards,
    Viswa

  • Pogramm update for Vendor's bank account with duplicate No.

    HI Guru's,
    This program will perform the Vendor's bank account with
    duplicate No. on both level on higher level as well company code level. but field lfa1-loevm not shwoing in the report..
    if i put delection flag at company level or centrel level : lfa1-loevm.. will not showing in report.. how to modify any one can help me..
    TABLES: lfa1,
            lfb1,
            lfbk,
            t077y.
    DATA: BEGIN OF fi_vendor,
          bukrs     LIKE lfb1-bukrs,   "company code
          vendor_no LIKE lfbk-lifnr,   "Vendor No"
          name      LIKE lfa1-name1,   "Vendor name
          bank_no   LIKE lfbk-bankn,   "Bank account no.
          bankc_key LIKE lfbk-banks,   "Bank control key
          bank_key  LIKE lfbk-bankl,   "Bank account
          create_n  LIKE lfa1-ernam,   "Created by
          createon  LIKE lfa1-erdat,   "Created on
          acct_group LIKE lfa1-ktokk,  "Vendor group name
          deletion   LIKE lfa1-loevm,  "deletion flag
          nodel    LIKE lfa1-nodel,  "Central deletion block
          sperr      LIKE lfa1-sperr,  "Posting Block
          no_account TYPE i.
    DATA: END OF fi_vendor.
    DATA: vendor  LIKE lfb1-lifnr,
          name    LIKE lfa1-name1,
          bank    LIKE lfbk-bankn,
          company LIKE lfb1-bukrs,
          bc_key  LIKE lfbk-banks,
          b_key   LIKE lfbk-bankl,
          cre_by  LIKE lfa1-ernam,
          cre_on  LIKE lfa1-erdat,
          ven_group LIKE lfa1-ktokk,
          dele    LIKE lfa1-loevm,
          nodel   LIKE lfa1-nodel,  "Central deletion block
          sperr   LIKE lfa1-sperr,  "Posting Block
          number TYPE i.
    DATA: fi_vendor_dupli LIKE fi_vendor OCCURS 0 WITH HEADER LINE.
    DATA: fi_vendor_dupli1 LIKE fi_vendor OCCURS 0 WITH HEADER LINE.
    CONSTANTS: a1sg(5) VALUE 'AH',
               w1sg(5) VALUE 'IMH',
               n1sg(5) VALUE 'NUH',
               t1sg(5) VALUE 'TTSH',
               q1sg(5) VALUE 'HQ',
               h1sg(5) VALUE 'PHARM',
               e1sg(5) VALUE 'NETC',
               p1sg(5) VALUE 'POLY',
               d1sg(5) VALUE 'DIAG'.
    Limiting the select option to company code.
    *SELECT-OPTIONS: bukrs FOR lfb1-bukrs.
    START-OF-SELECTION.
      PERFORM bank_detail.
    TOP-OF-PAGE.
      PERFORM header_detail.
    *&      Form  BANK_DETAIL
          text
    FORM bank_detail.
    *To get the duplicate bank account.
      SELECT  lfbk~bankn COUNT( * ) INTO (bank, number)
                       FROM lfbk
                       INNER JOIN lfa1
                       ON lfa1lifnr EQ lfbklifnr
    WHERE loevm NE 'X
                                          GROUP BY lfbk~bankn.
        IF sy-subrc EQ 0.
          IF number > 1.
            MOVE: bank       TO  fi_vendor_dupli-bank_no,
                  number     TO  fi_vendor_dupli-no_account.
            APPEND fi_vendor_dupli.
            CLEAR fi_vendor_dupli.
          ENDIF.
        ENDIF.
      ENDSELECT.
    *vendor created on higher level
      LOOP AT fi_vendor_dupli.
        SELECT alifnr abanks abankl abankn INTO
                            (vendor,bc_key, b_key, bank)
                            FROM lfbk AS a
                            INNER JOIN lfa1 AS c
                            ON alifnr EQ clifnr
                            WHERE a~bankn EQ fi_vendor_dupli-bank_no
    AND c~loevm EQ space.
          IF sy-subrc EQ 0.
            CASE company.
              WHEN 'A1SG'.
                company = a1sg.
              WHEN 'W1SG'.
                company = w1sg.
              WHEN 'N1SG'.
                company = n1sg.
              WHEN 'Q1SG'.
                company = q1sg.
              WHEN 'H1SG'.
                company = h1sg.
              WHEN 'E1SG'.
                company = e1sg.
              WHEN 'P1SG'.
                company = p1sg.
              WHEN 'D1SG'.
                company = d1sg.
              WHEN 'T1SG'.
                company = t1sg.
            ENDCASE.
            MOVE: company    TO fi_vendor_dupli1-bukrs,
                  vendor     TO fi_vendor_dupli1-vendor_no,
                  bc_key     TO fi_vendor_dupli1-bankc_key,
                  b_key      TO fi_vendor_dupli1-bank_key,
                  bank       TO fi_vendor_dupli1-bank_no,
                  fi_vendor_dupli-no_account TO
                         fi_vendor_dupli1-no_account.
            APPEND fi_vendor_dupli1.
            CLEAR fi_vendor_dupli1.
          ENDIF.
        ENDSELECT.
        CLEAR company.
      ENDLOOP.
    *Vendor created under company code level eg. employee group.
      SELECT alifnr bbanks bbankl bbankn
                      INTO (vendor,bc_key, b_key, bank)
                      FROM lfb1 AS a
                      INNER JOIN lfbk AS b
                      ON alifnr EQ blifnr
                      FOR ALL ENTRIES IN fi_vendor_dupli1
                      WHERE a~lifnr EQ fi_vendor_dupli1-vendor_no.
        IF sy-subrc EQ 0.
          IF company NE space.
            MOVE: vendor     TO fi_vendor_dupli1-vendor_no,
                  bc_key     TO fi_vendor_dupli1-bankc_key,
                  b_key      TO fi_vendor_dupli1-bank_key,
                  bank       TO fi_vendor_dupli1-bank_no.
            MODIFY fi_vendor_dupli1.
          ENDIF.
        ENDIF.
      ENDSELECT.
      LOOP AT  fi_vendor_dupli1.
        SELECT name1 ernam erdat ktokk loevm nodel sperr
                     FROM lfa1
                     INTO (name, cre_by, cre_on, ven_group, dele, nodel,
                     sperr)
                       WHERE loevm EQ space
                       AND lifnr = fi_vendor_dupli1-vendor_no.
          MOVE: name   TO fi_vendor_dupli1-name,
                cre_by TO fi_vendor_dupli1-create_n,
                cre_on TO fi_vendor_dupli1-createon,
                ven_group TO fi_vendor_dupli1-acct_group,
                dele      TO fi_vendor_dupli1-deletion,
                nodel   TO fi_vendor_dupli1-nodel,
                sperr  TO fi_vendor_dupli1-sperr.
          DELETE ADJACENT DUPLICATES FROM fi_vendor_dupli1
                              COMPARING vendor_no.
          MODIFY fi_vendor_dupli1 TRANSPORTING name
                                               bukrs
                                               create_n
                                               createon
                                               acct_group
                                               vendor_no
                                               deletion
                                               nodel
                                               sperr.
        ENDSELECT.
      ENDLOOP.
      SORT fi_vendor_dupli1 BY bank_no vendor_no.
      DATA: cnt TYPE i.
      LOOP AT  fi_vendor_dupli1.
        SELECT SINGLE * FROM t077y WHERE ktokk EQ
                                  fi_vendor_dupli1-acct_group
                                  AND spras EQ 'EN'.
    WRITE: /1    fi_vendor_dupli1-bukrs,
            WRITE: /5   fi_vendor_dupli1-vendor_no,
                15   fi_vendor_dupli1-name,
                50    t077y-txt30,
                70   fi_vendor_dupli1-bank_no,
                90   fi_vendor_dupli1-bankc_key,
                95   fi_vendor_dupli1-bank_key,
                105  fi_vendor_dupli1-create_n,
                115  fi_vendor_dupli1-createon,
                128  fi_vendor_dupli1-deletion,
                134 fi_vendor_dupli1-nodel,
                158 fi_vendor_dupli1-sperr.
                ENDLOOP.
      ULINE.
    ENDFORM.                    "BANK_DETAIL
    *&      Form  HEADER_DETAIL
          text
    FORM header_detail.
    WRITE: /1 'Company',
      WRITE: /40 sy-title,
              110 'Page',sy-pagno.
      SKIP TO LINE 3.
      WRITE: /5 'Vendor No',
             15 'Vendor Name',
             50 'Acct Group',
             70 'Bank Account',
             87 'Country',
             95 'Bank Key',
             105 'Create By',
             115 'Create on',
             127 'Del.Flag',
             130'Central deletion flag',
             155'Block for Post.'.
      ULINE.
    ENDFORM.                    "HEADER_DETAIL
    regards
    JK

    solved

  • Vendor Master Bank Account Number Changes

    Hi,
    Where are the changes of bank account number (New and the Old one) in vendor master data Reflected , is there any Table.??
    Regards,
    Archit

    You can see the bank account before and after values in vendor master display or change.  Call up the vendor master (XK02 or XK03), go to the Vendor: Payment transaction screen, and then select the menu path Environment -> Account Changes -> All Fields.  The bank account changes will be listed under the change screen heading "Vendor Master (Bank Details)".  You may need to click the button "Entries" to see the Vendor Master (Bank Details).  Double-click that line and you will see the before and after values for ever bank number change.
    Example:
    Entry Vendor Master (Bank Details)
    Date                          Chgd By              Co Bank Number    Acct/IBAN
    11/30/09         ??????????       US 043318092      987654321     NEW
    11/30/09         ??????????       US 043318092      123456789     OLD
    Hope this helps.

  • Overhead on Subcontract Vendor Charge

    We have implemented Raw Material Costing, adding overhead through use of a costing sheet.
    We use subcontracting (PrcTypF/SpcPrcTyp 30). In most plants it is a minor portion of the cost, so we did not need to know how to add overhead to the vendor charge
    At One of the plants that we are converting now to Raw Material costing, the Subcontract vendor charge is 80 - 90% of the value. We need overhead added to that charge.
    I thought I could just check the box in the valuation variant for Overhead on Subcontract Materials and it would calculate.
    It did not..
    I did add the subcontract cost element to the BASE on the costing sheet.
    What else do I need to do to get the overhead
    thank you
    Althea

    Have you specified OH costing sheet under the tab overhead? This costing sheet needs to be specified for the Finished/semi finished field.
    Please check if you can see the OH sheet under the valuation tab. Also check if the cost element in OH costing base is showing in itemization.
    I think it is a OH costing sheet issue and not subcontracted material issue.
    Sanjay Wagh

  • Vendor master-Bank issueLSMW

    Hi,
    I am uploading data to vendor master.
    I am using a previously existing program.....requirement was to upload using separate structures.  So I copied the same program and deleted unnecessary views in that......that way it would be appropriate for one particular view..so I had to skip the record for general data (using separate structures(lsmw))and uploading bank view based on control data.
    I have structures like   
                                      basicview
                                         ->general data(skip record)
                                         ->bank view
    in the input file i have a dummy record for general data coz...its going to skip.
    this process worked for all the view....but for bank I get an error as
    "Trans. 1 XK01: Acct already exists general area not being processed'
    editing was terminated.
    Any ideas for the cause of error?
    Plz help.
    thanks

    Hi,
    You have to create a bank key by using TC FI01 for your vendor bank account.
    You can update these fields in the vendor maser "payment transaction" tab (3rd tab)
    1. Bank of Vendor eg. ICICI Bank, Dena Bank etc - Comes aumatically by putting the bank key
    2. Type of account eg. Current, cash credit etc - Enter it in "Bnkt" field (here you can create your own identification eg. 0001 for SB, 0002 for CA, and so on..)
    3. Account number of vendor in bank eg. 007102000011857  - Enter it in the "Bank account " field
    4. RTGS / NEFT no. eg. ICIC0000004 - Capture it in the "Reference details" field.
    Hope it helps
    Saravanan.A

  • Vendor master - bank particulars

    Hello Gurus,
    I want to maintain followoing information in FK02 - Change vendor master.
    1. Bank of Vendor eg. ICICI Bank, Dena Bank etc
    2. Type of account eg. Current, cash credit etc
    3. Account number of vendor in bank eg. 007102000011857
    4. RTGS / NEFT no. eg. ICIC0000004
    How should i maintain this?
    Pls help.
    Points will be awarded

    Hi,
    You have to create a bank key by using TC FI01 for your vendor bank account.
    You can update these fields in the vendor maser "payment transaction" tab (3rd tab)
    1. Bank of Vendor eg. ICICI Bank, Dena Bank etc - Comes aumatically by putting the bank key
    2. Type of account eg. Current, cash credit etc - Enter it in "Bnkt" field (here you can create your own identification eg. 0001 for SB, 0002 for CA, and so on..)
    3. Account number of vendor in bank eg. 007102000011857  - Enter it in the "Bank account " field
    4. RTGS / NEFT no. eg. ICIC0000004 - Capture it in the "Reference details" field.
    Hope it helps
    Saravanan.A

  • Entering Vendor Master Bank Data

    To avaoid a conflict of duties, who should be maintaining vendor master bank data?
    I believe having the same person who is entering AP invoices also updating banking info for vendors is a conflict.  Who normally has this responsibilty?
    Also, who normally creates the bank FI01?
    Thanks!
    Edited by: barriok on Sep 21, 2011 8:12 PM

    Dear,
    Vendor master should be created by Procurement department person. A person who PD assigned to do so.
    For us - we have programmed an html based application [outside SAP].
    There are 120 procurement officers exists - who ever raise new vendor creation request with all filled details, request went to Power user of Procurement department.
    Power user approves - goes to Procurement GM for approval. In next step to Finance manager to check payment terms and conditions [but these terms and conditions also entered by procurement department power user]. Once agreed by finance manager - he approves - again alert comes to procurement power user to go ahead with creating new vendor master in system.
    Regards,
    Syed Hussain.

  • Vendor Partner Bank type -F110

    Hi,
    When we process F110, even though  Vendor Partner Bank type(BVTYP) is blank. The item is not showing as exception in the proposal list. Is there anyway we can show the item as exception when this field is blank.
    Thanks in advance
    GB

    Dear GB,
    Pplease take in consideration to use the BTE 1810 and first read the SAP note 1470191.
    I hope this helps.
    Mauri

  • Accrued Sales Tax Amount  & Vendor Charged Sales Tax amount

    Hi,
    I need to Genertate a Report for Sales Tax. Please suggest TABLE & FIELDS names & information  of
    +Accrued Sales Tax Amount+
    & Vendor Charged Sales Tax amount
    Thanks in Advance.

    Hi Harshita......
    Think why you want to change the Tax Amount at transaction level?
    Because you want to match the figure with the Hard Copy.
    So if you change the Tax Amount at Outgoing Excise Invoice level then how Delivery And its AR Invoice Total will be vary?
    By the way If you see the JV of Delivery it is not at all matched with AR Invoice provided Purchase Cost should not be equalt to Sales Cost.
    Delivery is only concern with stock not value.....
    SO there wont be any problem I guess......
    Regards,
    Rahul

  • How to activate "Search Vendor by Bank Number" in FBL1N / OB50

    Hi.
    we need to search vendory by Bank number (BANKN).  We tried to do that thru OB50.  But not able to activate it.  Any inputs on this would help.
    (I am in sap R/3 4.7)
    regards,
    JP

    Hi Deepa,
    Thanks for the quick reply. But I guess my question was incomplete.
    As you said, we can search in table. But what is required is to have this search option in FBL1N & XK03.
    For eg : when an user wants to select a vendor account in FBL1N, he gets the followng options (F4/dropdown)  viz  vendors by Co.code, vendors by Country, Vendors by material etc.
    In this F4/dropdown, he would like the option "Vendors by Bank Number"
    How do you acheive this?
    regards,
    Jai

  • Vendor's bank account number has 19 digits.

    Dear Friends,
    The user has run the proposal run (T.CodeF110). The  vendor's bank account number didn't captured in full because it contains 19 digits.
    The SAP Note has 96624 has been implemented.As I know, all the 19 digits are not captured in F110.
    Please suggest how to solve the issue?
    Regards
    Sridhar

    Hi,
    You can do the necessary settings in SPRO --> SAP Netweaver --> General settings --> set countries --> set country specific checks.
    Here you can mention 19 as bank account number length
    Dhara D.

  • Charged a fee on my debit card want it refunded

    I was charged a fee on my debit card of 24.99 did not authorize this transaction

    Check your iTunes purchase history. If it shows that a purchase was made at about that time, click here and fill out the form. If not, contact the card's issuer.
    (111005)

Maybe you are looking for

  • Unable to adjust volume on iPhone 4

    Hi, My iPhone 4 has developed a strange fault. Sometimes when I try to adjust the volume, either with the hardware buttons or using the software interface, the phone registers that I'm changing the volume but it doesn't actually get any quieter (or l

  • Vendor wise/Invoice wise consumption for each WBS element

    Any standard report from SAP, which provide details of Vendor Purchase order / Contract, details of SES with WBS no. and details of Vendor invoice in columnar form. SAP system can not generate standard reports giving vendor wise/Invoice wise consumpt

  • Help convert spread pages to single pages when converting Indesign to PDF for printer

    I have an Indesign booklet of 28 pages which I need to convert to pdf as single pages so I need to turn off the spread pages/facing pages option so I can convert to pdf to get it printed.  I know how to turn the spread/facing pages off but when I do

  • ICloud items not showing on devices

    I use iCloud and had to turn in my iPhone and MacBook pro for repairs. I just noticed that a few items (photo and video) from my phone are not on my iPad. Is there anyway to get them?

  • Row numbers in Financial reporting Studio report

    Hey I am designing reports in FR Studio that require row numbers next to the line item (Account) description. The problem is that these rows can be dynamically suppressed if they are 0/missing/error. So the question is: how do I get row #s, skipping