Duplicate Supplier Bank Account Details

Hi Friends,
I am an Oracle Finance Functional Consultant. I got into an issue i regards to Duplicate supplier bank account details. While making payment to on of the suppliers through payment workbench in Oracle Payables, under remit-to account number field, i can see 2 account numbers xxxxx1234 and xxxxx1234 out of which, i understood that one is a duplicate account number. So, can someone please help me deleting that duplicate account.
Thanks in advance..
Regards,
Venkat

Hi Raju,
Thanks for your valuable time and reply. I checked the document on cash management. But, unfortunately didn't find any information required. Actually, there are 2 supplier bank accounts created through "Bank Details" option in Oracle Payables.
Example:
for Dallas (supplier site) : xxxxx1234 (A/c number)
for Chicago (supplier site): xxxxx3456 (A/c number)
so, in payment workbench, if i select the supplier site as Dallas, then i can see xxxxx1234 twice in the LOV under Remit-to account number field.
And if i select the supplier site as Chicago, then i can see xxxxx3456 twice in the LOV under Remit-to account number field.
I am not able to understand why the account number is getting doubled. Can you please help me understanding the reason behind this doubling of account numbers.
Regards,
Venkatesh

Similar Messages

  • Update supplier bank account details using open Interface

    In R12, how do you update/create the supplier bank accounts for existing supplier and supplier site? Is it correct that the bank account details cannot be
    imported individually and it can only be imported along with the supplier or supplier site? Please provide the steps if we can update the bank account details (like the import program and all that?)
    Thanks in advance!
    -Shirish

    One of the reason of this error is incorrect object_version_number. In API iby_ext_bankacct_pub.update_ext_bank_acct there is a parameter p_ext_bank_acct_rec, in this record type one field is object_version_number. Pass the correct version number which is same as for the given bank account.
    Below is the query to find the correct object_version_number --
    SELECT object_version_number
    FROM IBY_EXT_BANK_ACCOUNTS
    WHERE ext_bank_account_id = <bank_account_id>;
    Thanks,
    PC

  • Supplier Bank Accounts, unable to view banking details at site level - R12

    Hi All,
    I've loaded Supplier banks & branches, and linked bank account with supplier through API.
    However, when I query on the Supplier Banking Details screen (Payables Super User > Suppliers > Inquiry > Suppliers > Banking Details) and select Site for account assignment level and select the site name, I do not see anything.
    From the backend tables, I can see the bank accounts created and linked to suppliers. However, nothing is displayed after querying there or on the Search Supplier Bank Account Assignment screen either.
    Is it a configuration / setup / profile / security setting that's preventing the records from being displayed on the screen?
    Any help / advise is appreciated - apps version R12.1.3
    Thanks in advance,
    LG

    Using the overloaded version of the API appears to add a bank account that's displayed by the user interface in Vendors. No warranties since I can't explain why (just guess). Association value appears to be S for supplier and SS for site.
    set serveroutput on
    DECLARE
    lv_return_status varchar2(1);
    lv_msg_count number;
    lv_msg_data varchar2(2000);
    l_bank_id number;
    l_branch_id number;
    l_end_date date;
    l_start_date date;
    l_acct_id number;
    l_response IBY_FNDCPT_COMMON_PUB.Result_rec_type;
    l_bank_acct_rec apps.iby_ext_bankacct_pub.extbankacct_rec_type;
    BEGIN
    l_bank_acct_rec.bank_id := 14761;
    l_bank_acct_rec.branch_id := 662490;
    l_bank_acct_rec.country_code := 'US';
    l_bank_acct_rec.bank_account_name := 'YOUNG DAVID 2';
    l_bank_acct_rec.bank_account_num := '9999990380';
    l_bank_acct_rec.currency := 'USD';
    l_bank_acct_rec.acct_type := 'CHECKING';
    select party_id into l_bank_acct_rec.acct_owner_party_id
    from AP.ap_suppliers where segment1 = '18606407610';
    IBY_EXT_BANKACCT_PUB.create_ext_bank_acct (
    p_api_version => 1,
    p_ext_bank_acct_rec => l_bank_acct_rec,
    x_acct_id C,
    --x_start_date     => l_start_date,
    --x_end_date          => l_end_date,
    x_return_status => lv_return_status,
    x_msg_count => lv_msg_count,
    x_msg_data => lv_msg_data,
    x_response => l_response
    IBY_EXT_BANKACCT_PUB.create_ext_bank_acct (
    p_api_version => 1,
    p_init_msg_list => FND_API.G_FALSE,
    p_ext_bank_acct_rec => l_bank_acct_rec,
    p_association_level => 'S' ,
    p_supplier_site_id => null ,
    p_party_site_id => null ,
    p_org_id => 1712,
    p_org_type          =>     'OPERATING_UNIT',
    x_acct_id => l_acct_id,
    x_return_status => lv_return_status,
    x_msg_count => lv_msg_count,
    x_msg_data => lv_msg_data,
    x_response => l_response
    dbms_output.put_line(lv_return_status||'-'||lv_msg_count||'-'||lv_msg_data|| '-' || l_acct_id);
    dbms_output.put_line(l_response.Result_Code ||'-'||l_response.Result_Message );
    end;
    /

  • Payee Bank Account Details

    Hi Experts,
    I am developing a report of remittance advice in R12.
    in that i need payee bank account details(payee bank account number, Payee branch number).
    in front end navigation was
    payables resp-->suppliers-->entry
    in supplers query i queried for any supplier and went to banking details
    here i am seeing branch number and account number fields.
    Could you please tell me which tables store these two fields(branch number and account number of supplier form).
    Thanks
    Ashok
    Edited by: 886640 on Nov 23, 2011 4:27 AM

    Hi experts,
    for supplier detail i am running the following query but output is zero rows.
    please guide me to move forward.
    SELECT party_supp.party_name supplier_name
    , aps.SEGMENT1 supplier_number
    , ieb.BANK_ACCOUNT_NUM bank_account_num
    , branch_prof.BANK_OR_BRANCH_NUMBER branch_number
    FROM hz_parties party_supp
    , ap_suppliers aps
    , hz_party_sites site_supp
    , ap_supplier_sites_all ass
    , iby_external_payees_all iep
    , iby_pmt_instr_uses_all ipi
    , iby_ext_bank_accounts ieb
    , hz_parties party_bank
    , hz_parties party_branch
    , hz_organization_profiles bank_prof
    , hz_organization_profiles branch_prof
    WHERE 1=1
    AND party_supp.PARTY_ID=aps.PARTY_ID
    and party_supp.PARTY_ID=site_supp.PARTY_ID
    AND site_supp.PARTY_SITE_ID=ass.PARTY_SITE_ID
    AND ass.VENDOR_ID=aps.VENDOR_ID
    AND iep.PAYEE_PARTY_ID=party_supp.PARTY_ID
    AND iep.PARTY_SITE_ID=site_supp.PARTY_SITE_ID
    AND iep.SUPPLIER_SITE_ID=ass.VENDOR_SITE_ID
    AND iep.EXT_PAYEE_ID=ipi.EXT_PMT_PARTY_ID
    AND ipi.INSTRUMENT_ID=ieb.EXT_BANK_ACCOUNT_ID
    AND ieb.BANK_ID=party_bank.PARTY_ID
    AND ieb.BRANCH_ID=party_branch.PARTY_ID
    AND party_branch.PARTY_ID=branch_prof.PARTY_ID
    AND party_bank.PARTY_ID=bank_prof.PARTY_ID

  • What is no masking for supplier bank account

    Hi,
    what is no masking for supplier bank account? Can someone explain or provide a link please?
    Regards
    846691

    Pl post details of EBS version. Pl see if these MOS Docs can help
    How To Mask Supplier Bank Account Numbers In Release 12?          (Doc ID 436993.1)
    Where Can I Set No Masking For Supplier Bank Account          (Doc ID 762325.1)
    How To Change the Supplier Bank Account Masking in UI          (Doc ID 877074.1)
    HTH
    Srini

  • How can I change my bank account details on iCloud ?? I have been sent instructions via email from Apple but they don't appy ? Can anyone help ? Thanks in advance

    How can I change my bank account details on iCloud ?? I have been sent instructions from Apple via email and they don't appy ?? Can anyone help ? Thanks in advance

    You have to change it using iTunes on your computer, as explained here: Change or remove your payment information from your iTunes Store account (Apple ID) - Apple Support.  (This article: iCloud: View or change your iCloud payment information no longer works with iOS 8 or Yosemite.)

  • Bank Account Details to be Mandatory

    Hi,
    I am a FI consultant and as per client requirement,
    In Vendor master, " Bank Account details to be made mandatory'.
    Could u please guide me how to configure ?
    thanks
    JK

    Hi JK,
    Please go thru SDN and regarding 'Screen Varaint' previously I have given one exaample.
    Do as per following procedure
    I am giving procedure and steps here.
    Screen variants allow you to simplify screen editing by:
    You can insert default values in fields
    Hiding and changing the ready for input status of fields
    Hiding and changing the attributes of table control columns
    A screen variant contains field values and attribute for exactly one
    screen. A screen variant may be assigned to multiple transaction
    variants
    Example:
    Assume: In XK01 Vendor master creation, business wants the 'Bank Details' fields to be made 
    Manadatory (Required fileds).
    1). Click on F1 in the Bank details field and in technical info, note
    down the 'program' and screen in 'screen data area
    2).Goto T-Code SHD0 and enter the t-code, and in screen variant tab, enter
    the name of the screen variant. Enter the "program name" and "screen number".
    By entering this, we can save time by directly going to that particular
    screen, otherwise, system would take through all available program and
    screen numbers for the t-code.
    Click on, u201CCreateu201D
    3).Next, youu2019ll get this XK01 - Bank Details screen, double click on u201CBank detailsu201D, before that empty the field data
    4).Youu2019ll get the screen, here you can see that, the screen variant
    Name is shown, select u201CRequired Onlyu201D option against the u201CDiffernet fields of Bamk Details (Select fields as per your requirement)
    Field. Also select copy settings checkbox. Click u201CExit and Saveu201D button
    5). Next, youu2019ll get one more screen, if you want, enter some short text for the
    Screen variant, then click on save.
    6).A popup window will come, asking for package details. Please get package deatils from your ABAPer, (You can get package details from SE93, there you mention in T.code field "MRIO" -> Display then you will get Package details as "MRM" this standard SAP package.if you have given this package name here, whenever you are going for upgradation, some queries will come. Hence check with your ABAPer and do according his / her suggestion.)
    7).Come back and click on the transaction variant tab, enter a name for
    the transaction variant. You can many number of screen variant to a transaction variant.
    8).Click on u201CInsert Rowu201D and enter the screen variant name which was
    created
    9).Enter the name and click on the u201CFloppy disk-Saveu201D button
    10.)If we goto XK01-Bank Details, still the Bank details will be in optional mode
    11).Goto Standard Variant tab and enter the transaction variant name,
    Click on the u201CActivateu201D button
    12).Now, when we goto XK01-Bank details, we can see that the u201CBank details fields
    has been made as required only
    System Required Request and please remember you have to give "WORKBENCH REQUEST ONLY"
    Hope it is clear
    Thanks and regards,
    Vijay

  • Onetime vendor bank account details

    Hi,
    When entering Name and Address details for a onetime vendor, the Bank Key and Bank Account fields can also be entered. Our auditors are in a flap that anybody who has access to create invoices using a onetime vendor, can enter in bank details (possibly there own).
    They would like to limit the access of the Bank Account details on the input screen so that only certain users can enter these details.
    Is there any way to disable some fields on this screen, or have some sort of authority check before this screen is displayed, so that only certain users would be able to input or change these fields?
    Thanks,
    Michael.

    Create authorization objects/groups. you may ask your basis for this as well.

  • Bank account details

    how do i change my bank account details for my direct debit for my sim only plan?

    Hi there jeni24
    Just need to ring Customer Care and they will change all your details.
    -Kyle

  • R12 Supplier Bank Account Update API error

    Hi All ,
    While updating the supplier bank accounts by using API (iby_ext_bankacct_pub.update_ext_bank_acct). i am getting below error.
    The record is locked by other users for modifications.
    Could you please help on this ...
    Thanks in Advance,
    Thanks,
    Lakshminarayana

    One of the reason of this error is incorrect object_version_number. In API iby_ext_bankacct_pub.update_ext_bank_acct there is a parameter p_ext_bank_acct_rec, in this record type one field is object_version_number. Pass the correct version number which is same as for the given bank account.
    Below is the query to find the correct object_version_number --
    SELECT object_version_number
    FROM IBY_EXT_BANK_ACCOUNTS
    WHERE ext_bank_account_id = <bank_account_id>;
    Thanks,
    PC

  • API to load Supplier Bank Account Information

    Hi all,
    Can you any one please let me know if there is any API to load Supplier Bank Account Information for existing suppliers.
    Thanks,
    Vinod.

    In Release 11i the answer is no - direct load to tables.
    In Release 12 the answer is yes, check out:
    IBY_EXT_BANKACCT_PUB.create_ext_bank
    IBY_EXT_BANKACCT_PUB.create_ext_bank_branch
    IBY_EXT_BANKACCT_PUB.create_ext_bank_acct
    IBY_DISBURSEMENT_SETUP_PUB.Create_External_Payee
    IBY_DISBURSEMENT_SETUP_PUB.Set_Payee_Instr_Assignment
    Regards,
    Gareth

  • API for end dating a Supplier Bank account- R12

    Hi
    I'm looking for a API to end date a supplier bank account.
    Could someone help me wiht this.
    THanks

    Hi;
    All APIs are listed in Oracle Integration Repository.First check below
    http://irep.oracle.com/index.html
    Please check below which could be helpful for your issue:
    How to set Bank Account Uses End Date to Specific Supplier Site [ID 726763.1]
    API User Notes - HTML Format [ID 236937.1]
    R12.0.[3-4] : Oracle Install Base Api / Open Interface Setup Test [ID 427566.1]
    Oracle Trading Community Architecture API User Notes, June 2003 [ID 241320.1]
    Technical Uses of Customer Interface and TCA-API [ID 269121.1]
    Pelase also check below:
    Api's in EBS
    Re: Api's in EBS
    http://sairamgoudmalla.blogspot.com/2009/05/script-to-find-oracle-apis-for-any.html
    API
    Fixed Asset API
    List of API
    Re: List of APIs
    Oracle Common Application Components API Reference Guide
    download.oracle.com/docs/cd/B25284_01/current/acrobat/jta115api.pdf
    List of APIs and open interface R12
    Re: List of APIs and open interface R12
    Regard
    Helios

  • Supplier Bank Account Load API

    Hi all,
    Can you any one please let me know if there is any API to load Supplier Bank Account Information for existing suppliers.
    Thanks,
    Vinod.

    You should probably ask this question in an E Business Suite forum.

  • My app market isn't reconising my bank account details, it say for assistence contact support please help

    my app market isn't reconising my bank account details when i try and purchase a app , it say for assistence contact support please help

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • HT201303 How do I change the bank account details as I have changed banks

    How do I change the bank account details for my iPad as I have changed banks?

    If you are doing it on your iPad then try tapping on your id in Settings > iTunes & App Store and selecting 'View Apple ID' on the popup and login to your account - on your account's page there should be a payments link.
    Or on your computer's iTunes you should be able to edit your payment info by going into the Store > View Account menu option and logging into your account, and again on your account's details page there should be a payment link. 

