New Bank account

Hi,
I have created a new bank account in Cash management.Now I want to make the balance of the bank to say 10000.How to record cash deposit to the bank account?
Regards

Hello.
I'm not sure if i 100% understood your issue. If it is a brand new bank account you have to associate it with a Payment Method (/Setup/Receipts/Receipt Classes). Then you can record a receipt using that payment method.
Octavio

Similar Messages

  • How re-assign old bank statements to a new bank account?

    Hi Folks,
    Actually, we have a bank account and use to enter bank statements for the same account for reconciliation purpose. But later we found some mistake in that bank account "GL accounts", so we tried to update the problematic GL account, but Oracle is not allowed us to do so. Hence, we have entered end-date for the same bank account and created one more new account. Now, how can we re-assign all those old bank statements to the new bank account? Can any expert help us in this issue?
    Thanks in advance.

    If you have reached the limit of 5 authorized PCs, you can always use the deauthorize option that is available for one time each year.  See this article for more information.
    iTunes Store: About authorization and deauthorization
    B-rock

  • New Bank Account- config for Manual Bank Statement

    Hi,
    Currently we are using Manual Bank Statement (FF67),and client   have opened a new bank account and new GLs have been created, I need to configure for this new bank account, kindly let me know where to maintain the GL accounts for Incoming and Outgoing, whereas   in new Bank account creation (FI12) we maintain the GL account for the Main account.
    Thanks,
    Suresh

    Hi Suresh,
    You can maintain as many accounts under a house bank as you want. You just have to maintain them with different account ID.
    Go to T-Code FBZP -> Click on House Banks -> Select your house bank under which you want to create a new account. -> Double click on Bank Account on the left pane -> You will see list of accounts maintained under the bank -> Click on New Entries to create a new account under the existing house bank. -> Mention a different account ID (different from existing ones) for your new account and also mention other details like Bank account number, GL Account, Currency etc. -> Save it.
    Press Back button and you will see the new account ID added to the list -> Now go to Bank determination option on the initial screen and configure to use the new account as per your requirement.
    Hope this helps.
    Regards,
    Abhinav Sethi

  • Add new bank account in master data client with idoc DEBMAS.

    Hi friends,
    I have an issue.
    I am trying to add new bank account in master data client with idoc DEBMAS.
    But when I submit, then just overwrite the bank data but not add.
    I try playing with MSGFN code with value '009' or '004' but nothing done.
    Someone has met this issue ?
    Thanks for your answers.

    Thanks,
    But what do you mean ? where can I find this path , in img ?
    Fields->Set Qualified Update ->Append Option
    I think we have to use another idoc :
    BUPA_C_BANKDETAIL_ADD01 SAP BP,  BAPI: Add Bank Details
    I'll try...

  • IS-H Error when entening a new bank account in Patient Admission

    Hello,
    We have the following IS-H Error when entering a new bank account in PatientAdmission
    Bank control key and bank key do not match.
    Message number: AR142
    We do not have this problem when entering this bank account in Change Customer.
    Thanks in advance
    Best Regards

    Database Vendor Code: 1005 is being passed from the database client through the report engine - unmodified. E.g.; look for the error in your database documentation.
    See:
    Failed to retrieve data from the database. Details: [Database Vendor Code: <vendor code number>].
    Failed to open the connection. Details: [Database Vendor Code: <vendor code number>].
    Compare the version of the client you are using and "other people" are using.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • HT4061 How do I change my bank account details?

    I have had reason to open a new bank account and need to close the one I have already given.
    Could anyone tell me how this is done ~ either on my laptop or my iPhone? Thanks

    Changing Account Information
    http://support.apple.com/kb/HT1918

  • Bank Account Problem

    I'm sorry I keep asking question but my company just switched to the BlueJ program and I'm not quite fond of it yet. My Issue is that I need to add the change program from this:
        Initial balance? 2000
        Interest rate? 4
        Number of periods? 8
                  Initial       End
        Period    Balance     Balance
           1      2000.00     2080.00
           2      2080.00     2163.20
           3      2163.20     2249.73
           4      2249.73     2339.72
           5      2339.72     2433.31
           6      2433.31     2530.64
           7      2530.64     2631.87
           8      2631.87     2737.14
    to this:
    Initial deposit? 5000
        Interest rate? 6
        Annual payment? 1000
        Number of years? 10
                 Initial       End
        Year     Balance     Balance
          1      5000.00     6300.00
          2      6300.00     7678.00
          3      7678.00     9138.68
          4      9138.68    10687.00
          5     10687.00    12328.22
          6     12328.22    14067.91
          7     14067.91    15911.98
          8     15911.98    17866.70
          9     17866.70    19938.70
         10     19938.70    22135.02
    and this is what I have so far:
    public class Banking {
            public static void main(String[] args) {
                Scanner kbd = new Scanner(System.in);
                double bal, irate;
                int periods, count;
                Account acct;
                System.out.printf("Initial balance? ");
                bal = kbd.nextDouble();
                System.out.printf("Interest rate? ");
                irate = kbd.nextDouble();
                System.out.printf("Number of periods? ");
                periods = kbd.nextInt();
                acct = new Account(bal, irate);
                count = 1;
                System.out.printf("%n");
                System.out.printf("          Initial       End%n");
                System.out.printf("Period    Balance     Balance%n");
                while (count <= periods) {
                    bal = acct.balance();
                    System.out.printf("%4d %12.2f", count, bal);
                    bal = acct.interest();
                    System.out.printf("%12.2f%n", bal);
                    count = count + 1;
        //                        Account.java                        *
        //  An object of this class represents a bank account.  The   *
        //  constructor creates an account with a specified initial   *
        //  balance and interest rate.  Methods are provided to       *
        //  process deposits, withdrawals, and the crediting of       *
        /// interest.  The balance is stored internally in cents      *
        //  to reduce rounding error.                                 *
        public class Account {
            private double centbal;    // The current balance in cents.
            private double irate;      // The interest rate per period.
            // Create a new bank account with the specified balance
            // and interest rate.
            public Account(double bal, double ir) {
                // Store the balance rounded to the nearest cent.
                centbal = Math.rint(bal * 100.0);
                // Convert percentage interest rate to fraction.
                irate = ir / 100.0;
            // Process a deposit.  Return the new balance.
            public double deposit(double amt) {
                double centamt = Math.rint(100.0 * amt);
                centbal = centbal + centamt;
                return centbal / 100.0;
            // Process a withdrawal.  Return the new balance.
            public double withdraw(double amt) {
                double centamt = Math.rint(100.0 * amt);
                if (centamt > centbal) {
                    System.out.printf("Insufficient funds.%n");
                } else {
                    centbal = centbal - centamt;
                return centbal / 100.0;
            // Credit interest to the account.  Return the new balance.
            public double interest() {
                double centint = Math.rint(centbal * irate);
                centbal = centbal + centint;
                return centbal / 100.0;
            // Return the current balance.
            public double balance() {
                return centbal / 100.0;

    What has this got to do with SAP Java Programming?!
    Please stop asking homework questions...

  • New Bank A/C Creation Error

    Hi everyone,
    While creating a new bank Account i am getting following error....
    "Unable to verify the value entered into the OrgName field. Please select the List of Values icon for this field to select a valid value."
    this error actually arrises when i add operating unit in the organization access page of bank account creation form....
    I have already created some banks , bank brenches and bank accounts but i didnt face this error before....
    we are using a 12.1.1 version....
    waiting for some early reply....
    Thanks in advance....
    Salman Ahmed.

    thanks for the reply , yes i have selected my operating unit in organization access form from its list of values , value shown in the LOV but after selecting it when i wanted to finally apply the account , at that time at gives this error....

  • Payment program F110 - select wrong Bank Account ID

    Hi,
    I have created a new bank account for an existing House bank (in trans. fi12)
    When we run the payment program F110, the wrong bank account is mentioned in the DME file.
    It shows the first one on the list and not the last one.
    How can I create a DME file with the new bank account?
    Thank you for your feedback.
    Kind regards,
    Linda

    Hi Eric,
    When I go in transaction FBZP, and drill down to Bank accounts, I only find the first bank account ID (which is the wrong one).
    I assume that if I add the new one, it will work?
    Kind regards,
    Linda

  • Payment program and bank accounts

    Hello,
    As a part of new implementation, i am creating new bank accounts and Bank GL accounts.
    I would like to get the payment run functionality working as well.
    what other information should i get from the customer and What other steps do i need to do?
    Thanks

    Hi,
    For APP Configuration you need to get below information from your client:
    1 - Bank Clearign & Payment GL Accounts
    2 - House Bank Code & Discription
    3 - Bank Account ID & Discription with Branch Address
    4 - How many Currencies allowed to pay
    5 - IBAN no (Transfer amount to other countries)
    6 - Bank Account No
    7 -  Confirm client would like to use IDoc functionality ( if clinet required IDoc, then configure WE20 - partner profile & assign payment method in house bank master)
    8 - Advances payment through APP / not
    9 - APP using outgong / incomming or both (if both crate diffrent payment methods)
    10 - Confirm Payment through CHECK / Bank Transfer or any other method.
    11 - Confirm Ranking orders Etc.............
    Regards
    Viswa

  • Creation of  customer  bank account in 11i

    Hi all,
    please help any one.
    I am new to the oracle istore. And i want to know the customer credit card updation process.
    I have to update the credit card information using the process_order API means , it will update exiting customer bank account or it creates new bank account for order.
    Thanks
    prabu

    Duplicate post -- Customer bank account creation API

  • Change Bank Account on Printed Checks via F110

    Hello Gurus-
    I have a requirement to change the account number on the printed checks which is done by the House Bank configuration.  I was wondering if there was anything else I should consider or keep in mind when making changes to accounts numbers on printed checks?  Should there be any changes to check lots for example?
    Thanks!

    Option 1.
    Simple solution would be.
    if you are not going to use old bank account and want to use old cash gl account for new bank account for checks, you chage old bank account to this account to new account.Then you are all set. Dont have to create any check lots and no other config. changes.
    This had impact in accounting while reconciling checks(check clearing) that created with old account if you change the GL account also while changing the bank cash gl account if you change cash gl as well.
    You dont have a problem if you dont change cash gl account.
    Option 2.
    You have to create a new account ID in the same house bank, use this new account id in Bank account determination(here change to new account id from old account ID), avalible amounts and create check lot for the new account ID.
    Option 3.
    If you dont like to messup with the existing house bank, you can have a new house bank and account, in this case you have to create ranking orders, bank determination, avalible amounts and create check lot for the new house bank and account id.
    * Make sure to take out the old house bank and account id from bank account determination for check payments. Otherwise if any invoice created for the old house bank will get paid with the automated payment run.
    all can be done in the transactions - FBZP and FCHI

  • Bank account set-up

    Hi I have been tasked with setting up a new bank account for our company to seperate certain income from our standard reciepting account.
    this income will be received in to SAP through our income management system and will posted through our abap program (effectivly it posts a journal).
    Now I need to make sure that this new bank account is taken in to account in our bakrec and is under proper control. The company that will be posted to is already posted to by another bank account. Does this cause any problems?
    Does a "company" hold any details of bank accounts.
    Are there any documents relating to company setup available at all?
    Many Thanks
    Moderator: The thread title is changed

    If the bank account is not going to be imported in to SAP directly, should the bank account still be setup in SAP?
    Ultimately, the transactions coming in on the bank statement will end up in SAP through the ABAP import, but the bank account will not be loaded in to SAP through its own transactions.
    I guess what i am really asking, is in terms of bank-rec am I going to cause problems putting transactions from two different bank accounts in to one company in our accounts.
    Apologies for lack of clarity!!
    Many thanks

  • Customer Bank Accounts Interface/API

    Hello guys
    I wonder if you can help me please. I've defined a new bank account in AR and I want to load customers under my new bank account. Is there an Interface or API to programmatically do this? If so, please tell me what interface table or API to use. I'm on Oracle Apps R11.5.10
    Thanks for all you help.

    Hi,
    Review the following links:
    Customer Conversion
    Customer Conversion
    API for loading Bank account details for the Customer
    API for loading Bank account details for the Customer
    Note: 296593.1 - How To Load Banks Into AP Using Ar_bank_directory Table?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=296593.1
    Oracle Integration Repository
    http://irep.oracle.com
    Regards,
    Hussein

  • Cannot amend Bank account in House Bank Accounts-setup

    Hi,
    Customer is using 2007A PL30
    With recent bank merging, a new bank account had been given to its customer. As such, customer would like to amend Account No field in House Bank Accounts-Setup but hit errors "Fields cannot be updated" Customer would like to continue posting into same G/L account for both incoming and outgoing payment history and bank reconciliation process purpose.
    Regards
    Thomas
    Edited by: Thomas Lai on Mar 4, 2009 10:27 AM

    A new bank account has to be setup.  You should not let customer to change their exist code.  A history has to be kept untouched for all financial records.
    Thanks,
    Gordon

Maybe you are looking for

  • Remote Installation Not Working

    I am wanting to install snow leopard on my 13" Intel Macbook currently running Tiger. Unfortunately, the optical drive is grinding disks so I've tried to do a Remote Installation from a pc running vista. I have "DVD or CD Sharing" enabled on both dev

  • White bar at the end of last clip in PP CC7.2

    It comes up on the last frame. Any thoughts?

  • Boolean method Sun naming convention?

    Does anyone know if the Sun manual for boolean methods has a naming convention? That is: are methods that return boolean supposed to start with 'is' or 'has' or something like that? I have the Sun conventions manual from 1997, and it doesn't say -- I

  • Nokia c2-03 latest software update 7.48

    why nokia c2-03 crew members doing stupidity again and again? The new firmware 7.48 in nokia c2-03 is bad. The phone still have many problems 1) no streaming 2)no music equiliser. 3)while playing vedio, this vedio may not play very wel massege appear

  • Payroll using time evaluation with clock times

    Dear all, I have configured an employee to have time management status 1, and my company would like to use attendance for time recording instead of time event since our clocking interface cannot provide exact clock times. I have also configured HRSIF