Creating Supplier Bank Accounts and assigning to Supplier.

Hi Team,
Step 1: I have created Suppliers,Sites and contacts.
Step 2: I have created one Supplier Bank and one Supplier Bank Branch.
In HZ_PARTIES I am able to see 3 records outof which one corresponds to Bank record and the other branch record and the other one is the relationship one.
Step 3 : For Account creation and assigning to Supplier level I am using the following API iby_ext_bankacct_pub.create_ext_bank_acct and passing these values,
p_in_acct_rec.bank_id := 62462; (party_id from hz_parties)
p_in_acct_rec.branch_id := 62464; (partyd_id from hz_parties)
p_in_acct_rec.country_code := 'DE';
p_in_acct_rec.bank_account_name := 'AKU BÜROMÖBELMNTAGE';
p_in_acct_rec.bank_account_num := 8707629220;
p_in_acct_rec.acct_owner_party_id := 23267; (party_id from ap_suppliers)
p_in_acct_rec.currency := 'GER';
p_in_acct_rec.object_version_number := '1.0';
p_in_acct_rec.start_date := sysdate;
p_in_acct_rec.foreign_payment_use_flag := 'Y';
p_in_acct_rec.payment_factor_flag := 'N';
iby_ext_bankacct_pub.create_ext_bank_acct
p_api_version => 1.0,
p_init_msg_list => fnd_api.g_true,
p_ext_bank_acct_rec => p_in_acct_rec,
p_association_level => 'S',
p_supplier_site_id => 1376, (getting from ap_suppliers)
p_party_site_id => 16202,
p_org_id => 304,
p_org_type => 'OPERATING_UNIT',
x_acct_id => l_account_id,
x_return_status => v_return_status,
x_msg_count => v_msg_count,
x_msg_data => v_msg_data,
x_response => x_result_rec_type
I am passing the above values to the API.
API is running succesfully.
I am able to check account details in the following table IBY_EXT_BANK_ACCOUNTS
After running the above API records are getting populated in these 3 tables IBY_EXT_BANK_ACCOUNTS, iby_account_owners, IBY_PMT_INSTR_USES_ALL
I am using the following query to cross verify whether the account is created and assigned to Supplier or not,
select s.vendor_name, ss.vendor_site_code,
eb.bank_name, ebb.bank_branch_name, ebb.branch_number,
eba.BANK_ACCOUNT_NUM, eba.BANK_ACCOUNT_NAME
from ap.ap_suppliers s, ap.ap_supplier_sites_all ss,
apps.iby_ext_bank_accounts eba,
apps.iby_account_owners ao, apps.iby_ext_banks_v eb, apps.iby_ext_bank_branches_v ebb
where s.vendor_id = ss.vendor_id
and ao.account_owner_party_id = s.party_id
and eba.ext_bank_account_id = ao.ext_bank_account_id
and eb.bank_party_id = ebb.bank_party_id
and eba.branch_id = ebb.branch_party_id
and eba.bank_id = eb.bank_party_id;
I am able to see the the record after running the above query.
I want the account to be attached to the Supplier level.
If I go to Supplier screen --> and if go to Bank details, I am unable to see the bank account attached to this supplier.

