Bank Balance before Reconscillation

Hi
Month End we are doing the Bankreconcillation lets say 31.08.2010.Statement.After Bank Reconscition statement 
From the period 01.09.2010 to 15.09.2010 custimer Receipts and vendor chequues issues and Advance payments happening.
16 th Date i need to check the Bank balance based on the amount we need to do the Transctions. kindly suggest and give me r advises. Weather Standered SAp solution avilable or not please suggest him.
with regards
rao

Hi
Through FS10N Select House Bank and Clearing & Receivable Bank Account and execute the report and see the balance. If you want it in certain period Go to FBL3n and run the GL report for the sspecific date.
Rgds
Vani
Edited by: Thota Vani on Sep 30, 2010 7:49 AM
Edited by: Thota Vani on Sep 30, 2010 7:49 AM

Similar Messages

  • I am trying to change my apple id Country. but it says " you have a store credit balance, you must spend your balance before you can change it." i don't wanna use it to change my country. by the way i can't update any of iPhone apps. need help

    I am trying to change my apple id Country. but it says " you have a store credit balance, you must spend your balance before you can change it." i don't wanna spend it to change my country. by the way i can't update any of iPhone apps. need help

    It's strange because I can change my AppleID country without this message.
    So what to do? Just try to do this again, but on another device. You may also erase cookies and history of your browser.
    I hope it will be helpful, good luck!

  • I switched to singapore on the app store, so now i am trying to get back to the U.S app store and it is saying "You have a store credit balance;you must spend your balance before you can change stores"  I am trying to save money. What do I do???

    I switched to singapore on the app store, so now i am trying to get back to the U.S app store and it is saying "You have a store credit balance;you must spend your balance before you can change stores"  I am trying to save money. What do I do???

    Contact iTunes Support - http://apple.com/emea/support/itunes/contact.html - and ask them to clear your balance.

  • Bank Balance Report

    Hi all,
    i created one Query for Bank Balance ,but its showing errors .so kindly suggested me how to make CR report for Bank balance.
    declare @FromDate datetime
    declare @ToDate datetime
    set @FromDate={?FromDate}
    set @Todate={?ToDate}
    Select
    a.Account,a.AccountName,
    sum(a.[Opening Balance]) as [Opening Balance],
    sum(a.Debit) as [Receipt],
    sum(a.Credit) as [Payment],
    (sum(a.[Opening Balance]) + sum(a.Debit) - Sum(a.Credit)) as 'Closing Balance'
    from(
    Select N1.Account,N1.[ShortName] as 'AccountName'
    (sum(N1.Debit)-sum(n1.Credit)) as [Opening Balance],
    0 as [Receipt],
    0 as [Payment]
    From  JDT1 N1 inner join OJDT N2 on N1.TransId = N2.TransId
    Where
    N2.refDate < @FromDate and N1.Account in('172101' ,'172102','172105','172106','172107','172109','172108','172104') Group By
    N1.Account,N1.[ShortName],N1.Debit,N1.Credit
    Union All
    select N1.Account,N1.[ShortName] as 'AccountName',
    0 as [Opening Balance],
    sum(N1.Debit) as [Receipt],
    0 as [Payment]
    From JDT1 N1 inner join OJDT N2 on N1.TransId = N2.TransId
    Where
    N2.refDate >= @FromDate and N2.refDate <= @ToDate and N1.Account in('172101' ,'172102','172105','172106','172107','172109','172108','172104') and N1.TransType='24'
    Group By
    N1.Account,N1.[ShortName],N1.Debit,N1.Credit
    Union All
    select N1.Account,N1.[ShortName] as 'AccountName',
    0 as [Opening Balance],
    0 as [Receipt],
    sum(N1.Credit) as Payment
    From JDT1 N1 inner join OJDT N2 on N1.TransId = N2.TransId
    Where
    N2.refDate >= @FromDate and N2.refDate <=@ToDate and N1.Account in('172101' ,'172102','172105','172106','172107','172109','172108','172104') and N1.TransType='46'
    Group By
    N1.Account,N1.[ShortName],N1.Debit,N1.Credit) a
    Group By
    a.Account,a.AccountName,
    a.[Receipt],
    a.[Payment],
    Order By a.Account
    Regards,
    P.Pratap

    Hi Pratap....
    try this
    declare @FromDate datetime
    declare @ToDate datetime
    set @FromDate={?FromDate}
    set @Todate={?ToDate}
    Select
    a.Account,a.AccountName,
    sum(a.[Opening Balance]) as [Opening Balance],
    sum(a.Receipt) as [Receipt],
    sum(a.Receipt) as [Payment],
    (sum(a.[Opening Balance]) + sum(a.Receipt) - Sum(a.Payment)) as 'Closing Balance'
    from(
    Select N1.Account,N1.[ShortName] as 'AccountName',
    (sum(N1.Debit)-sum(n1.Credit)) as [Opening Balance],
    0 as [Receipt],
    0 as [Payment]
    From  JDT1 N1 inner join OJDT N2 on N1.TransId = N2.TransId
    Where
    N2.refDate < @FromDate and N1.Account in('172101' ,'172102','172105','172106','172107','172109','172108','172104') Group By
    N1.Account,N1.[ShortName]
    Union All
    select N1.Account,N1.[ShortName] as 'AccountName',
    0 as [Opening Balance],
    sum(N1.Debit) as [Receipt],
    0 as [Payment]
    From JDT1 N1 inner join OJDT N2 on N1.TransId = N2.TransId
    Where
    N2.refDate >= @FromDate and N2.refDate <= @ToDate and N1.Account in('172101' ,'172102','172105','172106','172107','172109','172108','172104') and N1.TransType='24'
    Group By
    N1.Account,N1.[ShortName],N1.Debit,N1.Credit
    Union All
    select N1.Account,N1.[ShortName] as 'AccountName',
    0 as [Opening Balance],
    0 as [Receipt],
    sum(N1.Credit) as Payment
    From JDT1 N1 inner join OJDT N2 on N1.TransId = N2.TransId
    Where
    N2.refDate >= @FromDate and N2.refDate <=@ToDate and N1.Account in('172101' ,'172102','172105','172106','172107','172109','172108','172104') and N1.TransType='46'
    Group By
    N1.Account,N1.[ShortName],N1.Debit,N1.Credit) a
    Group By
    a.Account,a.AccountName,
    a.[Receipt],
    a.[Payment]
    Order By a.Account
    Regards,
    Kennedy

  • Vendor Payment & Bank Balance

    Dear All,
    We want  the system not to process the any payment of Vendor(s) when the payment amount is more than the available balance in bank (bank G/L account).
    Eg.
    My availabe (useful) balance in (a single) house bank is 50000/- (excluding the minimum balance of 10000/-,so my total bank balance is 60000/-),now when we  process vendor(s) payment via F-53,F-58,F-48 & F110,the system must not along us to process more than 50000/-.
    Hope that SAP will be designed to take care of this requirement.
    Can you let us know how this can be acheived.
    Do suggest.
    Thanks for your time.
    Regards,

    Dear ,
    Thanks for your reply,but we assume that you have not understood our requirement clearly.
    Let us explain again.
    Suppose on a specific day my available bank balance is 50000/- and we received payment from a customer of 22000/-.
    Now the total available bank balance is 72000/- (50K+22K).
    At this point of time,if want to payment to any vendor,system must permit to make any payment upto 72K and not a single penny more that that.
    What you have suggested,it is at company code level (single time and this balance will not get changed as per my day to day bank transactions) and we want the control at day to day bank balance.
    Hope that we have made requirements clear  and expect good responce from all.
    Do suggest.
    Thanks for your time.

  • I want to change my apple store to saudi arabia Because my store was in saudi arabia but changed before to use gift card now I have 0.27$ but I DONT need it   The Error was you have a store credit balance you must spend your balance before you can ch

    I want to change my apple store to saudi arabia Because my store was in saudi arabia but changed before to use gift card now I have 0.27$ but I DONT need it   The Error was you have a store credit balance you must spend your balance before you can change stores and I have saudi credit card Used it before

    Click here and request assistance.
    (78468)

  • Simple Bank Balance Sheet Question

    I have a simple bank balance spreadsheet.
    The headers include the following:
    Date Amount Category Cleared Balance
    The category is a pop-up list, cleared is a check list
    What formula do I use to add the total amount spent in a category, for the purpose of making a spending graph? I guess I need to "look up" the "kind" in the column and then get a sum of the amount, but I am not sure how to do this. I am sure it is simple.

    This method may not be particularly elegant but I have been using it successfully for years.
    Okay, let's assume for this example that you have Columns A through E with the headers you specified, Date, Amount, Category, Cleared, and Balance. Further, you have a pop-up menu on the cells of the Category menu. Again for this example let's assume the pop-up values are "Utilities", "Food", "Clothing", and "Other". Now you need to establish 4 columns (one for each of the menu items). Let's use columns G through J. In the header of column G, type Utilities. In the header of column H, type Food, and so forth.
    Now in cell G2 enter the following formula =IF($C2=G$1,$B2,)
    Copy the formula into cells H2 through J2 (fill right) and then copy the formula from cells G2 through J2 (fill down) down the spreadsheet to as many rows as you think you will have entries.
    What this formula does is examine the contents of the Category cell and compares it to the text in the header of the column. If they match the $ contents of Amount are copied to the new cell. So, when you get done with this you have 4 columns of mostly zeros except where the categories match. Then all you have to do is at the bottom of each of the 4 columns (possibly in the footer), sum the column and you will have the individual sums for each category.
    I hope this wasn't too confusing. There may be a more elegant way and if someone knows it maybe they will post it and I'll learn too.

  • Report to view the daily bank  balances

    Hi,,
    Could any one let me know the transaction code where we can view the bank balances every day.
    I have cheked it and found a t.code S-ALR_87012336 for posting data , daily version where I can give all the bank account and view the balance as on a particular date. I am not sure how relaible it is.
    Please guide me.
    Thanks,
    Shilpa.

    Hi
    Its this t code is not working in ECC6. Please confirm

  • Bank Balance transfer from Legacy to SAP

    Hi,
    Can anyone please guide how to move bank balances from legacy to SAP? What about BRS?
    Also, how do we handle the cheques that were booked in legacy however they got bounced once the data was moved to SAP?
    Please advice.
    Thanks,
    Sanjay

    Hi,
    The bank account in legacy need to be tallied with the bank statement on the last day of the legacy system. The balance of the bank gl thus will be tallied with bank statement on the first day & the reconciliation will start from the transaction from the first day.
    For bounced cheque you can enter a normal entry to subaccount. As this entry will be in the bank statement, will not have any issue in reconciliation.
    Regards
    Milind Sonalkar

  • HT1918 I have $0.15 left in my account and I want to change to south african store but it says I must finish my balance before I change...help please.

    I have $0.15 left in my account and I want to change to south african store but it says I must finish my balance before I change...help please.

    If you can't spend it then you can try contacting iTunes Support and ask the if they can remove the balance so that you can change countries : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Updated Bank Balance - How to get?

    Dear Experts, Hi...
    It is a general practice to Create One house bank and Say two Sub bank accounts (one is for check received and another is for check issued)... here i have two doubts....
    1. Is it compalsary to create sub accounts? cont' we manage with One (House Bank) Account?
    2. If we are creating sub accounts.... how to get the latest balance...? Why i am asking this is our house bank and Bank Balance (with Banker) will match only when we completes the BRS, and usually BRS is prepared month end only. So in this case we can able to track current balance only at month end... but it is also necessary to know the updated bank balance at any given point of time... in House bank G/l account...
    Is it only way to "Hosuebank balance + Check Recived Balance - Cheque issue Balance" ?
    Please help me... is there any way to get / merge this three accounts and get one/ single net balance?

    Hi,
    If you would like to check the balance for the Three accounts which generally we maintain for Banks
    Main Bank Account + Cheque Rect+Payments.
    In that case you can go to FS10N and give all three account sequentially in to the multiple selection tab and after entering the accounts you can to the Tab of Save as variant and give the appropiate Name for individual bank account to check the balance and then in future if you would like the check the balance then directly you can access the variant specific to that bank.
    It could help you..
    Regards
    Sandeep

  • Tax, Cash and bank balances in PCA

    Dear Experts,
    How can we transfer Tax, Bank and Cash balances to PCA.
    Lets say an example document
    Db Cash - Balance sheet account
    Cr Bank - Balance sheet account
    Thanks, Ashok

    Hi,
    Assign default profit center to the balance sheet accounts. The transactions of balance sheet accounts shall automatically goes into PCA without any hitch.
    Trust this helps much and do encourage our efforts!
    Cheers!

  • HT1918 Hi,   I need to change the country for my Apple store account but this message appears "You have a store credit balance; you must spend your balance before you can change stores." but my credit is 1.58$ only and I couldn't buy any app with this amo

    Hi,
    I need to change the country for my Apple store account but this message appears "You have a store credit balance; you must spend your balance before you can change stores." but my credit is 1.58$ only and I couldn't buy any app with this amount! Any way how to fix that and I don't have a problem if I lose this 1.58 $?

    If you can't spend it then you can try contacting iTunes support and ask if they can remove the balance from your account : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Do I have to give my bank details before I can Sky...

    Do I have to give my bank details before I can Skype to Skype. See my contacts etc..

    some Skype services such as Skype-to-Skype calls, conference calls, chat and group chat, 1-on-1 video calls are indeed free of charge. However, some services such as Skype-to-mobile/landline number, group video calls, voicemail, SMS, online number, etc requires credits or subscriptions.
    The support/user guide section offers a mode detailed descriptions - https://support.skype.com/en/
    Moreover, you need to install Skype first in your computer or device. First go to the downloads section of Skype.com (http://www.skype.com/en/download-skype/) and download the installer for your computer or mobile device. Then after installing it, you can use the basic and advance features of Skype such as calls, video calls, chat, etc, etc.
    Visiting the user guide section might also help -
    https://support.skype.com/en/user-guides
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES

  • HT5035 What do i do if i only have 58 Cents left in my balance? itunes is asking me to spend the full amount of my balance before i can make a change or add a card?

    What do i do if i only have 58 Cents left in my balance? itunes is asking me to spend the full amount of my balance before i can make a change or add a card?

    You can add a card, or you can ask iTS to zero-out that balance. but you'll lose it.
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • Time Buckets with multiple Key Figures in Each

    Hello Experts, I have seen documents creation of ageing buckets and calculations but not seen any document with ageing bucket having multiple Key Figures part of it. User's have used Excel to create Bucket header and using V and H lookups they are po

  • Windows doesn't boot after removing Ubuntu: grub black screen

    I had Ubuntu and Windows installed in dual boot. I wanted to remove Ubuntu and, following suggestions online, I eliminated Ubuntu partitions. When I restarted PC I got this on black screen: "GNU GRUB version 2.02beta2-15 Minimal BASH-like line editin

  • Do I have to render?

    I have a timeline that is going to compressor to DVDSP. I added lots of MB effects but really do not have time to render the red..... do I even have to? Will it effect the quailty of output to DVDSP? I am unconcerned with playback. Thanks in advance

  • CRM config details required

    If I create an order in CRM, it has a status being updated stating 'Open' and so on. I have found the corresponding value of Open Status is 'E0002' its obtained from CRM_JEST database table. Can I know the master table for the status which contains t

  • How do I delete an email from my ipod but not actually delete the account in general?

    I don' t have an image