Currency Create Bank Account Transfer in CE R12.1.3

Hi,
I would like to ask about different currency when we tried to create Bank Account Transfer.
Can we transfer IDR currency to USD ?
Transfer date: 03 Oct 2012
Currency: USD
Transfer Amount: 1500
Bank Source: IDR
Bank Destination: USD
it supposed to be okay but when tried to validate, there was error:
"Please select a Source Bank Account currency that matches its ledger currency."
Kindly need help
Thanks
Findy

Hi,
I would like to ask about different currency when we tried to create Bank Account Transfer.
Can we transfer IDR currency to USD ?
Transfer date: 03 Oct 2012
Currency: USD
Transfer Amount: 1500
Bank Source: IDR
Bank Destination: USD
it supposed to be okay but when tried to validate, there was error:
"Please select a Source Bank Account currency that matches its ledger currency."
Kindly need help
Thanks
Findy

Similar Messages

  • Error when create bank account transfer

    Hi All,
    When I created bank account transfer, i got error message "oracle.jbo.RowValException: JBO-27012: Row validation method validate() failed for row with key oracle.jbo.Key[282 ] in PaymentTransactionsEO"
    Need some help
    Thanks
    FN

    Hi,
    Can you provide more info? Release, form where you are performing that transaction?
    Thanks,
    Javier

  • Bank account transfer not showing bank accounts

    hi gurus,
    "bank account transfer" screen in cash management is not showing bank accounts owned by other legal entities.
    i did setup UMX security for the Bank Account Transfer module for specific Legal Entities.
    here is what i am doing-
    i am using vision R12 > Cash Management, Vision Operations (USA) > using CE:UMX security, gave access for bank account transfer for Vision leasing legal entity.
    the bank account i am trying to access is owned by legal entity Vision leasing.
    any clue?
    regards,

    Thanks Linc, I'm very new to Mac's, so please excuse the dumb questions.  I've gotten as far as running bootcamp and partitioning the drive for OSX and Windows 7.  Have some software loaded, nothing that I can't reload.  Will the erase effect both partitions on the drive or just the OSX partiton?  I'm guessing the erase and reinstall from CD are straight forward, just follow the prompts? 
    Thanks again for the help

  • Account Number In Bank Account Transfer CM It Show For My User Only and Not

    Hi,
    Cash Management / Bank Account Transfers
    when make transfer From Bank Account Transfer and Enter Of All The Required Data
    And Search Bank Account Number It Show For My User Only And Not Show For Some Other Users
    With The Knowledge That The same responsibility For My User and All Users In Cash Resp.
    How to solve this problem ??
    Thanks,
    Mohamed Gamal
    Edited by: Mohamed Gamal on May 12, 2011 11:12 AM

    I bought MLB.tv premium through Apple TV however I was not provided with a user ID and password to be able to log in on to the computer to watch as I would if I bought directly from MLB.tv.  Is this a scam?  Anyone else have this issue.

  • INVALID_PARTY_CONTEXT while creating Bank accounts at supplier site level

    Hi All,
    I am trying to create a bank account at supplier site level using below code.
    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 => l_ExtBankAcct_rec,
    p_association_level => 'SS',
    p_supplier_site_id => l_vendor_site_id, --Vendor_site_id from ap_supplier_sites_all table
    p_party_site_id => l_party_site_id, --party_site_id from ap_supplier_sites_all table
    p_org_id => p_org_id, , --org_id fron which the program is run
    p_org_type => 'OPERATING_UNIT',
    x_acct_id => x_acct_id,
    x_return_status => l_return_status,
    x_msg_count => l_msg_count,
    x_msg_data => l_msg_data,
    x_response => x_response);
    when I run this code from concurrent program.
    x_return_status is NULL, x_msg_count is also NULL, X_msg_data is also NULL.
    Whereas in x_response i am getting x_response.Result_Code = INVALID_PARTY_CONTEXT
    Can you please help, why is it not able to create bank account, I have valid bank and branch for this.
    Thanks,
    Sachin

    Thanks for reply Hussain.
    I have checked all these notes, 2 our of these 2 are for AR API's.
    The first note says that it would given error if you try to create a supplier of type 'EMPLOYEE' and site is given other than 'HOME' or 'OFFICE', but I am creating supplier of type 'VENDOR' and 'EMPLOYEE'.
    This note has solution "Set supplier site = 'HOME' or 'OFFICE' type.".
    As we are not creating supplier of Type 'EMPLOYEE', i guess this solution does not hold good for us.
    Any other suggestions please?
    Thanks,
    Sachin

  • Creating bank account use with API

    Hi everyone, I'm trying to create internal bank accounts with the given oracle API's but I'm stuck at a point that has me tearing my hair out. It is at the point where I create a bank account use.
    I saw a reference for a metalink note 948993.1 but I am unable to view this in metalink for whatever reason. It says the document has been deleted or I do not have access to it. Very unsure why this is the case.
    My API portion for this is:
    -- first set bank account use record type
    v_acct_use_rec.bank_account_id := v_acct_id;
    v_acct_use_rec.primary_flag := 'Y';
    v_acct_use_rec.org_type := 'LE';
    v_acct_use_rec.org_id := v_org_id;
    --v_acct_use_rec.org_party_id := v_account_owner_party_id;
    v_acct_use_rec.legal_entity_id := v_account_owner_org_id;
    v_acct_use_rec.ap_use_enable_flag := 'Y';
    v_acct_use_rec.ar_use_enable_flag := 'Y';
    v_acct_use_rec.xtr_use_enable_flag := 'N';
    v_acct_use_rec.pay_use_enable_flag := 'N';
    v_acct_use_rec.authorized_flag := 'Y';
    v_acct_use_rec.bank_charges_ccid := v_bank_charges;
    v_acct_use_rec.asset_code_combination_id := v_cash_acct;
    v_acct_use_rec.cash_clearing_ccid := v_cash_clearing_acct;
    v_acct_use_rec.receipt_clearing_ccid := v_conf_recpt_acct;
    v_acct_use_rec.unapplied_ccid := v_unapp_acct;
    v_acct_use_rec.unidentified_ccid := v_unident_acct;
    v_acct_use_rec.on_account_ccid := v_on_acct;
    v_acct_use_rec.edisc_receivables_trx_id := v_earned_trx_id;
    v_acct_use_rec.unedisc_receivables_trx_id := v_unearned_trx_id;
    -- then run API
    CE_BANK_PUB.create_bank_acct_use
    p_init_msg_list => fnd_api.g_true,
    p_acct_use_rec => v_acct_use_rec,
    x_acct_use_id => v_acct_use_id,
    x_return_status => v_return_status,
    x_msg_count => v_msg_count,
    x_msg_data => v_msg_data
    But I keep getting this error:
    Select treasury account use only when the access organization is legal entity
    Even though I have explicitly stated that I do not want to use xtr.
    Any help will be most welcome.
    Many thanks

    Can you check and see if the following document helps:
    R12 - How to Create an Internal Bank Account Access to Payables, Receivables and Treasury? [ID 1163205.1]
    The doc is functional in nature, however it may be of use since the issue looks similar.
    Hope this helps.
    Thanks and Regards
    Manish Jain.

  • How to create On Account Credit Memo in R12.1.3

    Hello Experts / Dina,
    Oracle claims that there is new feature of creating credit memo On Account can be done by using Oracle Projects billing with R12.1.3 only.
    For the same they say that:-
    The Interface Invoices to Receivables process creates credit memo as On Account Credit Memo when the following conditions are satisfied:
    1> The Allow Over Application option is set to No in Oracle Receivables and the Create On Account Credit Memo option is enabled in Oracle Projects and
    2> There is no balance available to adjust on the invoice
    But I am not sure where to perform the setup mentioned on line 1 of setting up Create On Account Credit Memo option is enabled in Oracle Projects.
    Does anyone know about it ? Is it a profile option or setup on someother screen. Please help.
    Thanks
    Edited by: oracle_samba on Feb 14, 2013 6:16 AM

    Hi Dina,
    Any help on this?
    I found this info under RCD "ORACLE E-BUSINESS SUITE RELEASE CONTENT DOCUMENT Projects Releases 12.1 and 12.2 (inclusive of 12.0.2 – 12.0.7)"section 3.2.3.1. On Account Credit Memo Creation on page 6.
    Thanks
    :-)

  • CURRENCY VALUATION - BANK ACCOUNTS

    I wanted to know how you manage currency valuation with regards to daily reporting of Foreign Currency Bank Accounts in Local Currency
    I am on Version 4.6C and do valuations monthly so that we are able to value our Foreign Currency Bank Accounts at the prevailing exchange rates as at the end of the respective reporting months.
    When I look at the retail Banks, they manage various accounts for their Clients in Foreign Currency and am sure that whenever Clients call for their balances in Local Currency they are able to be read from the system at the rate prevailing as at the date of inquiry.
    Is it possible that currency valuations are done daily immediately after updating the dayu2019s exchange rate?
    Is it also possible that there exists a particular config set up that enables the translation in local currency without necessarily making the requisite valuation postings (unrealized gains/losses in currency translations)?

    For banks, translating daily is necessary as they need to give those numbers to customers.  For corporations, I don't see a need to valuate them daily as you don't need to report numbers daily.  Financial statements are prepared at least in monthly intervals, I guess; and you only need to valuate before you draw financial statements.  I have never come across a configuration that enables translation/valuation without necessarily making postings.  I don't think there is one!

  • Bank Account at Supplier Site Level in R12

    Hi,
    I have a requirement to create bank account at supplier site level. This is part of the conversion.
    I have been testing with the below code
    DECLARE
    l_extbank_rec iby_ext_bankacct_pub.extbankacct_rec_type;
    l_vendor_site_id NUMBER (10) := 704;
    l_party_site_id NUMBER (10) := 42458;
    p_org_id NUMBER (10) := 11665;
    l_account_id NUMBER (10);
    l_return_status VARCHAR2 (2000);
    l_msg_count NUMBER (5);
    l_msg_data VARCHAR2 (2000);
    l_response iby_fndcpt_common_pub.result_rec_type;
    BEGIN
    --l_extbank_rec.  bank_account_id   :=    ;
    l_extbank_rec.country_code := 'US';
    l_extbank_rec.branch_id := 284238;
    l_extbank_rec.bank_id := 284236;
    --l_extbank_rec.  acct_owner_party_id           :=    ;
    l_extbank_rec.bank_account_name := 'TEST_ACCT';
    l_extbank_rec.bank_account_num := 976431;
    l_extbank_rec.currency := 'USD';
    --l_extbank_rec.  iban                          :=    ;
    --l_extbank_rec.  check_digits                  :=    ;
    --l_extbank_rec.  multi_currency_allowed_flag   :=    ;
    --l_extbank_rec.  alternate_acct_name              :=    ;
    --l_extbank_rec.  short_acct_name               :=    ;
    l_extbank_rec.acct_type := 'Current';
    --l_extbank_rec.  acct_suffix                      :=    ;
    --l_extbank_rec.  description                      :=    ;
    --l_extbank_rec.  agency_location_code          :=    ;
    ----l_extbank_rec. foreign_payment_use_flag := ;
    --l_extbank_rec.  exchange_rate_agreement_num   :=    ;
    --l_extbank_rec.  exchange_rate_agreement_type  :=    ;
    --l_extbank_rec.  exchange_rate                    :=    ;
    --l_extbank_rec.  payment_factor_flag              :=    ;
    --l_extbank_rec.  status                        :=    ;
    -- l_extbank_rec.end_date := '27-AUG-2011';
    l_extbank_rec.start_date := SYSDATE;
    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 => l_extbank_rec,
    p_association_level => 'SS',
    p_supplier_site_id => l_vendor_site_id,
    p_party_site_id => l_party_site_id,
    p_org_id => p_org_id,
    p_org_type => 'OPERATING_UNIT',
    x_acct_id => l_account_id,
    x_return_status => l_return_status,
    x_msg_count => l_msg_count,
    x_msg_data => l_msg_data,
    x_response => l_response
    COMMIT;
    DBMS_OUTPUT.put_line ('x_return_status = ' || l_return_status);
    DBMS_OUTPUT.put_line ('x_msg_count = ' || l_msg_count);
    DBMS_OUTPUT.put_line ('x_msg_data = ' || l_msg_data);
    DBMS_OUTPUT.put_line ('x_acct_id = ' || l_account_id);
    DBMS_OUTPUT.put_line ('Error = ' || SQLERRM);
    END;
    ===========================
    Result:
    x_return_status =
    x_msg_count =
    x_msg_data =
    x_acct_id =741
    Error = ORA-0000: normal, successful completion
    ===========================
    Your response is much appreciated.
    Thanks,
    Srini

    Have you initialized the environment before calling the API?
    You can do this by
    fnd_global.apps_initialize(&user_id,&responsibility_id,&application_id>);
    mo_global.init('SQLAP'); -- Required for R12

  • Foreign currency Payment using foreign currency bank account

    Hi,
    We have the following requirement:
    Functional currency : GBP
    Bank Account :USD
    Need to make payments in CAD
    Since the bank account is not in functional currency we are unable to make that multi currency payment enabled. Users do not want to create a functional currency bank account.
    Now how to overcome this situation ?

    Hi, I am referring to paying foreign currency (ap payments) using non functional currency bank accounts. Are you referring to payment or receipts in foreign currency ?
    Please refer the in 11i ap guide
    1. pg 2-104
    "Dening Multiple Currency Bank Accounts
    A multiple currency bank account is an account that accepts payments in more than one currency.
    If you define a multiple currency bank account for payments, the currency of the bank account must be the same as your functional currency."
    2. Payment Formats pg 2-140
    " When you define a bank account, you can only allow payment of multiple currency invoices if the bank account currency is your functional currency."
    These 2 states that you can pay suppliers in foreign currency only if the bank acct currency through which you are paying is same as functional currency. But my bank account currency is different from functional currency.
    Since you say you are doing , I am quite interested to find out more.Can you please let me know your currency setups on the bank and payment format.
    Thanks

  • R12:Bank Account Access:Payables Option:Default Settlement Account CheckBox

    Hello,
    Please teach me "Default Settlement Account" check box of Account Access Payables Options.
    I think the following No.2 to be used in Treasury.
    How is the following No.1 used in Payables?
    N:Setup : Payment:Bank Accounts
    Update Account button
    1.
    Account Use
    Treasury = OFF
    Payables = ON
    Account Access
    Option icon of Organizations
    Payables Options
    "Default Settlement Account" check box
    2.
    Account Use
    Treasury = ON
    (Payables = ON)
    Account Access
    Option icon of Organizations
    Treasury Options
    "Default Settlement Account" check box
    Thanks,
    Minako.

    Hi Barcardi,
    the reason for proving the cash clearing and other account code combinations at Step 3 is to default the same for all the operating units that are getting created in Step 4 .....
    For a module specific modification, like payables and receivables the place to make the correction is at Step 4 .....
    When you create a bank afresh, the codes entered in the step 3 is automatically default to step 4, however when you make the modification to existing bank account ... step 3 values are not defaulted to step 4 .......
    To my knowledge the only reason we still have the values in sep 3 is for transactions that are getting captured at the cash management level, like Bank Account Transfer ......
    Regards,
    Ivruksha

  • Currency for GL account  related to foreign bank

    Hi
    I have a GL account which is "Bank account for foreign branch". Our company code currency is USD. The Bank account is in Euro.Can the currency for Bank account GL be set up in USD (the co code currency) ? I think it should be.But there is a similar account ( bank in germany ) has set with GL as Euro. I am not sure which is best practices , setting up bank account in Co Code currency or docuemnt currency ? Kindly guide me, it is very urgent.
    Thanks in advance
    Satya

    Hi
    GL accounts corresponding to Bank Accounts are generally maintained in the respective currency. In this case it is advisable to maintain it in EUR and not USD.
    This helps as below:
    1. GL balances are always visible in EUR and can be verified against bank statements.
    2. Period end FC gain/loss can be valuated and posted.
    SAP documentation also suggests that Bank accounts are maintained in respective currencies.
    Thanks
    Satya

  • Payment Template not appearing during Bank Account

    Hi,
    In Oracle R12 Cash Management, Payment Template is not appearing in the list of values of Bank Account Transfer Screen.
    I have already done the following setups:
    1. Set the Profile Option CE:Bank Account Transfre to "Cash Management"
    2. Create Transaction Subtype.
    3. Create Payment Template and selected source and destination Bank Accounts.
    When I go to create Transfers, the list of values is empty. Why?
    Kindly help.
    Regards

    Yep   When you pay someone it is never instant > paypal CREDIT that person for you (so you get your item more quickly) and then paypal take the wait for your funds to transfer to your paypal account from your bank account to pay them back. The funds can leave your bank account anytime from 2 hours - 3 days later. I paid someone 2 days ago via friends / family > they got the money but its not left my bank account....yet.    ************************************* I give up my time to help you so a thank you or kudos would be cool.
    Marking one of my replies as a solution would be appreciated if I sorted your problem.

  • Automatic Bank Account Reconciliation - FF67

    Hi experts,
    I am having the following issue in my ECC 6.0 environment:
    I'm doing manual bank reconciliation through tcode FF67, after entering all the payments and receipts i'll save the statement and then post the statement.
    Afterwards I go to tcode SM35 and run the batch input session in order to real postings take place, reconciling the payments and the receipts.
    However, when selecting the open items the system gets stuck, as it is always using Amount (WRBTR) as the single selection criterion, and I have two documents with the same amount. So, I also want to use Assignment (ZUONR) as a criteria. I tried to use algortihm 015 to solve this, but I wasn't successful.
    Has anyone came across something like this?
    Thanks in advance!
    Best regards,
    Joã

    Hi Mohammed
    In order to make bank account transfer automatically using bank statement, you need to ensure the following things:
    1. Prepare a physical cash pool and ensure that the bank initiated sweep option is set to yes. Set up the concentration and subaccounts within whihc the transfer need to be made.
    2. Upload/Enter the bank statement for the respective banks. The line type should be sweep in or sweep out as the case may be. Enusre that the corresponding bank account number is mentioned in the Agent bank account field. For example - You transfer $100 from account 100 to account 101. In the bank statement for account 100, the line type should be sweep out and in the Agent bank account field, enter the bank account number 101. Similarly for the bank statement of account 101, the line type should be sweep in and in the Agent bank account field, enter the bank account number 100.
    Once this is done, run the program Sweep Transaction Generation program. This will create the cash flows automatically.
    Hope this helps
    Vinit

  • House Bank Account number is not allowing to update

    Hello Expert,
    I am using SBO 8.8 PL 15 and i an trying to update House bank account number but system is showing message as below
    [House Bank Accounts - Acct No.] , 'Field cannot be updated (ODBC -1029)'  [Message 131-183]
    I have not attached House bank in company details-->Basic Initialization and BP are also not mapped with any House Bank in Payment System Tab.
    Is there any other form where we require to unlink House bank
    I want to change account number for one of the bank branch.
    Regards,
    Bhavank

    Hi Bhavank,
    Check you have enter any Transaction create For this Bank
    Go to Administration / Setup / House Bank Accounts / Check G/L Account / Click on orange arrow / here Transaction are appear
    If Transaction are to appear so not any kind of possibility to change Bank Account Number.
    For that you have to nulify the transaction then you can do it. but this is not advisable to nulify transaction.
    Otherwise you have to create new Account & Transfer Balance OLD Account to NEW Account.
    Thanks,
    Srujal Patel
    Edited by: Srujal Patel 77 on Jun 29, 2011 6:27 AM