Hi,
Did you solved the issue? I have the same task and it works for me. Check if you specify the supplier level in the bank details. Once you specify the association level equal to 'S' you have to choose from the list item - "Supplier level". Here is my code which is same as yours i think...:
set serveroutput on size 1000000;
DECLARE
l_bank_acct_rec apps.iby_ext_bankacct_pub.extbankacct_rec_type;
out_mesg apps.iby_fndcpt_common_pub.result_rec_type;
L_ACCT NUMBER;
l_assign apps.iby_fndcpt_setup_pub.pmtinstrassignment_tbl_type;
l_payee_rec apps.iby_disbursement_setup_pub.payeecontext_rec_type;
l_return_status VARCHAR2 (30);
l_msg_count NUMBER;
l_msg_data VARCHAR2 (3000);
l_msg_dummy VARCHAR2 (3000);
l_output VARCHAR2 (3000);
l_bank_id NUMBER;
l_branch_id NUMBER;
l_bank VARCHAR2 (1000);
l_acct_owner_party_id NUMBER;
l_supplier_site_id NUMBER;
l_party_site_id NUMBER;
--exec_bank_acct EXCEPTION;
l_msg_index NUMBER := 0;
V_RETURN_STATUS varchar2(20);
V_MSG_COUNT number;
v_msg_data varchar2(500);
BEGIN
FND_GLOBAL.APPS_INITIALIZE(1112, 50639, 200);
l_bank_acct_rec.bank_id := 5087; --(party_id from hz_parties)
l_bank_acct_rec.branch_id := 5087; --(partyd_id from hz_parties)
l_bank_acct_rec.country_code := 'BG';
l_bank_acct_rec.bank_account_name := '45623123';
l_bank_acct_rec.bank_account_num := 123145124123;
l_bank_acct_rec.acct_owner_party_id := 183732;-- (party_id from ap_suppliers)
l_bank_acct_rec.currency := 'BGN';
l_bank_acct_rec.object_version_number := '1.0';
l_bank_acct_rec.start_date := sysdate;
--l_bank_acct_rec.foreign_payment_use_flag := 'Y';
--l_bank_acct_rec.payment_factor_flag := 'N';
apps.iby_ext_bankacct_pub.create_ext_bank_acct
(p_api_version => 1.0,
p_init_msg_list => 'F',
p_ext_bank_acct_rec => l_bank_acct_rec,
p_association_level => 'S',
p_supplier_site_id => 3020,
p_party_site_id => 43594,
p_org_id => 81,
p_org_type => 'OPERATING_UNIT',
x_acct_id => l_acct,
x_return_status => l_return_status,
x_msg_count => l_msg_count,
x_msg_data => l_msg_data,
x_response => out_mesg
COMMIT;
dbms_output.put_line (l_return_status);
IF l_return_status IN ('E') THEN
dbms_output.put_line (l_msg_count);
FOR i IN 1 .. l_msg_count
LOOP
apps.fnd_msg_pub.get( i, apps.fnd_api.g_false, l_msg_data, l_msg_index );
l_msg_data := l_msg_data || 'Bank Account API Error ';
DBMS_OUTPUT.PUT_LINE( 'Error :- '||l_msg_data);
END LOOP;
dbms_output.put_line (l_msg_data);
end if;
end;
/EBS Version: 12.1.3
DB: 11.1.0.7.0
BR,
Bahchevanov.

Similar Messages

  • HT201303 Whose butt will be kicked for such a ignorant decision about the region and card usage? Apple will now dictate where i have to live, and where i need to creat a bank account and ask for card? This is rediculus!

    Where is the benefit and what kind of another virtual measure it gives us?

    I have absolutely no idea what it is you're on about. If you have a question or issue that you'd like us, your fellow users and the only people who participate here, to help you with, please calm down and post your issue in complete detail so we have some idea as to what to suggest. If you just want to rant, try Apple's feedback pages:
    http://www.apple.com/feedback

  • API for AR Bank, Account and Branch creation

    Hi,
    Please could you provide me the name of the API which creates AR Bank, Account and Branch creation.
    Thanks,
    Genoo

    All APIs are listed in Oracle Integration Repository
    http://irep.oracle.com/index.html
    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

  • Will Oracle R12 populate employee bank account and email info to Supplier?

    When create employee type supplier from iExpense, will Oracle populate employee bank account and email info from HRMS to Supplier? Or user need set up this in Supplier screen seperately.

    It will not be created automatically. The user will have to manually create the bank accounts in the supplier again.

  • I'm an American living on a timed (though long-term) assignment in Ireland. I have both American and Irish bank accounts and addresses. I have two Qs. 1. Can I use the US Adobe site when in Ireland? Or will my physical location prevent me from doing so? 2

    I'm an American living on a timed (though long-term) assignment in Ireland. I have both American and Irish bank accounts and addresses. I have two Qs. 1. Can I use the US Adobe site when in Ireland? Or will my physical location prevent me from doing so? 2. I am working for a not-for-profit organization. Is there a special pricing plan for non-profits, similar to the plans for students, small business, etc? Thanks for whatever help you can give me. (P.S. As a potential customer and past user of Adobe products for 15  years, I find it INCREDIBLY FRUSTRATING that I cannot speak with any Adobe representative, but am continually re-routed instead to a public forum to get what I hope will be accurate information. Not good, Adobe. Your products are amazing. Your customer service leaves a lot to be desired. I don't mean that with disrespect, but as honest feedback.)

    Hi bookchic
    Thanks for your feedback.
    Non-profit pricing is available to eligible institutions via the VIP program which is sold by resellers - see Eligibility guide
    For details of resellers please check here: Adobe Platinum Partners – Value Incentive Plan
    If you wish to purchase an individual plan via Adobe.com the country of your Adobe ID will determine which site you order from.
    Kind regards
    Bev

  • Create a bank account

    Hi,
    Can any body telll me how to go about this..
    The accounting department needs to create a bank account in the company code XXX  in Dollars
    The customers incoming payments and the  vendors outgoing payments should be posted to this account
    Thanks
    SM

    Create a GL account (balance sheet account) in company code XXX using T Code FS00.  Specify the account currency as USD, check line item display, do not check open item management.  Now go to T Code FBZP and click on 'House banks' button.  Enter company code XXX and create a new house bank (if that bank is not already created in company code XXX as a house bank).  Note that you should already have bank master (check using T Code FI03) for that bank, so you can create it as a house bank in a company code.  Highlight the housebank and double-click on bank accounts (in T Code FBZP).  Click on New Entries and create a bank account.  Specify the GL account you have created for that bank account.  Now, go back to FBZP initial screen and click on 'Bank determination' button.  Create appropriate entries in 'Ranking Order' and 'Bank Accounts' subdialogs.

  • I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work. Help?

    I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work.
    ^^ that's the main problem. Here's the full history.
    I bought a new 13" i5 MBP, early 2011 edition. I had an old white Macbook 2.14 ghz core2duo on Snow Leopard. I attempted to port over my time machine backup, but encountered problems in that my User was inaccessible from the new computer after the import finished, and I had to go in and change the root password, etc, and for some reason or another, I couldn't install any programs at all from that administrator's account. By "couldn't" I mean I could install them, but upon installation they would never boot. So, I took it to the apple store and did a clean install from the most up to date Lion OSX. Then, I created a brand new admin account, instead of trying to import the old one, and things seemed great. Then, I just imported my old files from the TM backup, but not any system settings, permissions, or user data. Just my Docs, pics, vids, apps, and itunes stuff.
    Here's where things get weird again. I imported this stuff under the name "old", but all of these folders have a red negative sign on them, marking them as restricted. So, from my main admin account, I cannot even peruse these folders. Since I didn't import user data, I can't sign in to the "old" account to change permissions. I already tried to change the permissions from system preferences, but that didn't change anything. And now, for whatever reason, of all the apps that were imported then, MS Office is the only set of apps that does not work. When I click on it, it just says there was a problem and asks if I'd like to send a report to apple. I tried reinstalling it to no avail. I'm an English student, so i really need access to Word. Can anyone help? The Apple store is a major detour for me and would like to fix this issue myself.

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • I created an iCloud account and also had to get more space after I have done the purchase, I am unable to backup my phone! I have a stable wifi connection at home and all I see for hours and hours is "Backing Up .. Estimating time remaining"!!!!! Plz help

    I created an iCloud account and also had to get more space so after I have made the purchase, I am unable to backup my phone! I have a stable wifi connection at home and all I see for hours and hours is "Backing Up .. Estimating time remaining"!!!!! Plz help I'm unable to make the backup as I need to transfer all my data on my new iPhone 5S

    This may be caused by a corrupt existing backup that needs to be deleted, or by data on your device that is causing the backup to fail.  To troubleshoot these, try deleting your last iCloud backup (if you have one) by turning off iCloud Backup in Settings>iCloud>Storage & Backup, then tap Manage Storage, tap your device under Backups, then tap Delete Backup.  Then go back and turn iCloud Backup back on and try backing up again.
    If it still won't back up, you may have an app or something in your camera roll that is causing the backup to fail.  To locate which one, go to Settings>iCloud>Storage & Backup>Manage Storage, tap the name of your device under Backups, under Backup Options tap Show All Apps, then turn them all to Off (including camera roll) and try backing up again.  If the backup is successful, then the camera roll and/or one of your apps is causing the backup to fail and you'll have to located by process of elimination. Turn the camera roll On and try backing up again.  If it succeeds, turn some of your apps to On and try backing up again.  If it succeeds again, turn some more apps to On then try again; repeat this process until it fails.  Eventually you'll be able to locate the problem app and exclude it from your backup.
    In the meantime you can back up your phone to your computer by connect it, opening iTunes and going to File>Devices>Back Up.  Also be sure to transfer your purchases (File>Devices>Transfer Purchases).  Then set up your new phone and when given the option, choose Restore from iTunes Backup and follow the prompts to restore this backup to your new phone.  This will be much faster than using iCloud anyway.

  • How do I move all my files from one User Profile (account) into another? I needed to create a new account and want all of my files accessible in the new one.

    How do I move all my files from one User Profile (account) into another?
    I needed to create a new account and want all of my files accessible in the new one.

    ok, what you're learning right now is 101 unix, which is good. Unix is a good thing
    now: the way unix works, and macos (which uses unix underneath) the files and folders work like a hierarchy.
    the start of that tree is /
    so, if you were to do:
    cd /
    (cd means change directory)
    it will bring you at the highest branch of the file system.
    cd /Users
    will bring you to where all the users are.
    to see whats in /Users you can use your friend ls command
    ls means list files/directories
    so:
    cd /Users
    ls -la
    (the -la here means show all (even hidden) and long format (very verbose))  this flag is very optional.
    you will see
    fred
    user2
    for example.
    if you want to see the desktop of user2 you would change directory to it then list the files.
    for example:
    cd /Users/user2/Desktop
    Note that the files and directory are case sensitive, so, desktop is NOT the same as Desktop, or DESKTOP
    ls -la
    you should then be able to see everything in users2 desktop
    you could have done as well the same thing in smaller steps, for example:
    cd /
    cd Users
    cd user2
    cd Desktop
    this is the equivalent of cd /Users/user2/Desktop
    So, for your file, i don't know where it was, but know that if you log in as user2, it will directly put you in
    /Users/user2
    which most likely the file you had created from the other user was in /Users/user1
    if you copied all the files from /Users/original_user to /Users/secondUser
    most likely yes, all your mail, bookmarks etc would be copied over.
    so in your case.
    sudo chown -R seconduser:staff /Users/secondUser
    should work
    Remember that if you start a path with the character /  it means start from the root of the file system, at the highest top you can ever get.
    so
    cd /Users/fred
    is not the same as
    cd Users/fred
    unless you were in / already
    i know it may be confusing at first but it's actually very logical if you play with it.
    to simplify, think of it that / means C:\  on windows
    you can't go any higher than C:\  (in a way)
    if you're unsure which directory you're currently in, you can always type:
    pwd
    it will tell you where you are.
    for example:
    cd /
    pwd
    this shows  /
    cd Users
    pwd
    this now shows /Users
    cd /System/Library
    pwd will show /System/Library
    cd /
    cd /Users
    cd fred
    cd Library
    pwd will show /Users/fred/Library
    unix can look very scary but it's actually vital and very necessary to do tasks sometimes that would take for ever to do via the windows. This is good learning.
    so for the myfile you had created, i can't tell you where it is, at the time you created, if you can do a pwd command you'll know the path,
    ls -la  (this shows all the files where you are)
    if you see myfile in the list
    do a pwd
    whatever is return, the real location of the file would be:
    whatever pwd returned / myfile
    I hope that makes sense.

  • How can I find the user that created a user account and the user who last updated the account

    How can I find out who created a user account and who last updated the account. I think that this is the same information that is displayed in the description field on the General tab.
    I am using ADO commands and vbscript
    ug3j

    I should point out that there are two attributes of all AD objects that can help you track down the correct information in the system logs. These are the whenCreated and whenChanged attributes. This will tell when the object was created and when it was last
    modified, which should help when you search the logs. Also, while whenCreated is replicated to all DC's, so they will all have the exact same creation time, the whenChanged attribute is technically not replicated. The date/time on each DC reflects when
    the last modification was replicated to that DC. The values will differ slightly on each DC, reflecting how long it took for the change to replicate.
    Richard Mueller - MVP Directory Services

  • I have purchsed gem in clash of clan through my credit card but i didnt recieve the gems..it has also reflected in my bank account and my itunes purchase history...how can i get them back??who should i complain to??? plz help....

    i have purchsed gem in clash of clan through my credit card but i didnt recieve the gems..it has also reflected in my bank account and my itunes purchase history...how can i get them back??who should i complain to??? plz help....

    You need to talk to clash of clans first. The game should have a support link.
    If they can't/won't help you then you turn to iTunes support.
    There seem to be a lot of issues with in app purchases in this game because not a day goes by that someone doesn't post a thread asking something similar.

  • Can I create a new account and keep all of my purchases and downloads?

    Can I create a new account and keep all of my old content? Recently got divorced and share the itunes account with my ex. I want a new account but do not want to lose all of my old content. Is this possible?

    Kmiller, 
    Get a copy of the entire iTunes library and copy it to the computer that you will be using from now on.
    iTunes Plus songs will still be playable, as will any "normal" MP3s that were purchased from Amazon or ripped from CD. 
    Any "protected" content from the iTunes Store, such as movies, shows, or pre-2009 songs, will not be playable.  If you need to replace any such items with playable copies, a cost will be incurred.  Make sure to account for this in the property settlement.

  • How do I create a new account and get stuff from the old account to the new account

    How do I create a new account and get stuff from the old account to the new account

    There are instructions on this page for creating a new account : Set up an Apple ID in iTunes
    Or if you don't want to give credit card details : Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method
    But you won't be able to transfer purchases from your old account to it, all content that you download from the store will remain tied to the account that downloaded it.

  • Got a new mac today, I created my iCloud account (and therfore my Apple ID?) I tried to set up my iTunes and download updates, and it says i need to review my account, then I had to edit my Apple ID details, but said my email address was invalid???

    Got a new mac today, I created my iCloud account (and therfore my Apple ID?) I tried to set up my iTunes and download updates, and it says i need to review my account, then I had to edit my Apple ID details, but said my email address was invalid???

    From the information that you have provided, it sounds like your Apple ID has been disabled.  You can read this to see how you can troubleshoot that issue.
    Apple ID is Disabled - Apple Club - Google Sites
    You can try signing out of your ID on the iPad and sign in with his ID and see if that works.
    Settings>iTunes and App Stores>Apple ID. Tap your ID and sign out. Then sign in with your husband's newly created ID.

  • How to create a new account and copy all settings?

    I think my main user account is corrupted. So I want to create a new account and copy all of my settings, files etc..and more than likely piecemeal just incase my settings are what is corrupted. That way I can isolate the problem.
    I don't plan to delete the main account until satisfied and I also have my Time Machine backup plus my SuperDuper backup.
    I can/should be able to figure out how to create the new account, but I am very unclear on the best/easiest approach to copy in my iTunes files and settings, applications(is this even an issue), address book, email, etc? I should be able to find most everything underneath my home account folders but what else am I missing here? I don't want to find out the hard way.
    Please share some advice or perhaps a link/FAQ on how to approach.
    Thanks in advance.
    --Mickey

    use this [link|http://discussions.apple.com/message.jspa?messageID=6185507].

Maybe you are looking for