answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: When you double click on a balance sheet account in the chart of accounts what does quickbooks display?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Accounting

What are general ledger accounts?

he general ledger is a collection of the firm's accounts. While the general journal is organized as a chronological record of transactions, the ledger is organized by account. In casual use the accounts of the general ledger often take the form of simple two-column T-accounts. In the formal records of the company they may contain a third or fourth column to display the account balance after each posting.


Process to check account balance on ATM?

Below are the steps as to how it works:Customer visits the ATM and inserts his card into the machineATM reads the magnetic stripe to identify the userATM prompts the user to enter his identification pin numberIf the user enters an incorrect pin, the transaction is cancelled and the card is returnedIf the user enters the correct pin, the machine shows him a menu of operations like withdrawal, deposit, balance inquiry etc.User chooses his option - Ex: Balance InquiryThe ATM will ask you to choose your account type - Current/SavingsOnce you select it, it will ask: "Do you want a printed Advise" or "Display balance on Screen"choose the option you want and check your balance.


Can you check your blance ATM?

Yes you can check your bank balance at the ATM. All you need is a valid ATM card and a PIN number. If you possess that, first insert the card into the machine and enter the PIN number. When the ATM asks you which transaction to perform - choose Balance Inquiry and the machine will display the balance for you.


How do you change your billing info on iTunes?

Go to the store menu in iTunes and select "View My Account". Sign in when prompted and all of your account information will display. To change your billing options click on the "Edit Payment Info" button on the right and from there you can put in the new information.


Does an account user know when someone access their account?

That depends entirely on whether the system administrator has enabled the features of the OS that cause it to display past logins to the user. If they enable the feature, then it may show the user the most recent attempted and successful logins, from which the user can identify if someone else has been accessing their account. As an example: If you see that the last login was 12 hours ago and you haven't logged in for 2 days, you know something is up.

Related questions

What are general ledger accounts?

he general ledger is a collection of the firm's accounts. While the general journal is organized as a chronological record of transactions, the ledger is organized by account. In casual use the accounts of the general ledger often take the form of simple two-column T-accounts. In the formal records of the company they may contain a third or fourth column to display the account balance after each posting.


Quickbooks Pro Statement of Owner's Equity What or where is the statement of owners equity in quickbooks. what is it called in quickbooks.?

In QuickBooksThe Statement of Owner's equity is a component of the Balance Sheet Financial Statement. There is no separate report available in QuickBooks with this title.Owners Equity is a term applicable to Companies that operate as a:Sole proprietor (only 1 owner to the business), orLimited Liability Company(LLC)-with only 1 owner -an LLC company owner has improved liability protection over a sole proprietorYou can find the balance sheet report in QuickBooks under the Report Menu > Company & Financial > Balance Sheet Standard.The balance sheet will display one day in time, but you can modify the date range in the report button bar located at the top left hand region of the report which will provide the change in owners equity based on the date you select.You can customize this report to include only equity accounts:Click on the Modify report button > click on the filter tab > click on Accounts and select the "all equity accounts" > click OKYou can memorize this report for easy retrieval by clicking on the memorize button on the report button bar.Hope this helps,Linda Saltz, CPAAdvanced Certified QuickBooks AdvisorIntuit Solution Providerhttp://www.qbalance.comWe provide hands on training in QuickBooks and QuickBooks Enterprise to Medium and Small Businesses.


What are good display names?

Display names refer to the unique account names that people use to login to various accounts. Examples of good display names include techtom, savvyvic, and smithmary.


What is the transaction code in SAP to view general ledger balances cost center wise?

FS10N - is the the transaction code used for GL Account Balance Display


Will Bookkeeper 2009 balance the check book?

Bookkeeper 2009 can download bank transactions and credit card transactions (once you set up the account) and will display it in its graphical user interface.


You cant change your display picture on msn why is this?

You can. Click on Tools in the top bar which is in between Actions and Help and click on Change Display Picture. Then browse your computer for the picture you want.


What type of balance does the desgin of the Taj Mahal display?

isometric


