Bank account array list

I'm very lost and need a push in the right direction. I am trying to get the balance of a bank account which is an array list of accounts and balances. The class I am working on is the Bank class. There is also a BankAccount class and a BankTester class.
//deposit funds
     public void deposit(int accountNumber, double amount)
          double bal = (accountNumber).getBalance();
          double newBalance = bal + amount;
          balance = newBalance;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This is the error I am getting that I do not understand.
C:\Users\matthew\Documents\FLCC\CSC190\Exercise7_1\Bank.java:34: int cannot be dereferenced
          double bal = (accountNumber).getBalance();
          ^
C:\Users\matthew\Documents\FLCC\CSC190\Exercise7_1\Bank.java:36: cannot find symbol
symbol : variable balance
location: class Bank
          balance = newBalance;
          ^

mgp wrote:
I'm very lost and need a push in the right direction. I am trying to get the balance of a bank account which is an array list of accounts and balances. The class I am working on is the Bank class. There is also a BankAccount class and a BankTester class.
//deposit funds
     public void deposit(int accountNumber, double amount)
          double bal = (accountNumber).getBalance();
          double newBalance = bal + amount;
          balance = newBalance;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This is the error I am getting that I do not understand.
C:\Users\matthew\Documents\FLCC\CSC190\Exercise7_1\Bank.java:34: int cannot be dereferenced
          double bal = (accountNumber).getBalance();
OK, here is what I think is happening. I do not see a definition of accountNumber anyplace that would override the int definition in the parameter list, and you are trying to access it as a object with a method getBalance()--that is what the dereference error is saying--when you put the parentesis around the variable and then attaching a method to it you are trying to access the enclosed variable as an object. In any case it is not an object and it does not contain the method getBalance().
          ^
C:\Users\matthew\Documents\FLCC\CSC190\Exercise7_1\Bank.java:36: cannot find symbol
symbol : variable balance
location: class Bank
          balance = newBalance;
          ^balance is undefined in your Bank class.

