Vendor master update for Payment methods at MASS t.code

Hi friends,
Iam changing one new payment method to all vendors (600). for this updates iam using MASS t.code.but iam confuging this step. please help me how to do it at mass t.code step by step. it is very urgent.
Advance Thanks
Raj

After execution of Mass give the object type LFA1( if you want to go directly to this screen use T.Code XK99)
1.select Vendor Master (Company Code) table LFB1 and execute
2. Select Data Records to be changed tab
3. give the vendor numbers and company code and execute
4.select Fields, select the field Payment methods from pool and move(selectleft arrow) to selection criteria and enter
5.give the new payment method in new value field and press the carry out mass change and save.
pl. assign points

Similar Messages

  • Fb60 is not updating the vendor master HB and payment method

    Hi,
    For APP i have maintained the house bank and payment method in vendor master. When we do the FB60, system is not copying the house bank and payment method in FB60 document. Can any one guide me on this.
    govind

    Hi,
    Field status is optional only. And in FB60 screen i can able to view the house bank and payment method. My doubt is i have assigned the house bank and payment method in vendor master, hence while doing the fb60 system want to pickup and update the house bank and payment method in fb60 transaction. but it is not happening here. So in F110 we are not getting the document which was posted in fb60.
    govind

  • Alternative Payee set up in vendor master record for payments....

    Hi all,
    I am facing the problem on alternative payee set up in vendor master record.
    I have done the following settings but its not working.
    1) Created alternative payee vendor (XYZ) and blocked for posting.
    2) Created main vendor (ABCD) and given alternative payee vendor name (XYZ) in alternative payee field payment transactions tab of(general data + company code data) main vendor.
    3) Created an invoice for main vendor (ABCD) using F-43.
    4) Trying to make payment to main vendor (ABCD) in f-53.  So when i simulate the document system supposed to show automatically the alternative payee vendor number . But itu2019s not showing and still making payment to main vendor not alternative payee.
    Please help me to solve this issue. Is there any other settings need to be done to achieve this scenario (alternative payee).
    Thank you very much.

    Hello,
    thank you for your quick reply.
    1) i taken out the payment block for alternative vendor (XYZ) and tried again the above 3rd and 4th steps but still not working system paying to main verdor (ABCD) instead alternative payee(XYZ).
    2) i blocked for payment posting the main vendor(ABCD) and tested same still not working.
    need helps to resolve this.
    thanq.

  • I want IDOC for Vendor master updation ( XK01 &XK02 )

    Hi
    I want to do LSMW in IDOC method for this vendor updation.
    So I want IDOC for Vendor master updation ( XK01 & XK02 ).
    I want to do both create vendor and change also.
    Regards,
    Ravi
    Edited by: kandukuri ravi on Dec 1, 2008 2:56 PM

    Hi,
        For Vendor Master using IDoc's for LSMW,Use Message Type = CREMAS and Basic Type = CREMAS05.
    For Basic type 01,02,03...05 are versions which includes more fields in basic type so better use latest version.
    Hope it will help you.
    Regards,
    Sudhakar Reddy.A

  • TS1424 Please help me because i am having a problem. i cant buy online or download online again. if i want to use a Visa, Amex or Master Card. (There's a billing problem with a previous purchase. please update your payment method)

    There's a billing problem with a previous purchase. please update your payment method. I need a help on how to clean up all my last records for me to use another Visa card again or Master Card.

    Contact iTunes Customer Service and request assistance.
    Apple  Support  iTunes Store  Contact Us

  • 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

  • My order have a status: "Payment action required: We are unable to obtain an authorization for the credit card you provided. Please contact your card issuing bank. Please update your payment method to continue with this order". But i paid from AmEx.

    My order have a status: "Payment action required: We are unable to obtain an authorization for the credit card you provided. Please contact your card issuing bank. Please update your payment method to continue with this order". But i paid from AmEx. And my money blocked when i see it in internet banking.

    Have yuo contacted AmEx? From what you describe it seems like AmEx is blocking the charge.
    You can contact iTunes if you want by:
    Contact iTunes

  • Do we get charged for updating our payment method

    do we get charged for updating our payment method from none to a debit information

    No, but they will do authorization holds a small amount to see if the credit info is correct and valid.
    iTunes Store & Mac App Store: About payment card authorization holds

  • My app store keeps asking for me to update my payment method as its about to expire so i enter my details and it keeps saying card declined , why is this ?

    my iphone app store keeps asking me to update my payment method every time a go to download something from the store , it says my method is about to expire so when i re-enter my card information it keeps saying that my card is declined , why is this?

    What sort of card are you trying to use ?
    If it's a debit card then I don't think that they are still accepted as a valid payment method - they are not listed on this page and there have been a number of posts recently about them being declined
    If it's a credit card then is it registered to exactly the same name and address (including format and spacing etc) that you have on your iTunes account, it was issued by a bank in your country and you are currently in that country ? If it is then you could check with the card issuer to see if it's them that are declining it, and if not then try contacting iTunes support and see if they know why it's being declined : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • F110 - Payment program for payment method 'W'

    I'm trying to implement wire payments (using EDI).  When I run F110 I choose 'W' as the payment method on the parameters tab, and on the printout/data medium tab I expect to see program RFFOUS_T - instead I'm seeing RFFOUS_C.  Isn't RFFOUS_T the program that should run for wires?  I also am seeing RFFOAVIS and RFFOEDI1.  Should these programs be running, as well?

    Hi
    In FBZP did you do all the steps for payment method W
    1.setup payment method per country for payment transactions
    2.setup payment method per company code for payment transactions
    3.setup all company codes for payment transactions
    4.setup paying company codes for payment transactions
    5.setup bank determination for payment transactions.
    the error you are getting is No valid payment method found , not with the bank account number , g/l account and so on......
    Try removing the payment method either in the Vendor Master or in the Document and run F110.
    Regards
    Venkat

  • Error:-While vendor master update

    Hi,
    Here issue is at the time of vendor master data update payment method is updated from DMT to DLP  .
    FK03 >> Environment  >> Account changes >>  All fields  >> All changes
    Shows other changes as home address,mobile number etc.
    Can anyone tell me why with payment term other changes are coming in change log even if it was not done moreover what could be the possible solution so other changes will not appear in the change log.
    Regards,
    Dharmesh

    Hey!!!
    What is the vendor master update error?

  • Can't download anything from app store or itunes. everytime i try to install an app i get "there is abilling problem with a previous purchase. please update ur payment method". i have recently changed my address and visa debit card. please help

    can't download anything from app store or itunes. everytime i try to install an app i get this error "there is a billing problem with a previous purchase. please update ur payment method". i have recently changed my visa debit card and home adress and when i make these changes i still get the same error.
    will u please help me out?

    Are you listing the billing address for the card correctly? The address in the iTunes/MAS account must match the address on your bill exactly.

  • Payment Advice for Payment method T- Transfer

    Hi,
    When I run F110 (Automatic payment program), I need to provide the payment advice for payment method T (bank transfer)
    to the vendor in the format provided by the client.
    My question is:
    1. Where to assign the payment advice form  in customisation for payment method T
    2. which program has to be assigned to the payment advice form.
    Very Important note:  Here we are ALSO using DMEE file to upload- Under payment method country -I have configure the same for use payment medium workbench
    Rgds,
    Vidhya

    Hi Vidhya,
    All this is done in a single screen transaction code FBZP.
    Where to assign the payment advice form in customisation for payment method T
    This is in Payment methods in Company codeSelect your payment method-Expand form data and assign the paymnet advice form.
    which program has to be assigned to the payment advice form.
    FPAYM_INT_DMEE(For DMEE)./ in the next form you may have F110_IN_AVIS.
    Thanks
    Aravind

  • Please do not enter data for payment method Cheque papel error in IT0009

    Hi Experts,
    Whenever i try to  maintain bank details infotype for payment type C(Check Papel),the  system is throwing error "Please do not enter data for payment method Cheque papel". As per SAP std, I had deleted the entries for bank key, bank account and bank control key and maintained IBAN field in IT0009.While saving i am getting the error""Please do not enter data for payment method Cheque papel" and I couldn't save the record.
    Then i  deleted the entries for bank key, bank account and bank control key and IBAN field also in IT0009. While saving i am getting the error "Fill in all required entry fields". System behaves  as if Iban a required field in IT0009. Our bank details infotype is country specific.We made it country
    specific through feature P0009 and setting in table T588M.As per our conf setting IBAN field is optional. Even though IBAN field is optional, this field behaves  as that of a mandatory field in IT0009.Iam  facing this issues only for a few countries like Spain,Italy etc.For other counties i am able to change of create Bank details record  for payment type C.
    I have checked in Payment Methods by Country in FBZP (Payment Method Classification is set to Check and BANK DETAILS box is unchecked) but still no solution. Do i need to check in any other setting.
    Please shed some light on this issue.Thanks in Advance.

    Hi Jobish,
    It's weird but I tried the below method and it works
    Here's what you can try in case you do not want to enter the bank details for payment method 'C'..
    Tcode FBZP - > payment methods by country - > select payment method as 'C' and make below changes (make a note of these changes as you will have to undo them after saving the table):
    a. Payment method by classification - select bank transfer
    b. Reqd master record specifications - check the bank details options and select the options which you want to be entered (a/c no required, IBAN rqd, SWIFT code rqd)
    Save the table.
    PA30- > Edit any record once again and save it.
    Again go to FBZP and undo the above changes, i.e, revert to the original entries and again save the table.
    Try editing the record now in PA30 and it allows to save. This is the second weird workaround that I have come across and still not sure why
    After above workaround, I didn't get any error while maintaining the record, for this or any pernr.
    See if it works.
    Regards
    Neha

  • PO created by means of Workflow  with out Vendor master updates

    Hi  Friends,
       I  have my scenario like this. I am working with Production server. When ever a request is created, it has to be sent for Vendor master data updates. then only a PO has to be created. The problem is the PO is created and the workflow is completed with out vendor master updates. When i check through SWI6  the step is just skipped. In the graphical view the steps vendor master update i.e tru  descion and other wait step types are disappeared. but in the original workflow the steps are present. can any one pls help me in solving this?
    Thanks,
    Archana.

    Hi  Arghadip,
      Thanks for the reply. The process is like this :
       when once request is created , it will fetch the email id of the approver from LDAP
       Then 2 approval steps are there. first approval is not mandatory. second is mandatory and its having terminatting event.
      After this Amendment descion will be there. on rejection of this descion it has to go and update vendor master. Until the amendments the process is going on. after  this  vendor master update will be there . it includes wait steps to  finish the update. then PO has to be created. but  from vendor descion to wait event the steps are disappeared when i checked  in SWI6 for that user. pls help me.

Maybe you are looking for

  • Java Control Panel wont open at all and any Java Applets crash web browsers

    Hello, I recently installed a fresh fully updated copy of Windows 7 Home Premium 64 bit, and I have not for the life of me been able to get Java working at all. Java version is the latest JRE 6U31. I only have Internet Explorer 9 installed but I doub

  • Syncing iPhone 4S to a an iTunes library that doesn't have my nonpurchased on it

    Hi. My computer that had my iTunes on it died, so I downloaded iTunes on to my laptop. The new iTunes on my PC Windows 7 laptop  has all of my purchased songs on it through my iTunes Store account . Will I be able to sync my phone to my laptop withou

  • Free Goods for QT order Types

    Can I use automatic Free goods determination for QT order types. however i am using it for OR right now and i have done the related configuration for QT as well but system is not detmining Free Goods for QT order types. I have also maintained the bel

  • 12/9/2014 - Release - Flash Player 16

    The next version of Flash Player is available for immediate download.  In today's release we've updated Flash Player with critical security updates and bug fixes.  We recommend users update to the latest version. Security update details can be found

  • 1099 Vendors - print forms

    Hello,    Kindly let me know the procedures to print misc forms for 1099 vendors for the beginning of 2009. We have a bunch of 1099 vendors. I have never worked on this before so will ap