Create an inheritance hierarchy containing base class Account and derived classes SavingsAccount and CheckingAccount that inherit from class Account?

// ASSIGNMENT 3.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "conio.h" #include <iostream> using std::fixed; using namespace std; class Account { public: Account( double ); // constructor initializes balance void credit( double ); // add an amount to the account balance bool debit( double ); // subtract an amount from the account balance void setBalance( double ); // sets the account balance double getBalance(); // return the account balance private: double balance; // data member that stores the balance // Account constructor initializes data member balance Account::Account( double initialBalance ) { // if initialBalance is greater than or equal to 0.0, set this value // as the balance of the Account if ( initialBalance >= 0.0 ) balance = initialBalance; else // otherwise, output message and set balance to 0.0 { cout << "Error: Initial balance cannot be negative." << endl; balance = 0.0; } // end if...else } // end Account constructor // credit (add) an amount to the account balance void Account::credit( double amount ) { balance = balance + amount; // add amount to balance } // end function credit // debit (subtract) an amount from the account balance // return bool indicating whether money was debited bool Account::debit( double amount ) { if ( amount > balance ) // debit amount exceeds balance { cout << "Debit amount exceeded account balance." << endl; return false; } // end if else // debit amount does not exceed balance { balance = balance - amount; return true; } // end else } // end function debit // set the account balance void Account::setBalance( double newBalance ) { balance = newBalance; } // end function setBalance // return the account balance double Account::getBalance() { return balance; } // end function getBalance }; // end class Account class SavingsAccount : public Account { public: // constructor initializes balance and interest rate SavingsAccount( double, double ); double calculateInterest(); // determine interest owed private: double interestRate; SavingsAccount::SavingsAccount( double initialBalance, double rate ) : Account( initialBalance ) // initialize base class { interestRate = ( rate < 0.0 ) ? 0.0 : rate; // set interestRate } // end SavingsAccount constructor // return the amount of interest earned double SavingsAccount::calculateInterest() { return getBalance() * interestRate; } // end function calculateInterest // interest rate (percentage) earned by account }; // end class SavingsAccount class CheckingAccount : public Account { public: // constructor initializes balance and transaction fee CheckingAccount( double, double ); void credit( double ); // redefined credit function bool debit( double ); // redefined debit function private: double transactionFee; // fee charged per transaction // utility function to charge fee void chargeFee(); CheckingAccount::CheckingAccount( double initialBalance, double fee ) : Account( initialBalance ) // initialize base class { transactionFee = ( fee < 0.0 ) ? 0.0 : fee; // set transaction fee } // end CheckingAccount constructor // credit (add) an amount to the account balance and charge fee void CheckingAccount::credit( double amount ) { Account::credit( amount ); // always succeeds chargeFee(); } // end function credit // debit (subtract) an amount from the account balance and charge fee bool CheckingAccount::debit( double amount ) { bool success = Account::debit( amount ); // attempt to debit if ( success ) // if money was debited, charge fee and return true { chargeFee(); return true; } // end if else // otherwise, do not charge fee and return false return false; } // end function debit // subtract transaction fee void CheckingAccount::chargeFee() { Account::setBalance( getBalance() - transactionFee ); cout << "$" << transactionFee << " transaction fee charged." << endl; } // end function chargeFee }; // end class CheckingAccount int _tmain(int argc, _TCHAR* argv[]) { Account account1( 50.0 ); // create Account object SavingsAccount account2( 25.0, .03 ); // create SavingsAccount object CheckingAccount account3( 80.0, 1.0 ); // create CheckingAccount object cout << fixed << setprecision ( 2 ); // display initial balance of each object cout << "account1 balance: $" << account1.getBalance() << endl; cout << "account2 balance: $" << account2.getBalance() << endl; cout << "account3 balance: $" << account3.getBalance() << endl; cout << "\nAttempting to debit $25.00 from account1." << endl; account1.debit( 25.0 ); // try to debit $25.00 from account1 cout << "\nAttempting to debit $30.00 from account2." << endl; account2.debit( 30.0 ); // try to debit $30.00 from account2 cout << "\nAttempting to debit $40.00 from account3." << endl; account3.debit( 40.0 ); // try to debit $40.00 from account3 // display balances cout << "\naccount1 balance: $" << account1.getBalance() << endl; cout << "account2 balance: $" << account2.getBalance() << endl; cout << "account3 balance: $" << account3.getBalance() << endl; cout << "\nCrediting $40.00 to account1." << endl; account1.credit( 40.0 ); // credit $40.00 to account1 cout << "\nCrediting $65.00 to account2." << endl; account2.credit( 65.0 ); // credit $65.00 to account2 cout << "\nCrediting $20.00 to account3." << endl; account3.credit( 20.0 ); // credit $20.00 to account3 // display balances cout << "\naccount1 balance: $" << account1.getBalance() << endl; cout << "account2 balance: $" << account2.getBalance() << endl; cout << "account3 balance: $" << account3.getBalance() << endl; // add interest to SavingsAccount object account2 double interestEarned = account2.calculateInterest(); cout << "\nAdding $" << interestEarned << " interest to account2."<<endl; account2.credit( interestEarned ); cout << "\nNew account2 balance: $" << account2.getBalance() << endl; return 0; } // end main