Maybe you are looking for

  • Net8 protocol error

    I'm currently upgrading from Weblogic 8.1 to Weblogic 9.1 on a Windows environment (Windows XP on my dev box) with an Oracle 8.1.6 database. During the upgrade, we switched from BEA's Oracle OCI driver ( weblogic.jdbc.oci.Driver ) in Weblogic 8.1 to

  • Finished Editing - What does everyone export to?

    Hey I have just been playing around with exporting to different formats when the edit had been completed. There are loads of formats available when you use the Quick Time Conversion - What does everyone here use?? Ofcourse for different applications

  • Home directory file loss unresolved

    I have made that apparently commonplace and disastrous error of trying to rename my home directory on the finder bar, and when I rebooted found that I had lost all documents and user settings. However, all the advice and suggestions on the topic I ha

  • What causes my images to be reduced in Kb size once they are uploaded?

    I'm not complaining (since it makes my page load faster) but most of my images are 10K and when I try to reduce them smaller they look blurry. But when I upload my 10K images (I use Godaddy) they turn into 1K size and look great!  How is that possibl

  • Airport Extereme 6.1: I can't open those ports I wanted to!

    Hi everybody! I would like to open some ports in my Airport Extreme 7.6.1.  (software 6.1). Those ports are for example EyeTV 2170 and VLC 5900. I have Airport utility and I have tried to change port settings at network section. I have changed at net