Mass Vendor master Payment method update

Hi All
Mass vendor master payment method update, is there any other alternative solution to update the new payment method in Vendor master. Normally we need to assign new payment method in Vendor master one by one instead of mass vendor master payment method update. Please help me to resolve the issue.
Regards
K.Gunasekar

Thanks for your update
I tryed to assign the new payment method in MASS transaction code and new value is updated but existing payment method has deleted. We need to maintain the previous payment method along with new payment method. Please provide me the necessary solution.
Regards
K.Gunasekar
Edited by: KGUNASEKAR on Dec 6, 2010 10:15 AM

Similar Messages

  • Mass change of Payment Method for Vendor

    Is there any way to do mass change of Payment Method for Vendor (trx. XK02) without ABAP? Need to change 1500 vendors.

    HI
    You can use transaction code MASS and object LFA1 to mass change the payment method.
    Once entering you can select table LFB1 and do mass change based on some filter parameters.
    Anand

  • Mass reallocation of payment methods in APP

    How to make a mass reallocation of payment methods in APP?

    Hello Muni,
    If you want to execute the APP for multiple payments methods at one go, you Need to first Update the Payment Method in your Open Invoices. As suggested by Raman, you can do mass update using T. code FBL1N.
    Once done, you can put all relevant outgoing payment methods in APP Parameters and execute the Payment run. Based on the payment method maintained in the Open Invoices, your Invoices will get cleared.
    Hope that helps.
    BR
    Amitash

  • Vendor specific payment method in  FB60

    Hi,
      We are having the requirement like below.
    In FB60 transaction code. For the given vendor in payment(tab) field payment method. When we click on F4 button on payment-method pop-up should come up with the payment methods specified for that particular vendor.
    ex: For vendor 100055 payment methods C and F are maintained.
      So, in FB60 t-code when I click on F4 button on payment method field it should show C and F are the payment methods for the vendor 100055.
    pls help me how to get this requirement...
    Regards,
    vinod

    Not resolved.

  • Miro payment terms on the based on the vendor master payment terms

    i need to caluculate the MIRO payment terms based on the vendor master payment terns lfb1-zterm
    what are the configuration settings needed.
    would  u please tell me the solution
    with regards,
    Srinivas

    Hi,
    If you have maintained the payment term in the Purchase Order, it will overwrite the payment term which is maintained in the Vendor Master. If no payment term is maintained in the PO, then the payment term which is maintained in the Vendor Master will be considered.
    Regards,
    Amit

  • Vendor Master Payment Block

    Hi,
    I entered Payment Block as "B" in Vendor Master. But while making the payment through F-58, it is posting to that vendor.
    I checked using payment block in Payment Terms also, But if we select "B" in payment terms, it will block to the posted line item only.
    How can we block that vendor for payment.
    Very URGENT
    Rgds
    sunfico

    If you dont want to pay the vendor at all, you need to do maintain the block key in teh vendor master as *
    "If the * block key is entered in the master record, none of the items in this account are included in the automatic payment process ".                                                       
    Else
    "If the + block key is entered in the master record, only those
    items for which a payment method is explicitly defined are   
    included in the automatic payment process.                    "
    Points for reading SAP help on teh field.
    Praveen.

  • R12 API for Payment Method Update at supplier site

    Hi
    I am using api AP_VENDOR_PUB_PKG.Update_Vendor_Site to update the Payment Method at Supplier Site level. The below code executes with no error but dont update the payment method. The requirement is to update the payment method to SEPA
    Code :
    DECLARE
    v_error_reason VARCHAR2 (2000) := NULL;
    v_msg_data VARCHAR2 (1000) := NULL;
    v_msg_count NUMBER := NULL;
    v_return_status VARCHAR2 (100) := NULL;
    v_vensite_rec_type      AP_VENDOR_PUB_PKG.r_vendor_site_rec_type;
    ext_payee_rec           IBY_DISBURSEMENT_SETUP_PUB.EXTERNAL_PAYEE_REC_TYPE;
    BEGIN
    DBMS_OUTPUT.put_line ('BEFORE apps initialization');
    --Fnd_Global.apps_initialize(-1,20639,200);
    fnd_global.apps_initialize(730908,141200,401);
    --DBMS_OUTPUT.put_line ('AFTER apps initialization');
    v_error_reason := NULL;
    v_return_status := NULL;
    v_msg_count := NULL;
    v_msg_data := NULL;
    --ext_payee_rec.default_pmt_method := 'SEPA';
    v_vensite_rec_type.org_id := 2796;
    v_vensite_rec_type.vendor_site_code := '0653-01NEUSS';
    v_vensite_rec_type.ext_payee_rec.default_pmt_method := 'SEPA';
    --v_vensite_rec_type.ext_payee_rec.default_pmt_method:= 'CHECK';
    DBMS_OUTPUT.put_line ('BEFORE remittance API');
    AP_VENDOR_PUB_PKG.Update_Vendor_Site
    ( p_api_version => 1.0,
    p_init_msg_list => FND_API.G_FALSE,
    p_commit => FND_API.G_FALSE,
    p_validation_level => FND_API.G_VALID_LEVEL_FULL,
    x_return_status =>v_return_status ,
    x_msg_count => v_msg_count,
    x_msg_data => v_msg_data,
    p_vendor_site_rec =>v_vensite_rec_type,
    p_vendor_site_id => '393130'
    commit;
    DBMS_OUTPUT.put_line ('AFTER pymt mtd API');
    DBMS_OUTPUT.put_line (v_return_status);
    DBMS_OUTPUT.put_line (v_msg_count);
    DBMS_OUTPUT.put_line (v_msg_data);
    IF v_return_status = fnd_api.g_ret_sts_success THEN
         IF v_msg_count >= 1 THEN
    FOR i IN 1 .. v_msg_count
    LOOP
    IF v_error_reason IS NULL THEN
    v_error_reason := SUBSTR (fnd_msg_pub.get (p_encoded => fnd_api.g_false), 1, 255);
    ELSE
    v_error_reason := v_error_reason|| ' ,'|| SUBSTR (fnd_msg_pub.get (p_encoded => fnd_api.g_false), 1, 255);
    END IF;
    DBMS_OUTPUT.put_line ('VENDOR_remittance email UPDATE API ERROR-' || v_error_reason);
    END LOOP;
    END IF;
    ROLLBACK;
    ELSE
    DBMS_OUTPUT.put_line ('The updateion is sucessful');
    COMMIT;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.put_line (SQLERRM || '-' || SQLCODE);
    END;
    the fnd_api.g_ret_sts_success returns value as 'U' . Means it did not completed successfully
    Do I need to user following API ?
    IBY_DISBURSEMENT_SETUP_PUB.Update_External_Payee instead of above API?
    Thanks for help
    Best Regards
    Nikhilesh
    Edited by: user10238025 on Apr 26, 2013 5:38 AM

    Hi Irfan,
    thanks for reply.
    we are on application version 12.1.1 .
    But i have one doubt here, if we update directly ap_supplier_sites_all table, it won't impact on TCA tables know?
    Thanks.
    Edited by: user627525 on Jul 27, 2010 12:16 AM

  • Vendor master payment terms

    Hi,
    I would like users to maintain same payment terms in vendor master Purchasing and company view
    So i would like system to copy payment terms maintained in one field to other field or vise versa
    Are there any std.settings available for this?
    or any user exit or badi?
    Please confirm
    Thanks
    BR
    Diwakar

    You can use field exit for this purpose, take help form ABAPer to define this field exit for the payment term

  • Vendor Master Payment Terms and Reconcillation account

    Pls tell me In SPRO where Payment Terms and Reconcillation account's are maintained for Vendormaster

    HI Vinay,
    Your question isn't clear. You want to define Payment terms and Reconciliation account for Vendor Master record ?
    If this is correct then go through the below path for payment terms & Reconciliation Account.
    MAINTAIN TERMS OF PAYMENT:
    SPRO –> REF IMG –> Financial Accounting –> Accounts Receivable and Accounts Payable –> Business Transactions –> Incoming invoices/Credit memos –> Maintain terms of payment (or) OBB8
    RECONCILIATION ACCOUNT
    Accounting –> Financial Accounting –> General Ledger –> Master Records   –> Individual processing –> Centrally (or) FS00
    Enter G/L Account No. – XXXXXX
    Company Code – AAAA and select CREATE   button. 
    Under Type/Description tab
    Account Group – LIABILITIES
    • Balance sheet
    Short text – A/P (or) SUNDRY CREDITORS A/C
    G/L acct long text – A/P A/C
    Under Control data tab
    Account currency – INR
    Reconciliation account for A/C type – Vendors
    Under Create/bank/interest tab
    Field status group – G067 and SAVE.
    Rams.N
    If this is helpful, assign me points

  • MASS Article Master reorder point update thru program

    Hi Gurus,
    The BAPI to change Article Master is BAPI_MATERIAL_MAINTAINDATA_RT.  Can you please let me know if there is any BAPI which i can use for MASS update of articles instead of calling the above BAPI in a Loop. My purpose is to mass udpate reorder point for articles.
    Your help would be highly appreciated.
    -David.

    Hi David,
    You can use the transaction MASS_MARC to do this.
    Remember you can only change reorder point of the articles already on replenishment using this transaction.
    Regards,
    Naveen

  • HT1918 I did a payment method update then it tells me to finish transaction  on itunes support what do i get to do

    Help me

    Welcome to the Apple community.
    Did you follow the instructions in the message and contact Apple, which you can do through iTunes Store Support

  • Payment with currency GBP, payment method Q: No valid payment procedure

    Hi,
    We  have a vendor, which is coming into error in the payment run .The error is as below.
    'Payment with currency GBP, payment method Q: No valid payment procedure'
    In FBZP, for the company code XXXX Payment method Q is defined.
    in Vendor master Payment method Q is defined. Vendor exists in the company code XXXX.
    In the invoice line, the payment method Q is there .
    Then where else, we are missing eny configuration, because of which this error is occuring.
    As Q means cheque payment, no need to provide bank details in vendor master, correct me if I am wrong.
    Please let me know the reason of this error.

    Dear Rudra,
    please run FBZP --> bank determination -->and check if You customized all the steps for Your Paying Company code  like:
    ranking order, bank accounts, available amounts for Your relevant payment method Q.
    Then please delete the proposal and run it again.
    Mauri

  • F110 Auto. payment program ..Problem payment method not found

    Hi,
    I done the configuration for automatic payment program.with payment method c.
    when i am running the program the proposal is created but it is with a error saying no valid payment method found.
    Please guide me.
    Thanks
    Micheal

    I had given the payment method C in vendor master,Payment methods in country and payment methods in company code,Bank determination in FBZP.
    I am getting the same problem.Payment method not found.Please find the error list
    Information re. vendor 1900107 / customer  / paying company code 100 ...
    Payment with currency USD, payment method C: No valid payment procedure
    Information re. vendor 1900107 / paying company code 100 ...
    ... payment not possible because of reported error
    End of log
    Job finished
    Thanks and best regads
    Micheal

  • Payment method in MRKO transaction

    Hi All,
    I have problems with the vendor payment method in the consignation process.
    Let's see, I have made PO, GR and movement 411 against consignment.
    Then, running MRKO the system generates an accounting document. But this document have no payment method and the vendor master has the payment method informed as the F1 help says.
    May be the payment method must be filled in another place? Any idea?
    Regards.

    Thak you for you quick answer Paul,
    But I don't know what you mean ...
    The payment method couldn't be took from line item because it is a goods movement (411 k), neither from purchase document in consignation.
    Then, I think, the system only has the option of the vendor master payment method. On the other hand, I only know the XK03 -> Compay code data/Payment transactions -> master payment method, so what do you mean with "MM part from your vendor", MK03 ...?
    Joan

  • F110 - Pmt Method in Vendor Master not carried over

    Hi SAP Experts,
    Am relatively new to SAP-FI and would like to ask for your invaluable tips on my problem.
    Am using F110 where my payment method is "C" and all of my vendor open items don't have any payment method for each invoice.
    When I run F110, the payment method "C" in the vendor master is not taken by the system and so all of my open items are marked as "exceptions".
    Did I miss out on any settings in my vendor master or in my payment method set-up so that when F110 is ran, the payment method in the vendor master will be used by the system if the invoice does not contain a payment method.
    Thank you all for your help!

    Hi, upload vendor open items with requaired method using FBL1N. Select required items and click Button Mass change.
    Payment method in master data will be picked up to Item by default if you don't maintain it manually or by substitution.

Maybe you are looking for