How do you hide your age on YouTube account?

My account > Profile setup > Personal details > Age: Do not display my age


How do you write test cases on ATM?

Test NoDiscriptionExpected Result1Insert ATM Card incorrectlyATM should not accept card and display a massage please insert Valid card.2Insert Invalid ATM Card of expired Card dateATM should not accept the card and display a message "Sorry unable to process your request"3Insert valid ATM cardATM should display language page with a massage please select language "English, Hindi"4Select Language to be useATM should display the pin number page with a massage please enter 4 digit pin no5Enter the invalid pin numberATM should display a message please enter valid pin no,6Insert valid ATM card, Select language to be used, Enter the invalid pin number three timeATM should display a massage your account has been blocked please contact branch manager7Insert valid ATM card, Select language to be used ,Enter the valid pin numberATM should display the account type selection page8Select correct account typeATM should display service page with the following case withdrawal, pin change, mini statement ,balance inquiry,9Select incorrect account typeATM should display a message" Sorry unable to process your request'10Insert valid ATM card, Select language to be used, Enter the valid pin number, select correct ac type.ATM should display amount entry page11Enter the amount less than or equal with account balance and click on OKATM need to give money and display the objects want to continue, OK, NO12Click on NoATM should give receipt for the transaction, return the card back,13Insert valid ATM card, Select language , enter valid pin no, select correct ac type, select case withdraw option , enter the amount greater than account balance and click on OKATM should display an error message" Sorry unable to process your request ' insufficient fund.14Insert valid ATM card, Select language , enter valid pin no, select correct ac type, select case withdraw option , enter the amount greater than day limit amount, Click on OKATM should display an error message" Sorry unable to process your request '15Insert valid ATM card, Select language , enter valid pin no, Click on cancel buttonATM should display error message " Sorry unable to process your request, and return the card by ATM16Insert valid ATM card, Select language , enter valid pin no, select correct ac type, click on cancel buttonATM should display error message " Sorry unable to process your request" and return the card by ATM.17Insert valid ATM card, Select language , enter valid pin no, select balance inquiry optionATM should display message " Do u want receipt" Yes, No,18Click on YesATM should display account balance and return receipt with account balance


Display all the users who are having account?

cat /etc/passwd


Process how to check an account balance on ATM?

Below are the steps as to how it works:Customer visits the ATM and inserts his card into the machineATM reads the magnetic stripe to identify the userATM prompts the user to enter his identification pin numberIf the user enters an incorrect pin, the transaction is cancelled and the card is returnedIf the user enters the correct pin, the machine shows him a menu of operations like withdrawal, deposit, balance inquiry etc.User chooses his option - Ex: Balance InquiryThe ATM will ask you to choose your account type - Current/SavingsOnce you select it, it will ask: "Do you want a printed Advise" or "Display balance on Screen"choose the option you want and check your balance.