Similar Messages

  • At the time of Payment scheduling Bank Account List

    Hi All,
    As per my client requirement they want at the time of payment scheduling They have to know Bank Account status than they can do the payment scheduling. And they want process for multiple Vender and multiple House Bank.
    Payment by NEFT/RTGS/Check/Cash/DD other
    They want the system should have to identify which bank have sufficient amount than they make the payment by that process.
    Regards,
    Seema.
    Edited by: seemacg on Jun 27, 2011 7:48 AM

    Hi Vivek,
    Thanks for information But it is possible when we run payment scheduling process that time we see all Bank Account balance because my client want one list of Bank Balance as per this list they define the bank those run the payment for that outgoing payment.
    They want the assign one time the scheduled for Multipal Vendor and Multipal House Bank  and they make payment.
    What we do please help me.
    Regards,
    Seema
    Edited by: seemacg on Jun 28, 2011 1:50 PM

  • Can we display the bank account number of a vendor in the payment list(APP)

    Hi Experts,
    After APP run ,when i dispaly  the payment list there exist the vendor adress details but no bank account number of vendor !
    Please confirm whether vendors bank account number can be displayed in the payment list or not?
    Note:- 1.I use programme RFZALI20 to dispaly payment list . 2. In the vendor's master data the bank account number is already maintained.
    Points will be rewarded.
    Regards,
    Ramakanta

    Hi Suresh,
    Thanks for your quick response.
    How can i dispaly the DME file ?
    As i mentioned to dispaly payment list use programme RFZALI20.
    I checked the configuration and found that payment programme RFFOUS_C is assigned against payment method "C" in the country setting.
    Note:-  We have 8 (eight payment methods) but "RFFOUS_C" is assigned only agaisnt payment method "C" (check) not against any other payment methods.
    We have a payment method "G"(Empl Payment method) and against this payment method the bank account number of vendor is displaying but not against any other payment method.
    I am confused...please help me.
    Regards,
    Ramakanta

  • List of Suppliers with Bank Account Information

    Hello All,
    We are trying to get a listing of all suppliers with the associated Bank Account information out of the systemf for an audit, but I cant seem to find the link between supplier or supplier sites and the bank account information. Any assistance would be greatly appreciated.
    Regards,
    Anthony

    Hi,
    What version are you running?
    po_vendors ->
    po_vendor_sites_all ->
    ap_bank_account_uses_all ->
    ap_bank_accounts_all ->
    ap_bank_branches
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/
    Message was edited by:
    gareth.roberts

  • Bank accounts list

    Hi All
    I have pulled the list of bank accounts with housebank ID and acct IDs using the SE 16 and  table T012K.
    Can anybody tell me how to see all the active bankaccounts from them? or how to see all the active bank accounts? which T-code and which table should i search for and how to see only active bank accounts?
    Please explain me As soon as possible
    Thanks
    Deepa

    Hi Deepa,
    If you are looking at table T012K, it will give you all the house bank and bank id's configured in SAP. These can be all actively used by your organization or they may not be. Which ones are being used actively, is a question for the business. There is no way you can make it out from SAP straight forward.
    The round about way to make out which banks are actively used, is to query on table REGUH. In this table look at the fields Account ID (HKTID) and House bank (HBKID). From these fields you can make out which house banks and accounts being used for the payment transactions.
    Hope this was of help.
    Vishal.

  • Again Maintaining Bank Accounts in java

    HI every body!
    Can anybody help in the following assignment., which I am assigned & is attached below.
    What should be the driver programme like to achieve the required result?
    Please check the attached code & tell me what is wrong with it & where is wrong?.
    I am stuck as the loop I have used for Open menu command is executing continuesly( Remember I have not written the code for menu options which according to me is supposed to be before the call to the method which will open the account.
    What I am supposed to do, to achieve what is required by the assignment?.
    Especially Driver Programme(TestAccount.java) & about write, Select, CreditInterest menu option as required by the assignment.
    Is the coding I have written uptill now is ok.
    I have done bit of coding & displaying this here . Could any one check what is wrong with it ? & guide me in the right path to achieve the required result.
    And what I am supposed to put this code in applet.
    Please do help as soon as possible
    I will be very very thankful
    **Following is the assignment
    Write a program that maintains two types of bank accounts - checking and savings. The program will store all of the account objects in a single array. Use the class below as a guide for the superclass.
    Public class BankAccount
    private double balance;
    private String AcctNumber;
    public BankAccount(String Number, double initialBalance)
    public void deposit(double amount)
    public void withdrawal(double amount)
    public String getNumber()
    public double getBalance()
    public void close()
    Descriptions of the menu commands for the program are as follows:
    Open account - the user is prompted for the account type, either c for checking or s for savings. If the user enters s, the program will ask for the annual interest rate. If the user enters anything other than an s or c, the program will display �Input was not c or s; please try again.� The user is then prompted to enter a new account number and initial balance. This data is stored in a new object. Objects for all existing accounts must be stored in an array. The new account becomes the current account.
    Close account - If there is no current account, the message �Please select an account� is displayed. Otherwise, the current account is removed from the array. There is no current account after this operation is completed.
    Deposit - If there is no current account, the message �Please select an account� is displayed. Otherwise, the user is prompted to enter the amount of the deposit. The amount entered by the user is added to the balance of the current account.
    Withdraw - If there is no current account, the message �Please select an account� is displayed. Otherwise, the user is prompted to enter the amount of the withdrawal. The amount entered by the user is subtracted from the balance of the current account.
    Select - The user is prompted to enter an account number. The array is then searched to see if any BankAccount object contains this number. If so, the object becomes the current account. If not, the following message is displayed :
    Account number not found
    Write - If there is no current account, the message �Please select an account� is displayed. If the account chosen is not a checking account, the program will display �Please select a checking account�. Otherwise, the user is prompted to enter the amount of the check. The amount entered by the user is subtracted from the balance of the current account and the number of checks written on the account is incremented.
    Credit Interest - One month of interest is credited to each savings account based on the interest rate for that account. Checking accounts are not affected.
    Other items of note:
    The checking account class will store the number of checks written against the account. Its methods will include a getter for the number of checks written and a method that writes a check for given amount.
    The savings account class will store the annual interest rate for the account. Its methods will include a getter and setter for the interest rate.
    The list of commands is redisplayed after each command has been executed, along with the current account, its balance and for checking - number of checks written; for savings - interest rate see below:
    Current account: 123455 Balance: $100.00 Number of Checks written: 6
    Current account: 123455 Balance: $100.00 Interest Rate: 4.5%
    Set the maximum array size to eight. When the maximum number of accounts is reached display an error message �We are sorry, we can�t accept any more accounts at this time�
    All user input may be entered as upper or lower case letters.
    ***Following is the code for Super Class
    public class BankAccount
    private double balance;
    private String acctNumber;
    public BankAccount()
    balance = 0.0;
    acctNumber = "";
    public BankAccount( double initialBalance, String number)
    balance = initialBalance;
    acctNumber = number;
    public void deposit(double amount)
    if (amount >= 0)
    balance = balance + amount;
    else
    System.out.print("You cannot deposit " +
    "a negative sum of money: ");
    System.out.println(amount);
    }//else
    public void withdraw(double amount)
    if (amount <= balance && amount >= 0)
    balance = balance - amount;
    else
    System.out.print("You cannot withdraw " +
    "that sum of money: ");
    System.out.println(amount);
    }//else
    public String getAcctNumber()
    return acctNumber;
    public double getBalance()
    return balance;
    public void close()
    balance = 0.0;
    // toString method
    public String toString()
    return "Current account: " + acctNumber + " Balance: $" + balance;
    }//BankAccount
    ** Below is the code for CheckingAccount Child Class
    public class CheckingAccount extends BankAccount
    private int numOfChecks;
    public CheckingAccount(double initialBalance,String number, int numOfChecks) // construct superclass
    super(initialBalance, number);
    this.numOfChecks = numOfChecks;
    public int getNumOfChecks()
    return numOfChecks;
    public void deposit(double amount)
    super.deposit(amount);
    public void withdraw(double amount)
    super.withdraw(amount);
    public String toString()
    return super.toString() + " Number of Checks written " + numOfChecks;
    ** Code for SavingsAccount Child Class
    public class SavingsAccount extends BankAccount
    private double interestRate;
    public SavingsAccount()
    super();
    interestRate = 0.0;
    public SavingsAccount(double initialBalance, String number,double interestRate)
    super(initialBalance, number);
    this.interestRate = interestRate;
    public double getInterestRate()
    return interestRate;
    public void setInterestRate(double rate)
    this.interestRate = rate;
    public String toString()
    return super.toString() + " Interest Rate " + interestRate;
    /*public void addInterest()
    double interest = getBalance() * interestRate / 100;
    deposit(interest);
    **code for Driver Programme TestAccount.java
    import java.io.*;
    public class TestAccount
    public static void main(String[] args) throws IOException
    InputStreamReader is = new InputStreamReader(System.in);
    BufferedReader stdin = new BufferedReader(is);
    BankAccount[] accountArray = new BankAccount[7];
    int x;
    for(x = 0; x < accountArray.length ; ++x)
    char selection;
    System.out.print("Please select the type of ");
    System.out.println("account you want to open:");
    System.out.println(" c for checking account");
    System.out.println(" s for savings account");
    selection = (char)System.in.read();
    System.in.read(); System.in.read();
    if(selection == 'c')
    for( x = 0; x<accountArray.length;++x)
    createChecking(accountArray);
    /*else if(selection == 's')
    createSavings();
    else
    System.out.println(" Input was not c or s, please try again!");
    }//for
    }//main
    public static void createChecking(BankAccount[] arr) throws IOException
    InputStreamReader is = new InputStreamReader(System.in);
    BufferedReader stdin = new BufferedReader(is);
    int x;
    for(x = 0; x < arr.length; ++x)
    String inString ;
    double initBalance = 0.0;
    int numChecks = 0;
    System.out.println("Please enter new account number:");
    inString = stdin.readLine();
    System.out.println("Please enter initial balance:");
    inString = stdin.readLine();
    initBalance = Double.parseDouble(inString);
    numChecks = Integer.parseInt(inString);
    arr[x] = new CheckingAccount(initBalance, inString, numChecks);
    }//for
    }//createChecking
    /*public static void createSavings() throws IOException
    InputStreamReader is = new InputStreamReader(System.in);
    BufferedReader stdin = new BufferedReader(is);
    int x;
    for(x = 0; x < accountArray.length; ++x)
    String aString ;
    double intRate = 0.0;
    System.out.println("Please enter annual interest rate:");
    aString = stdin.readLine();
    intRate = Double.parseDouble(aString);
    accountArray[x] = new SavingsAccount(intRate);
    }//for
    }//createSavings*/
    }//class

    http://forum.java.sun.com/thread.jsp?forum=31&thread=243200

  • Maintaining Bank Accounts in Java

    HI every body!
    Can anybody help in the following assignment., which I am assigned & is attached below.
    What should be the driver programme like to achieve the required result?
    Please check the attached code & tell me what is wrong with it & where is wrong?.
    I am stuck as the loop I have used for Open menu command is executing continuesly( Remember I have not written the code for menu options which according to me is supposed to be before the call to the method which will open the account.
    What I am supposed to do, to achieve what is required by the assignment?.
    Especially Driver Programme(TestAccount.java) & about write, Select, CreditInterest menu option as required by the assignment.
    Is the coding I have written uptill now is ok.
    I have done bit of coding & displaying this here . Could any one check what is wrong with it ? & guide me in the right path to achieve the required result.
    And what I am supposed to put this code in applet.
    Please do help as soon as possible
    I will be very very thankful
    **Following is the assignment
    Write a program that maintains two types of bank accounts - checking and savings. The program will store all of the account objects in a single array. Use the class below as a guide for the superclass.
    Public class BankAccount
    private double balance;
    private String AcctNumber;
    public BankAccount(String Number, double initialBalance)
    public void deposit(double amount)
    public void withdrawal(double amount)
    public String getNumber()
    public double getBalance()
    public void close()
    Descriptions of the menu commands for the program are as follows:
    Open account - the user is prompted for the account type, either c for checking or s for savings. If the user enters s, the program will ask for the annual interest rate. If the user enters anything other than an s or c, the program will display �Input was not c or s; please try again.� The user is then prompted to enter a new account number and initial balance. This data is stored in a new object. Objects for all existing accounts must be stored in an array. The new account becomes the current account.
    Close account - If there is no current account, the message �Please select an account� is displayed. Otherwise, the current account is removed from the array. There is no current account after this operation is completed.
    Deposit - If there is no current account, the message �Please select an account� is displayed. Otherwise, the user is prompted to enter the amount of the deposit. The amount entered by the user is added to the balance of the current account.
    Withdraw - If there is no current account, the message �Please select an account� is displayed. Otherwise, the user is prompted to enter the amount of the withdrawal. The amount entered by the user is subtracted from the balance of the current account.
    Select - The user is prompted to enter an account number. The array is then searched to see if any BankAccount object contains this number. If so, the object becomes the current account. If not, the following message is displayed :
    Account number not found
    Write - If there is no current account, the message �Please select an account� is displayed. If the account chosen is not a checking account, the program will display �Please select a checking account�. Otherwise, the user is prompted to enter the amount of the check. The amount entered by the user is subtracted from the balance of the current account and the number of checks written on the account is incremented.
    Credit Interest - One month of interest is credited to each savings account based on the interest rate for that account. Checking accounts are not affected.
    Other items of note:
    The checking account class will store the number of checks written against the account. Its methods will include a getter for the number of checks written and a method that writes a check for given amount.
    The savings account class will store the annual interest rate for the account. Its methods will include a getter and setter for the interest rate.
    The list of commands is redisplayed after each command has been executed, along with the current account, its balance and for checking - number of checks written; for savings - interest rate see below:
    Current account: 123455 Balance: $100.00 Number of Checks written: 6
    Current account: 123455 Balance: $100.00 Interest Rate: 4.5%
    Set the maximum array size to eight. When the maximum number of accounts is reached display an error message �We are sorry, we can�t accept any more accounts at this time�
    All user input may be entered as upper or lower case letters.
    ***Following is the code for Super Class
    public class BankAccount
    private double balance;
    private String acctNumber;
    public BankAccount()
    balance = 0.0;
    acctNumber = "";
    public BankAccount( double initialBalance, String number)
    balance = initialBalance;
    acctNumber = number;
    public void deposit(double amount)
    if (amount >= 0)
    balance = balance + amount;
    else
    System.out.print("You cannot deposit " +
    "a negative sum of money: ");
    System.out.println(amount);
    }//else
    public void withdraw(double amount)
    if (amount <= balance && amount >= 0)
    balance = balance - amount;
    else
    System.out.print("You cannot withdraw " +
    "that sum of money: ");
    System.out.println(amount);
    }//else
    public String getAcctNumber()
    return acctNumber;
    public double getBalance()
    return balance;
    public void close()
    balance = 0.0;
    // toString method
    public String toString()
    return "Current account: " + acctNumber + " Balance: $" + balance;
    }//BankAccount
    ** Below is the code for CheckingAccount Child Class
    public class CheckingAccount extends BankAccount
    private int numOfChecks;
    public CheckingAccount(double initialBalance,String number, int numOfChecks) // construct superclass
    super(initialBalance, number);
    this.numOfChecks = numOfChecks;
    public int getNumOfChecks()
    return numOfChecks;
    public void deposit(double amount)
    super.deposit(amount);
    public void withdraw(double amount)
    super.withdraw(amount);
    public String toString()
    return super.toString() + " Number of Checks written " + numOfChecks;
    ** Code for SavingsAccount Child Class
    public class CheckingAccount extends BankAccount
    private int numOfChecks;
    public CheckingAccount(double initialBalance,String number, int numOfChecks) // construct superclass
    super(initialBalance, number);
    this.numOfChecks = numOfChecks;
    public int getNumOfChecks()
    return numOfChecks;
    public void deposit(double amount)
    super.deposit(amount);
    public void withdraw(double amount)
    super.withdraw(amount);
    public String toString()
    return super.toString() + " Number of Checks written " + numOfChecks;
    **code for Driver Programme TestAccount.java
    import java.io.*;
    public class TestAccount
    public static void main(String[] args) throws IOException
    InputStreamReader is = new InputStreamReader(System.in);
    BufferedReader stdin = new BufferedReader(is);
    BankAccount[] accountArray = new BankAccount[7];
    int x;
    for(x = 0; x < accountArray.length ; ++x)
    char selection;
    System.out.print("Please select the type of ");
    System.out.println("account you want to open:");
    System.out.println(" c for checking account");
    System.out.println(" s for savings account");
    selection = (char)System.in.read();
    System.in.read(); System.in.read();
    if(selection == 'c')
    for( x = 0; x<accountArray.length;++x)
    createChecking(accountArray);
    /*else if(selection == 's')
    createSavings();
    else
    System.out.println(" Input was not c or s, please try again!");
    }//for
    }//main
    public static void createChecking(BankAccount[] arr) throws IOException
    InputStreamReader is = new InputStreamReader(System.in);
    BufferedReader stdin = new BufferedReader(is);
    int x;
    for(x = 0; x < arr.length; ++x)
    String inString ;
    double initBalance = 0.0;
    int numChecks = 0;
    System.out.println("Please enter new account number:");
    inString = stdin.readLine();
    System.out.println("Please enter initial balance:");
    inString = stdin.readLine();
    initBalance = Double.parseDouble(inString);
    numChecks = Integer.parseInt(inString);
    arr[x] = new CheckingAccount(initBalance, inString, numChecks);
    }//for
    }//createChecking
    /*public static void createSavings() throws IOException
    InputStreamReader is = new InputStreamReader(System.in);
    BufferedReader stdin = new BufferedReader(is);
    int x;
    for(x = 0; x < accountArray.length; ++x)
    String aString ;
    double intRate = 0.0;
    System.out.println("Please enter annual interest rate:");
    aString = stdin.readLine();
    intRate = Double.parseDouble(aString);
    accountArray[x] = new SavingsAccount(intRate);
    }//for
    }//createSavings*/
    }//class

    I have done bit of coding & displaying this here . Could any one check what is wrong
    with it ? & guide me in the right path to achieve the required result.
    And what I am supposed to put this code in applet.Hold on now, this person seems to have done some coding Considering the bare BankAccount class they were given as a starting point, it seems they have given it quite an effort. I think I will look at this person's code ...not to complete it, but to give them guidance. I agree with your concerns Derisor, but lets not throw the baby out with the bathwater!
    The trouble with me looking into your code though, dear poster, is that you did not supply the SavingsAccount class ...your listing just gives a duplicate of the CheckingAccount class (I assume a copy/paste error). Post the missing class and I will try to give you some advice. But as Derisor indicated ...I will not be completing your assignment for you. OK?

  • Best Buy hijacked my bank account and disposed my Best Buy points

    I placed an online order on 09/05/2014 (Order number: (removed per forum guidelines) around 4pm eastern, and about 3 hours later, I got another email stating "YOUR ITEM HAS BEEN CANCELED". It was for an in-store open box item, which I was able to pay for online and pick-up at the store, or so I thought. I used two $5.00 reward certificates, a gift card, and my credit card to finalize the transaction. The email titled, "YOUR ITEM HAS BEEN CANCELED" contained this information:
    Be assured that if you paid by credit card, it has not been charged, and any other method of payment has been credited. If you used a Gift Card for this order and no longer have it, please call the number below and we'll send you a replacement.
    If you have any questions about your order or need further assistance — or if you'd like help finding a similar item — please contact us at
    1-888-BEST BUY (1-888-237-8289).
    Once again, we're sorry for this inconvenience, and are working hard to serve you better in the future.
    Sincerely,
    Karalyn Sartor
    Vice President Customer Care
    Well, lets just start wih Karalyn did not answer my call or attempted to help.
    My gift card was immeditely re-credited, however it has been a different story for the other method of payment. My certificates which were accumulated through purchases totaling over $500 dollars, never regenerated (i've called 3 separate times about when are they going back to my points bank and responses range from 24hr to 45days) it's now Wednesday this happen last Friday. The cancelation email stated my credit card would not be charged, but Best Buy did something worse they placed a hold on my card for this order that wasn't fulfilled and actually canceled by Best Buy employees at the store(553) due to not in stock (as stated in cancelation email).
    The transaction was completed online because it indicated stock was available and the, "Thank you for your order" email implied that ownership was mine. I don't understand why Best Buy placed a hold on my card, if the transaction was manually checked and canceled? What makes it worse there was no attempt to contact me to substitute canceled order or give me a definitive reason why it was canceled. In fact, my reward certificates that I accumulated over some time were gone due to this cancelled order and no definitive answer has been given to when they will show back on my account. I was told Friday the hold would release in 3-5 days and it "should" drop, but it now Wednesday. I would understand if this was a return transaction and I have to wait for my funds to be available again, but I had no possession of item and it the transaction didn't go through why is Best BUy holding my money hostage? I'm not in the business of lending out money, and I needed those funds to actually acquire what I attempted to in my order. I shouldn't have to wait on my money, I feel like I'm being bullied and down right punished.
    So, now it gets worse for me because. I called I-800 for Elite Plus reward members ( been a member since it was Premier Silver) to make sure stock was available on a similar item (at full price), and asked about the points, I lost and how I would be able to apply them to my purchase. The rep adjusted the price to accommodate my transaction and said that the points would be still go back on my account in 24 hrs. This new order was finalized on the same day as original order Friday 09/05/2014.
    Well, I checked my bank account Monday , and was surprised to see the original cancelled order was still there, as well as two identical transaction that I'm assuming represented my new order. I was patient and waited till Tuesday to check again, and hoped that all mistaken holds would drop, but I was wrong. Instead, now a hold actually posted as a completely different amount (lower) with the new order number associated to it, and the other amount(what I expected) is also there plus the original transaction amount. Who gave Best By create a third order without my consent? Why did Best Buy assume I had money to lend their cooperation? Why did Best Buy assume that my funds were at their disposal and authorized their own transaction? How dos Best Buy not consider unapproved transactions could overdraft my account? I called and asked, but no answer could be given to why that happen except that the rep charged me twice, and thats why theres two holds, but then that doesn't explain why one of those holds post at a cheaper price with my new order number on it. This is crazy, there is no reason why a third order should have been created because I didn't approve it. This has been too many days without my money, and these holds total a little pass $300.00 dollars (not chump change).
    Yesterday (09/09/14) I contacted my bank to find a solution to these unwarranted charges, and the only way to expedite and release my funds would be in a from of a letter from best buy on their letter head to be faxed to 18663097443 with the transaction amounts, card number, my name, date of transaction, signed by a manager, and a statement informing the bank that Best Buy would not collect on those charges. The other solution was to dispute the charge that posted because that amount was not contracted to be fulfilled under the agreement of the order form.
    So, I called Best Buy again. Well, after over an hour on the phone and the rep spoke to her superiors which declined the request, so I asked for the case number, but the rep told me that after during the conversation her computer crashed and no number could be given. So, I asked for some type of compensation for this crazy ordeal and for the financial position it put me in by creating a new order and holding funds from a canceled order. Well, she said my situation didn't correspond to reasons that warranted compensation, not even a coupon. I thought what happen to customer service as being a reason? The Best Buy rep did seem to empathize with my situation, and asked again for that authorization letter, and she said she got it approved; this was around 5pm yesterday. She then even said she was able to generate a case number with this approval (case number 144087240).
    Guess what Best Buy community its now Wednesday, and the holds are all there no communication was sent to the resolution department on the behalf of Best buy and I'm still out $300. plus dollars since Friday. Normally banks charge interest on loans, what will Best Buy do for me now that I have stolen my money? I never gave consent to create a third order, which now I will have to dispute and report to the Better Business Bureau. The most unbelieveble part of this mess is that the item in my original order that satrted all this is still up on the Best Buy page. An employee supoosley checked and made the determination that the item is out of stock, but its still on the webpage to trap another customer in lending Best Buy capital to fund their organization. I would clike to challenage any employee to attempt to but this item and see what happens to their funds. I mean, come on Best Buy if you don't pay the employee to trap people, then have them remove the item off the website where people are becoming victims to this money pit. Here is the link go for it and see what happens to you Karalyn Sartor, Vice President Customer Care. 
    http://www.bestbuy.com/site/apple-open-box-ipad-mini-with-wi-fi-16gb-white-silver/6208541.p?id=12187...
    I shop at Best Buy so much I held the silver Premier status since it was introduced, and every year the amount of how much you spend gets raised as benefits get removed, I've been able to surpass that threshold to maintain Elite Plus status since it too has been created topping almost $5000.00 this year alone, and we haven't hit Christmas yet. This experience is something to consider next time I think about going to Best Buy.

    Good afternoon robertocar78,
    After reading through your detailed post, I can fully understand why you would be frustrated with this experience. First off, stores should ensure that their clearance and open-box items listed on BestBuy.com are up-to-date to prevent such experiences as yours. Secondly, to have such an amount of funds unavailable would be quite worrisome, and I hope that I can bring some light to your particular situation.
    Using the email address you registered with the forum, I was able to locate your cancelled order as well as the replaced order. Typically when an order is placed, the funds are immediately authorized to ensure the funds are available. While this authorization may make the funds unavailable, the funds have not actually been collected.
    Once an order ships, the funds will be collected at that time. Should there be more than one item on an order, if the items ship separately or at different times, you may be charged for the individual items. That being said, you could see multiple smaller charges for one order that together make up the order total. If an order is cancelled, the authorization should be dropped on our end. However, this may take 3-5 business days to reflect on your end, depending on your financial institution’s processing times.
    I was able to see that you have been working extensively with Todd on our Consumer Relations team in regards to your situation. I spoke with him personally about your particular situation and let him know that you have also posted here in regards to your concerns. I’m happy to hear that he has been able to assist you in resolving most of your issues thus far.
    Also, please know that I am reaching out to the Tropicaire store in Miami, FL store in regards to this iPad listing to ensure they have a chance to correct any inventory or listing issues they may have. I am truly sorry for any inconvenience this experience may have caused you. I hope that this experience has not influenced your future shopping destinations.
    If you should have any further concerns or questions, please feel welcome to reach out to me here on the thread or by sending me a private message via the link in my signature below.
    Cheers!
    Tasha|Social Media Specialist | Best Buy® Corporate
     Private Message

  • ITunes keeps takeing unauthorized withdraws from my bank account for no reason i have made no purchases so they have no reason to be takeing money out of my checking account.  can someone tell me how to get my 100$ back.cant fig out how to email them

    ITunes keeps takeing unauthorized withdraws from my bank account.  I have tried to figure out how to get my money back from the 4 unauthorized withdraws to my account. I cant figure out how to get there email address or how to initiate a live chat with them and there website has been no help to me.  Can someone please tell me how I can get my money back
         Thank you

    you need to call apple support. All contact methods are listed here. http://support.apple.com/kb/HE57 good luck
    I Hope I Was Able To Help You Or Solve Your Question.
    Simmm
    3/12/2012
    <Edited by Host>

  • Payment wizard limits outgoing payments to balance in G/L bank account

    SAP B1 2005A Banking, Payment Wizard, Recommendation Report limits recommended invoices for payment to the balance in the G/L bank account. Is there a way to get around this limitation?
    It would be much better for our company if the Recommendation Report listed ALL invoices that meet the parameters we specified (Vendor # range, Vendor Group, Due Date, etc) then allow us to de-select individual invoices until the total of payments is below the G/L bank account balance.

    Sorry for the hurry answer without check.  The message on the screen clear says: Non-Included trans. displays rows for which a payment cannot be generated.
    This is system behavior.  I don't think there are any existing options other than try SDK.
    Thanks,
    Gordon

  • DRQ: Allow choosing correct Business Partner bank account in Payment Wizard

    Hello,
    This is a DRQ about the Payment process.
    It concerns the "Payment Wizard" functionality (Menu "Banking --> Payment Wizard") and the "manual outgoing payments" creation (Menu "Banking --> Outgoing Payment --> Outgoing payment").
    Version : 2007A SP00 PL38
    Description of requirements :
    In the current version of SBO ( 2007 SP00 PL38 ) when we create an outgoing payment with bank transfer as Payment method (manually or with the Payment Wizard), it is not possible to specify the Supplier "bank account" to use. The default bank account defined in the Supplier Master Data is automatically chosen by SAP B1.
    We can create several bank accounts in the Supplier Master Data, but it is not possible to use the non-default ones in the outgoing payments creation.
    Business needs:
    Some of our SAP B1 customers get suppliers with several bank accounts. They use the "Payment Engine" to generate "bank file" for bank transfer and forward the bank files to their banks and require to choose the correct bank accounts to use to pay each documents.
    The aim of the Payment Wizard is to help the SAP B1 customers to create regularly and automatically some outgoing payments.
    And when the Payment Wizard is run with several documents to pay on different supplier bank accounts for (for example AP Invoices to pay on different bank accounts for the same supplier), it does not work correctly because the bank account which is used in the "bank file" created at Step 9 of the "Payment Wizard" (by clicking the "Bank File" button added by the Payment Engine) is the default one.
    Current Workaround:
    To generate correct bank files, the SAP B1 user has to run several times the "Payment Wizard", modifying each times the default bank account of the supplier. The result is the creation of several "bank files"...
    and an important loss of time !
    Proposed solution:
    In the Payment Wizard, in Step 6/9, add a column which allow the user choosing the bank account (for example in a "choose from list" which display the existing bank accounts of the corresponding supplier) for each document to pay.
    The supplier default account is proposed by default but can be changed for each line.
    This column should be deactivated for other payment method than "Bank Transfer".
    This functionality should be interesting for manual outgoing payment because it should allow choosing the supplier bank account to pay on and recording this bank account information in the manual outgoing payment. In that way it will be possible to print the bak account information on the printed forms (PLD) we can print and send by fax to the bank.
    Kind Regards.
    Grégory

    Hi Grégory
    I have encountered the same problem: The payment wizard always suggests the supplier's standard bank account, irrespective of the information entered on the logistics tab in the pay to field of the AP Invoice. Unlike the solution you proposed (choose from list), I would prefer the payment wizard to automatically select the bank entered in the pay to field of the AP Invoice.
    Best regards
    Christiane

  • Customer bank account detail in istore.

    In istore ,one customer is place order a item using the same credit card number (EX:visa .XXXXXXXXXXX4444) .After the place order ,in customer bank account screen having the credit card information and customer account name.
    Again same customer is place order the item using the exiting credit card number. (EX:visa .XXXXXXXXXXX4444) . So what was the out put in customer bank account screen. in this process credit card number is updated in exiting credit card or creates a new credit card account in customer bank account screen.
    Thanks
    prabu

    Hi;
    ll 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

  • Vendor bank accounts automatic pick up

    Dear Experts,
    For one vendor we have two bank accounts 1)SAR and 2)EUR.
    For another vendor have two bank accounts 1)USD and 2)SAR
    When i am running for first vendor APP it is in prposal and Payment list it is picking Euro bank account irrespective of invoice currency
    For another vendor it is always going to USD a/c that is first account irrespective of invoice currency.
    Please advise on what bassis system is picking up the bank account from the vendor when he has more than one bank accounts.
    note: I have not activated the field parner bank type while posting invoice
    Thanks
    Balu

    Selecting the House Bank
    1. First it determines the bank ID (house banks) based on the payment method and
    currency. If it finds no entry for the combination, it checks the bank for payment method
    without currency specification, if such an entry exists.
    2. It determines the account ID on the basis of the bank ID, the payment method and the
    currency.
    3. Finally, it finds out whether sufficient amounts are available for both bank ID and account
    ID.
    During the payment run the payment program therefore attempts to determine a house bank and
    a bank account that has a sufficient amount available for payment. This may result in the
    following possibilities:
      No house bank is found that fulfills all terms. The payment cannot then be made with the
    payment method with which the check was carried out. The checks are carried out for the
    next possible bank. If no bank is determined, the payment method can not be used. If
    another method is available, it will then be checked as well. This is noted in the log for the
    payment run.
      One house bank only is determined. The payment is made via this house bank.
      The program produces a list with house banks. The payment is made from the house
    bank with the highest priority according to the defined ranking order of the banks. This is
    not the case if payment optimization has been specified.
    i hope this helps you

  • 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

  • Vendor Master Bank Account Number Changes

    Hi,
    Where are the changes of bank account number (New and the Old one) in vendor master data Reflected , is there any Table.??
    Regards,
    Archit

    You can see the bank account before and after values in vendor master display or change.  Call up the vendor master (XK02 or XK03), go to the Vendor: Payment transaction screen, and then select the menu path Environment -> Account Changes -> All Fields.  The bank account changes will be listed under the change screen heading "Vendor Master (Bank Details)".  You may need to click the button "Entries" to see the Vendor Master (Bank Details).  Double-click that line and you will see the before and after values for ever bank number change.
    Example:
    Entry Vendor Master (Bank Details)
    Date                          Chgd By              Co Bank Number    Acct/IBAN
    11/30/09         ??????????       US 043318092      987654321     NEW
    11/30/09         ??????????       US 043318092      123456789     OLD
    Hope this helps.

Maybe you are looking for

  • How to configure multiple listeners

    Hi All, I have installed 2 different Oracle instances on a single machine. I found that each oracle installation created its own Listener. I cant start both of the listeners at the same time. As a result, the respective applications cant talk to thei

  • [fla8] snap to object at runtime?

    Hi all, is there a way to enable some sort of 'snap to object' to draggable objects in a movie at runtime? I'm creating a tiny app that will allow the user to drag object and align them side-by-side. Aligning them in a perfect way is almost impossibl

  • Problem in translations when Table maintenance screens

    Hi, I have generated maintenance for a custom table. I am able to see the sceen title (= Table description) in EN (original langauge). However, when I login into other languages it it displaying the screen title as "?". Could you please let me know h

  • Can I get the participants of the role of some activity using PAPI?

    Hi all, Can I get all participants who have the role of one activity using PAPI? how? thanks and regards.

  • EWA without Diagnostics

    Hi There We are planning on setting up EWA in an Solution Manager 7.0 Ehp1 system. Our Landsacpe consists of 4.7 R3 systems based on SAP_BASIS 6.20 and BI systems based on Netweaver 7.0. All the systems, Logical componenets and Solutions have been se