Maybe you are looking for

  • Why can't my mouse check and uncheck podcasts in iTunes 7.0.1.8?

    For some crazy reason I no longer can check or uncheck podcasts with my mouse. I have to use the right-click menu to do this now. Has something changed with iTunes? This is weird. Regards, Chris Intel Windows XP Pro SP 2, Quadro Fx 1000

  • Progress bar - Item renderer

    Hi all, I have a item renderer for a list control. Each item contain progress bar, which is static, initialized with data from DB. For example: Item #1 Usage: 74% Item #2 Usage: 32% etc. This is how it looks like: <mx:Script> <![CDATA[ private functi

  • C7-00 EMail Access

    Hi, I have been using C7 since Oct. I had my Gmail n Yahoo Account configured, up n running. Recently I figured out that the the mail service isn't working. I tried almost every thing to resolve...but of no use. Any pointers in this regard are welcom

  • Alerting Users that they have timed out

    Some of our faculty start to work on a project and then get called away for a conversation. When they return they continue to edit a document. When they go to save it, they get a message that they are either timed out or do not have privileges to edi

  • How to mask SSN field?

    Hi, Currently, the SSN field on the contract management screens (FPP1, FPP2 and FPP3) are displayed as 123456789. But, once the user saves the contract details and again views it using FPP2 or FPP3, our client wants the SSN field to appear as XXX-XX-