Cash Book and Bank Book

Hi,
Please revert with the reasoning of maintaining a seperate cash book and bank book by any corporate in SAP. We have been debating on this for quite long time, but are unable to get any satisfactory reply.
Kindly revert.
Many thanks
Best regards
Anish Goyal

Hi Anish,
Cash Book: All cash transactions are entered in the cash
book straightway, and ledger accounts are prepared on the
basis of such records.  Hence, Cash Book is considered as a
Subsidiary book.  Cash book is again a ledger and a
principal book since, it serves as cash account and book
account, the balances of which are recorded in the traial
balance directly.  Cash book has debit and credit sides. 
All receipts are entered on the debit side and all payments
are enetered on the credit side.  It is maintained under
the Double entry principle.
Feature of Cash Book:
1. All cash receipts are cash payments are entered
chronologically in the cash book
2. It never shows a credit balance
3. It serves both the functions of Jounal and Ledger
sumultaneously.
Cash Book is prepared by Propwriter. Pass Book is
prepare by Bank peoples. After transaction take place both
of them pass the Entries .
   Cash Book shows Dr side Receipt & cr side Payment But in
pass book Dr side payment & cr side Receipt .
   This 2 are measure difference between Cash Book & Pass
Book
Regards,
Haribabu

Similar Messages

  • Cash payment and bank transfer

    Hi all,
    When some advance cash payments given to the employee in the middle of the month, how we normally incorporate this payment into the system with respect to bank transfer and posting to accounting activiites.
    Regards,
    Celine

    How does the "advance cash payment" work?  Do you give cash to the employee, does the accounting department make the payment (check or EFT) or does payroll execute an Off-Cycle Payment Run to generate the advance (check or EFT) ?
    If the payment is done "outside" of payroll, then you should create one (recuperation) to three (advance, recuperation, balance owing) WTs to manage the situation.
    The "Advance" WT should not generate a new payment if it is only to record something done with cash or through Finance.
    The "Recuperation" WT should deduct from the employee's net pay, and should be posted to FI/CO according to your situation.

  • Gl wise Daywise Cash book and bank book report

    Hi all,
    Please tell me the tables and fields to create new reports - Gl wise daywise Cash book and bank book reports .
    or tell me any BAPI is there.
    send me any source u have.
    Thanks in advance
    regards,
    Chandu
    Edited by: GoldMoon on Aug 28, 2009 4:56 PM
    Edited by: GoldMoon on Aug 28, 2009 5:07 PM

    Hi Chandu,
    In FAGLFLEXT, every period has a field. The period is the suffix for the field.You will have field for transaction currency as well as local currency in the table period wise.
    All FI entries are posted to BKPF (header data) and BSEG (Line item data). From BSEG, dependingon the account type (KOART), the line items are copied to secondary tables like BSIS (open items) and BSAS (cleared items). you need not pass any additional data like xopvw. Entire BSIS contains open items and BSAS contains cleared items.
    What you need to do is pass the GL accounts (Bank GL accounts) to BSAS and BSIS tables along with the posting date (BUDAT) for which the report is to be run. From the input date, determine the period (use function module). To get the opening balance you will fetch value from FAGLFLEXT for the previous periods and then for the current period till the previos day from BSIS and BSAS.
    For example say the input date is 02.09.2009 and the fiscal period (monat) for this date is 6. Go to FAGLFLEXT, pass the GL account and fetch values for the period 1 to 5 and sum it up. Then go to BSAS and BSIS pass the GL account and posting date from 1st of the month to previos day (input date - 1). Add this to the value fetched from FAGLFLEXT.
    Care needs to be given  given to the debit and credit indicator in the tables for the line item.
    Hope this gives you a better idea.
    Thanks and Regards,
    Anit

  • CASH AND BANK DAY BOOK

    Dear Freinds
    Where can i find Cash & Bank Day Book ..I am using Sap B1 2007B..
    Is there any Journal Register in SAP B1 2007B
    Waiting for your reply
    warm regards
    anand

    Dear Anand,
    You can view journal register on following path
    Financial - Financial Report - Accounting - Transaction journal report
    select the journal document type to see the particuler register.
    and for cash & bank flow you can see
    Financial - Financial Report - Financial - Cash flow
    select appropriate cash account and time interval daily.
    Regards
    Datta Kharat

  • Cash and Bank book

    HI
    My clients wants the separate day book for cash and bank...
    Ho can we do this????
    since our people defined bank accounts as 'Cash accounts' in chart of accounts...
    so any idea.....

    Hi,
    Check below links for cash book/bank book report queries :
    Re: Cash Book Report
    CASH AND BANK DAY BOOK
    Thanks,
    Neetu

  • Cash book and bank book - functional specs

    Hi,
    I have one more issue.
    my client has given some format for cash book and bank book format.
    they need that these two should come in SAP
    could you please tell me how to write Functional spec for this and how to develop through abaper

    Hi,
    SAP has provided the standard program for Cash Journal (FBCJ) there is no other method of posting it.
    May i know that why your client dont want this format.
    This format is accepted & Used world wide .
    Regards,
    Shayam

  • Cash Book And Bank Book Report

    Dear Experts,
    I want the  Case Book and Bank book report in Sap B1 .
    please tell me ,how i will take these report from SAP b1

    SELECT
            DocNum,
            STUFF((SELECT ', ' + CAST(DocEntry AS VARCHAR(MAX)) AS [text()]
                    FROM RCT2 b
                    WHERE a.DocNum = b.DocNum
                    FOR XML PATH('')), 1, 2, '') AS DocEntry
    INTO #Invoices
    FROM RCT2 a
    GROUP BY DocNum
    ORDER BY DocNum
    SELECT T0.TransId,  T0.Account, T0.Debit As Credit, T0.Credit As Debit, T0.ShortName, T0.ContraAct, T5.CardCode As Code, T5.CardName As Name, T0.TaxDate, T0.DueDate, 'Ch.No. ' + Cast(T4.CheckNum As VARchar) + ' Rec. No. ' + Cast(T4.RcptNum AS VARCHAR) + ' ' + IsNull('Invoice No. ' + T3.DocEntry, '') + ' ' + IsNull('Clear Date ' + Convert(VARCHAR, T2.MthDate, 103), '') + IsNull(T0.U_Narration, '') AS U_Narration,
    T0.TransType, T0.BaseRef
    INTO #Ledger1
    FROM JDT1 T0
    INNER JOIN OACT T1 ON T0.Account = T1.AcctCode
    INNER JOIN JDT1 T2 ON T0.TransId = T2.TransId AND T2.Account = @CashAccount
    LEFT JOIN OCHH T4 ON T0.TransId = T4.TransNum AND T0.Ref3Line = T4.CheckNum AND T0.Credit = T4.CheckSum
    LEFT JOIN OCRD T5 ON T4.CardCode = T5.CardCode
    LEFT JOIN #Invoices T3 ON T4.RcptNum = T3.DocNum
    WHERE T0.ContraAct = @CashAccount
    AND (T0.ShortName NOT LIKE 'S%' AND T0.ShortName NOT LIKE 'C%')
    AND T0.TaxDate BETWEEN @Start AND @Finish
    AND T0.TransType = 25
    UNION ALL
    SELECT T0.TransId, T0.Account, T0.Debit As Credit, T0.Credit As Debit, T0.ShortName, T0.ContraAct, T1.AcctCode As Code, T1.AcctName As Name, T0.TaxDate, T0.DueDate, T0.U_Narration, T0.TransType, T0.BaseRef
    FROM JDT1 T0
    INNER JOIN OACT T1 ON T0.Account = T1.AcctCode
    WHERE T0.ContraAct = @CashAccount
    AND (T0.ShortName NOT LIKE 'S%' AND T0.ShortName NOT LIKE 'C%')
    AND T0.TaxDate BETWEEN @Start AND @Finish
    AND T0.TransType <> 25
    UNION
    ALL
    SELECT T0.TransId, T0.Account, T0.Debit As Credit, T0.Credit As Debit, T0.ShortName, T0.ContraAct, T1.CardCode As Code, T1.CardName As Name, T0.TaxDate, T0.DueDate, T0.U_Narration, T0.TransType, T0.BaseRef
    FROM JDT1 T0
    INNER JOIN OCRD T1 ON T0.ShortName = T1.CardCode
    WHERE T0.ContraAct = @CashAccount
    AND (T0.ShortName LIKE 'S%' OR T0.ShortName LIKE 'C%')
    AND T0.TaxDate BETWEEN @Start AND @Finish
    SELECT T0.Account, Sum(T0.Debit) As SumDebit, Sum(T0.Credit) As SumCredit
    INTO #OpeningBalances
    FROM JDT1 T0
    WHERE T0.TaxDate BETWEEN @YearStart AND DateAdd(dd, -1, @Start)
    AND T0.Account = @CashAccount
    GROUP BY T0.Account
    SELECT 0 As TCode, 0 As TransId, T0.Account, T1.AcctName, T1.GroupMask, T0.SumDebit - T0.SumCredit As Debit, 0 As Credit, 'Dr.' As BalType, '' As Code, '' As Name, '' As TaxDate, '' As DueDate, '' As U_Narration, T1.AcctCode As Code1, T1.AcctName As Name1, 0 As TransType, '' As BaseRef
    FROM #OpeningBalances T0
    INNER JOIN OACT T1 ON T0.Account = T1.AcctCode
    WHERE T1.GroupMask = 1
    Or T1.GroupMask = 5
    UNION
    ALL
    SELECT 0 As TCode, 0 As TransId, T0.Account, T1.AcctName, T1.GroupMask, 0 As Debit, T0.SumCredit - T0.SumDebit As Credit, 'Cr.' As BalType, '' As Code, '' As Name, '' As TaxDate, '' As DueDate, '' As U_Narration, T1.AcctCode As Code1, T1.AcctName As Name1, 0 As TransType, '' As BaseRef
    FROM #OpeningBalances T0
    INNER JOIN OACT T1 ON T0.Account = T1.AcctCode
    WHERE T1.GroupMask = 2
    Or T1.GroupMask = 4
    UNION
    ALL
    SELECT 1 As TCode, T0.TransId, T0.Account, T1.AcctName, T1.GroupMask, T0.Debit, T0.Credit, '' As BalType, T0.Code, T0.Name, T0.TaxDate, T0.DueDate, T0.U_Narration, T1.AcctCode As Code1, T1.AcctName As Name1, T0.TransType, T0.BaseRef
    FROM #Ledger1 T0
    INNER JOIN OACT T1 ON T0.Account = T1.AcctCode

  • Cash Book, Bank Book & Purchase Register

    Hi ABAP Gurus
    I want to print Cash Book, Bank Book & Purchase Register from my SAP ERP System. I do not have any ABAP Programmer for which reason I cannot develop any ABAP Program for the same. Can any one of you send me the ABAP Programs to print Cash Book, Bank Book and Purchase Register ASAP ?
    I will offer you maximum number of points if you do the needful.
    Thanks & Regards

    >
    Anil Manke wrote:
    > Hi ABAP Gurus
    >
    > I want to print Cash Book, Bank Book & Purchase Register from my SAP ERP System. I do not have any ABAP Programmer for which reason I cannot develop any ABAP Program for the same. Can any one of you send me the ABAP Programs to print Cash Book, Bank Book and Purchase Register ASAP ?
    >
    > I will offer you maximum number of points if you do the needful.
    >
    > Thanks & Regards
    Then you need to find the money to hire an ABAPer or jusy do without the requirements.
    Do you really think people will spend time doing development for you in return for SDN points?!  Most people I know work for money.  SDN points do not clothe or feed a family...

  • Cash Book & Bank book

    Hi All,
    I need two reports. Cash book and Bank book. What will be the query?
    Regards,
    Rupa Sarkar

    Hi Rupa....
    Its always beneficial to suggest system default reports for finance........
    So suggest the same to your client....
    There are many good reports which your client should take interest....
    Regards,
    Rahul

  • Cash Book & Bank Book Reports in FI

    Hi FI & ABAP-FI Gurus
    I am looking for reports for Cash Book and Bank Book. Can anybody tell me any *_Standard Program_* for getting report for Cash Book and Bank Book OR can anybody send me 'Z' program to get report for Cash Book and Bank Book.
    Thanks & Regards

    Hello Anil,
    Standard reports for Cash book & Bank book
    Cash Book
    Cash Journal : T.code FBCJ
    Report - S_ALR_87012309 - Print Cashbook
    You can also try this report
    J3RFCASH15 - Cash Journal Reports
    Bank Book
    There is no standard report for Bank Book
    S_ALR_87012348 - Cashed Checks per Bank Account
    S_ALR_87012349 - Outstanding Checks Analysis per G/L Account and Vendor
    Please let me know if you need more information.
    Thanks
    Para

  • Standard report for cash book & Bank book

    Hi Guru's,
    Please tell me the transaction codes for reporting cash journal & Bank book in standard sap
    Thanks.
    Santosh Rothe

    Hi,
    For standard report for cash book & Bank book
    Cash Journal : T.code FBCJ
    Report -  S_ALR_87012309 - Print Cashbook
    You can also try this report
    J3RFCASH15 - Cash Journal Reports
    For Bank Book
    There is no standard report for Bank Book
    S_ALR_87012348 - Cashed Checks per Bank Account
    S_ALR_87012349 - Outstanding Checks Analysis per G/L Account and Vendor
    Please let me know if you need more information.
    Regards
    Sridhar M

  • Reports  on ( G/L Account  ,  sub ledger,  cash book &bank book.)

    Hi,
    can any body tell me  how to write a program on reports  for  G/L Account,
    sub ledger,
    cash book and bank book,
    plzzzzzzzzzzz  soonnnnnnnn

    hi expertss,
    can any body  explain me abt these G/L Account

  • How to get Apple ID and password that is different to iTunes store account which I have already activated and completed contracts, tax information and bank information I want to create a Paid Books Account use apple ID

    I was given this address from the Apple customer support team.
    I have an active existing iTunes store account and use the same Apple ID for signing into my iTunes Connect Account that distributes Apps.
    I have created some books using the iBook author and in order to distribute content on the iBookstore I have been told electronically that I need a new Apple ID and password that is different to iTunes store account which I have already activated and completed contracts, tax information and bank information valid until 2013?
    I want to create a Paid Books Account using the same email address, tax information and bank information. This has been most frustrating, as I cannot get passed the sign in section and there is no contact person I can speak to. I was of the understanding the iTunes connect account and the Developer programs which I paid good money for is all what I needed to be paid for selling iBooks on the iBookstore???
    I only have one email address and wish to also use it for the Paid Books Account. I have books ready to be exported and published.
    I am also having trouble locating and downloading iTunes Producer. I understand I need to have the Paid Books Account active to access the iTunes Producer program. Please help.
    See additional information below:
    What device did you use to connect to the store?  Mac computer
    Which operating system is installed?  Mac OS X v10.7.x
    What version of iTunes is installed on your computer?  iTunes 10.6
    Choose the iTunes Store or App Store for your country:  Other
    Please select your country:  Australia

    Hi Lrwill,
    If the apps that are on your son's iPad were purchased under his Dad's Apple ID, then signing your Apple ID onto the iPad will not help you with updating those apps.
    Also, if the iPad was sync'd with his Dad's iTunes library, then hooking it up to your computer/iTunes library, will require you to reset the iPad, and everything that was loaded under the other Library and Apple ID will be wiped out.
    Can you provide a little more info about what was set up under which Apple ID and what iTunes library the iPad was sync'd with?
    Cheers,
    GB

  • Day book,cash book,bank book in sap

    In where we use day book,cash book,bank book in sap
    can anybody tell me please..
    rgs

    We create GL Accounts for it at FS00

  • Unable to print Remarks field from InBank book & Cash Book Reports

    Hi,
    for this bankbook and cashbook reports, we are using Financial Reports-> Accounting -> General Ledger
    in this General Ledger Interface, "BP and Accounts" are two types. For both of modes, i am using same PLD Report.
    I draged the Outgoing payment Remarks  and Incoming Payment remarks  on the Report, but i am unable to see the Remarks data on the report. when i drag the "Journal Remarks" field it is displaying on the report.
    -How to bring the "Outgoing Payment and Incoming Payment Remarks " in General Ledger (Bank book & Cash Book)
    - for bank book and cash book,   General Ledger is the right Report or any other?
    plz hep me asap. urgent.
    Regards,
    Nagababu

    I don't think you would be able to add Outgoing payment Remarks and Incoming Payment Remarks to this template. They are neither available for display nor is the OVPM or ORCT tables available to be added as a table to the PLD.
    Suda

Maybe you are looking for

  • IPod Nano just froze for apparently no reason

    I have never once had a problem with my iPod Nano. I've never dropped it, scratched it or done any damage to it what so ever. (I've had it for about 3 months now) Just a few minutes ago I was listening to some songs on it. I hit the pause button and

  • Multiple datasource with a sub-report with Java

    Hi All, I have a group of data from which I will create subset to separate on a group. Now, I have multiple (say 3) datasets with me for which I want to perform the following tasks: Add first dataset to the databasecontroller, after adding the datase

  • Duplicate email replies in Mail?

    When I reply to someone and I look at the 'chain' conversation, all of my replies are shown twice on my screen, but the other person is only seeing 1 of them like they should. What's going on?

  • Data sharing between OSX and WinXP/Vista partition in boot camp

    Due to software and external hardware issues, i need to revert back to an XP/Vista setup but would like to keep 1 computer to minimise having multiple copies/versions of data e.g. music, video, photos and office related docs. If i perform a boot camp

  • Error starting essbase applications

    Hello specialists! I'm having a problem restarting the essbase applications. When i restart the essbase i receive the following error message in the applciation log: [Thu Jun 21 12:57:34 2012]Local/PlanApp///3348/Error(1019005) Unable to Read [E:\Hyp