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

Similar Messages

  • 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 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

  • 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

  • How to export Date book and Address book from Palm Desktop to Apple iCal and Address Book?

    I have my calendar information and addresses stored in Palm Desktop date book and address book, respectively. I am running Palm Desktop 4.2.1. Everytime I try to export the date book or address book to my desktop using the vCal format, the Palm desktop crashes. My goal is to export all my data from Palm Desktop to iCal and Address Book on the Apple OS (10.6.1). Does anyone have any advice as to how I can do this or do I just have to start from scratch and manually enter the data from Palm Desktop to Apple iCal and Address Book? I looked at the Missing Sync software, but I don't think this will do the trick. The Genius Bar at the Apple Store didn't offer any solutions either. Any advice would be greatly appreciated. Thanks.
    Post relates to: Palm V

    Hello tay8000m and welcome to the Palm forums.
     Have you tried running the "Repair Disk Permissions" command in Apple's Disk Utility application yet?  Launch Disk Utility, select "Macintosh HD" from the left side of the window, and then click the "Repair Disk Permissions" button.
     After the utility has run, try launching Palm Desktop again and then exporting your data as vCard or iCal files.  If the exports aren't working for you, you can always export the data as comma separated values (.csv) file and then import that into the Apple apps you want to use.
    Alan G

  • How to synchronize Address Books and Calendar Books in Mavericks 10.9.2, I am unable to synchronize my Address and Calendar Books informations with my iPhone 4 via iTunes

    Since I updated my MacBook Pro's OS X version 10.6.8 to Mavericks 10.9.2, I am unable to synchronize my Address and Calendar Books informations with my iPhone 4 via iTunes.  What do I need to do to update these data ?

    I cannot synchronize the Address Book and Calendar data, even by means of iCloud or similar servers.  It appears these data are not selected automatically during synchronization. How can one select Address Book and Calendar Book in Mavericks for synchronization ?

  • 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

  • Calibre type function in organizing my scanned pdf books and make it functional for index

    After scanning books and articles into pdf digital format whats next? Need to make it functional. Index books and able to use it like a library function.
    Medical info - type in words and search the library of digital files? How is it done.

    Hi Titonull,
    You may check this video to create bookmarks: http://tv.adobe.com/watch/acrobat-x-tips-tricks/how-to-add-pdf-bookmarks-to-a-document/
    Also you may check other video tutorial for Acrobat: Acrobat X Tips & Tricks | Adobe TV
    Regards,
    Ajlan Huda.

  • Differing asset tax book and accounting book when the currency is foreign

    Hi Asset Gurus,
    My company has this requirement that when the asset is acquired in foreign currency there will be acquisition posting on Accounting Book (area 01) but zero on the Tax Book (area 15).  They said this is in conformance with the reporting standard.  Can anyone give me an idea how can this be done in the asset accounting?  Do I need to setup new depreciation area just for this requirement?
    Thanks,
    Aloy

    Thanks AP for your reply.  Please bear with me a little bit as I still don't see the complete picture.  Currently this is what's happening:
    When the acquisition is made in foreign currency, both depreciation area 01 (accounting book) and area 15 (tax book) gets updated with local currency value (APC).  Now the requirement is to make tax book area not posted to everytime this situation happens.  We don't really need to have the foreign currency amount reflected in the asset.
    Given the requirement description above, do you still think parallel currency in FI and additional depreciation area would be the solution?  If yes, could you kindly expound further on that solutions please?
    Thanks a lot for your help.

  • Quality of books in aperture compared to asuka books and blurb books?

    Compare the qualtiy of Aperture books to Asuka and blurb books...how do they compare? 

    Aperture books are comparable to Blurb with regards to printing, but slightly better quality with regards to binding. Paper is comparable to premium paper @ Blurb, but maybe a tad thicker. Never used Asuka, so can't tell your anything 'bout that.

  • Backup software, difference between "address book" and "address book - all"

    hi i have backed up successfully, what i would lke to know for when i restore is what is the difference between "address book" which has 313 contacts and "address book - all" which has 465 contacts, i wonder if one is my hone contacts and the other includes my email contacts, which will be important when i change work, thanks

    Hey sheepshead,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    This is caused by having multiple address books on the BlackBerry smartphone.  This can also cause syncrhonization issues, I would suggest following the steps in this KB article to make address book number the same as address book all: www.blackberry.com/btsc/KB19704
    Let me know if you have any more questions.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • 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.

  • Choosing between Mac Book and Mac Book Pro??

    Hi,
    I need a laptop for school and to do a bit of Photoshop and HTML but i don't no wich Macbook should i choose. Here is why im confuse :
    I saw this add of a Mac Book Pro 2.53 (320g 7500rpm-4gig RAM) with apple care for 2500$ new and sealed but im not sure if its what i needed.
    On the other hand i tough of buying a bran new MacBook 2.4 (1749 cnd$) and upgrade the RAM to 4 gig wich will cost me 150$ + the apple care.
    My question is wich one is better and would you trusted the buy a NEW used Mac Book Pro. The guy said that he has all the receipt and he's selling it because he want to buy a MacPro. Apple give im a new labtop because is older one has to many repair to do.
    Awaiting for your comment/suggestion on what you would do.
    Tks

    Well, I can only offer my advice as to what I would do. Everyone is different, but here it goes.
    If you're not doing anything super intensive (HTML/Photoshop plus your usual web-browsing isn't too intensive) you'll have more than enough computer with the 2.4 MB (even without the RAM upgrade! But it can't hurt to do the upgrade if you're wiling to spend the money).
    Personally I wouldn't want to take over someones laptop. Let me ask a few questions about the computer listed and some exchange rates.
    2.53 MBP, is that the previous model, or the UniBody. And that $2500 is in Canadian I assume (because the new 2.66 UniBody is $2499 US). If it's the previous model it doesn't even appear to be much of a discount for being used.
    My feelings are that the person is getting rid of the laptop for a reason. If they were 100% happy with the product, they wouldn't be looking to upgrade to a new computer.
    I'd go with the 2.4 MB if I were you. I'm very happy with mine. It'll be enough computer for at least the next 4 years (if taken care of).
    Hope that helps. Cheers.
    Message was edited by: cph2133

  • Can mac books and mac book pros share the same accesories?

    I am getting a mac book but I have a friend with some accesories like a keyboard cover and a hard cover for her mac book pro that she is getting rid of. Does any one know if it would still fit? She has a 13'' mac book pro.The only reason why I am asking is because I wont have my mac book for another 2 months.

    The difficulty with these particular accessories is that it's difficult to judge whether the sizes are exactly the same, or at least close enough to work. There's no guarantee and I don't think there's any easy way to tell.
    In your situation I would buy the accessories from your friend, then when you get your MacBook see if they fit. If they DON'T fit then put them on eBay and get your money back for them.
    Or maybe ask your friend if she will hold off selling them until you get your MacBook and can try them.
    Bob

  • 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

Maybe you are looking for

  • Regarding Vendor's list in E-Recruitment

    Hi, Is it possible for Recruiter to select the vendor list for posting the job requisition. He should be able to view the list of all vendors in the country/location where he is working.

  • Which filetypes does iMovie support?

    I recently recorded some HDV footage (.M2T mpeg) for someone else to edit in iMovie. I added a soundtrack in Adobe Premiere on a PC and need to export it out. Should I convert it to something else? Alex

  • Small crack on my 4s

    small crack on my 4s just the glass broke not LCD screen how much would it cost me?

  • Telling if client is on N in 891W router

    We have an 891W wireless router on which we have enabled 802.11n speeds. When we connect with a 802.11n laptop client, it seems to be connecting on non-N data rates. We're trying to figure out if we've missed something in configuring the router or so

  • In email mailboxes where do I find edit to name folders?

    Manual says use edit to create folders but I do not see edit button in mailboxes.  Where do I find edit?