How to check bank acc state(beg&end balance) in a specific date or period

Hi all
My customer is using GL, AP and CM.
I have set up different bank accounts in AP. After the payment is registered, the user does even the reconciliation with the bank account.
I am having trouble to find a report or a place in the system where i can inquiry for the state of the bank account(beginning and ending balance) in a specific date or period.
I have seen these kind of reports in more simpler programs, so it is strange that i can not find these kind of reports in oracle.
An example:
If i run one of these reports with beginning and ending date i want to see state of the bank account before beggining date, movements during these period and ending balance after these period.
Can you please help me because my customer wants this and i have not been able to give an answer until now. He has some local software which has this kind of report and now it is trying to change to oracle financial, but I still could not find this kind of information he wants from oracle.
Please help
Thank you and best regards
Ernest

There are 2 concepts attached to a bank balance. The balance as per your books of accounts and another is the balance maintained with the bank. I believe i need not explain these 2 concepts. These 2 balances can be obtained from Oracle system provided some of prerequsities are met with.
Balance as per your books - This is nothing but the GL balance available. In order to obtain balances for each bank accounts, it is advised that each bank account should have a separate account code combination. This is achieved generally by having a separate natural account for each bank. The code combination is attached to the cahs account for each bank. By maintaining separate account code combination, the balance in each code combination can be obtained from GL (provided transactions are accounted and posted in GL). These balances represent the balance for each bank according to your books of accounts. You can create an FSG for this purpose and provide the same to the customer, so that they can run the same whenevr they want.
Balance as per bank - This balance is maintained by oracle in 2 ways - either the bank balance can be manually entered for each bank account for each date (quite cumbersome). Else, while loading the bank statement, the bank balances are also loaded. There are various types of bank balances stored - value dated balance, available balance, float balance etc. Depending on the balances provided by bank along with the bank statement, the bank balance can be recorded in oracle system. After the bank statement is uploaded and balances stored, standard cash management reports are available to query for the bank account balances. In order to view daily movement, the bank statement should be loaded on daily basis.
Hope this helps.
Vinit

Similar Messages

  • How to check whether gather stats job is running or not in OEM

    Hi,
    People in our team are saying that there is an automatic job is running in OEM to gather the statistics of the tables. Also it decides which table needs to be gather stats.
    I have not much idea in OEM (Oracle 10g), please let me know how to check the job which is gathering the statistics of tables and where to check that job.
    Thanks in advance,
    Mahi

    You may query dba_scheduler_job_log like
    SQL> select JOB_NAME,LOG_DATE,STATUS from dba_scheduler_job_log;There you should see the GATHER_STATS_JOB and its runnings.

  • How to check my HDD state (apps, logs)?

    Hi. My Arch linux "server" is working fine for ~4 years on a simple desktop box. Lately there were no problems with it at all. And i never worried about the hardware state. But now i have to fill out a form once per week about every server's health state. There is no problem with winbox But with linux I'm a bit lost. There is no graphical environment. So i can only use cmd tools, also i can get logs via ssh and open them in my text editor. I know there are such tools like fsck (i use ext3 file system). But to use them my partitions should be unmounted. I dont want to stop or reboot my server, so maybe there is some other way to check this while server is running? Probably not. Then the second question would be what logs should i check and what errors should i worry about. I mean, i can open all these logs in /var/log and i can see a lot of information here, but i just dont know what to look for. What are the common I/O errors showing that something is wrong with my hard disk or file system? Where does fsck save its results?
    Thanks

    Well, I would say that if any error is really a concern to the system then it will make sure that you pay attention to it because something will stop working
    You said it yourself, the box has been running fine for 4 years. If anything is to break down then there is nothing you can do I guess. Like Procyon said the hard disk's smart is almost a placebo, it will tell you about the really serious errors, like not being able to read or write but your programs will start complaining about that too as soon as it happens (keep and eye on the reallocated sector count value, if it is not zero and if it's increasing change the hd asap).

  • How to check Berkeley db stats?

    Is there a way of seeing stats for Bdb like cache hits/misses etc? I found this article (http://pybsddb.sourceforge.net/ref/am_conf/cachesize.html), but I don't know how to access it from the java edition.
    Another question is, in the java edition, is there a way of specifying the cache size to 0? Can I set it in the environment config, like setCachePercent(0)? In order words, I want the user to fetch data from the disk each time, as opposed to cache. The reason I want to do this is I want to see the performance impact of reading from the disk vs reading from the cache.
    Thanks.

    The FAQ is located here: http://www.oracle.com/technology/products/berkeley-db/faq/je_faq.html
    It describes how to read the stats.
    Charles Lamb

  • How to check the number of rows in a table with input data?`

    Dear all,
    I am having a table ( with declaration of 5 rows during the init ) there's a next button which will add another 5 rows by pressing. Let say the user ony key in 7 rows of data.. how should i track it? coz these data act as input to my bapi function. One of the input field of my bapi is to state how many rows of data that a user had key in. Thank you.

    I think ur problem is empty records, u dont want to process empty table rows.
    m I right?
    if yes then just before processing the data / records, check for empty records and remove unwanted rows from the node.
    for (int i = 0; i < TableNode.size(); i++)
             if all cells of row(i) are empty
                   remove row(i) from Table Node.
    OR if you dont want to remove empty rows from display (screen), then at the time of processing, transfer useful rows to a separate node and process that node.
    Best Regards
    Deepak

  • [JS CS3] Check the pattern of a random number given a specific data ?

    Hi all,
    I succeed getting a random number of this look : d.dd (8.73 for ex)
    I use Math.random()*(max-min)+min;
    I want to check that this number respect a specific given increment.
    To be clear :
    If I set min to 0 and max to 10 for example.
    The script returns a number like 8.56
    Now, I have a increment like 0.2
    I want the script to give me a number that can be d,d.2,d.4,d.6,d.8
    BUT NOT d.78 or d.1
    I guess I may use a while command but have no idea of the checking operation.
    Any idea ?
    Thanks in advance.
    Loic

    Math to the rescue. You want a random integer div 5.
    Math.floor(5*(Math.random()*(max-min)+min))/5 should do it.

  • How do I create a channel that is made up of specific data from other channels?

    How do I index a specific element of a channel?  Specifically, if I have a channel of data that is 100 elements in length.  Can I create a new channel that is the sum of the 2nd, 10th, and 19th elements of my original channel?
    Thanks,
    Matt

    After searching the message boards I came across this reply:
    Dave,
    I had previous built an example to perform the data reduction of every Nth point. As Otmar points out, it does have to be done in a script, but this example should simplify things for you:
    Reducing a Channel in DIAdem by Pulling Every Nth Point
    If you have any questions about this, please let us know. Thanks and have a good one.
    Adam B.
    Applications Engineer
    National Instruments
    I downloaded the script, and extracted the useful information.  However, when I execute my new script I recieve the error: 
    Error in ReducChannelTest2 ... Unknown Runtime Error
    The code I am executing is
    Call ChnAlloc("Newerror0")
    Call ChnAlloc("Newerror1")
    chd(1,"Newerror0") =chd(21,"error0")
    chd(2,"Newerror0") =chd(41,"error0")
    The error0 channel is 101 elements in length.  Any thoughts?

  • How do I schedule my server to boot up on a specific date and time

    Hi,
    I'm quite new to this, I just want to know i there is a more flexible way of scheduling Snow Leopard Server's on/off. I have a Mac Pro running on Snow Leopard Server v10.6.6 and the Schedule feature inside System Preference - Energy Saver is not enough for the need of the small company that I'm currently taking care of. Is there a program / script or anything that can help me automate this task. I'm sure I'm not the only one who have this kind of question before.
    Any help would be appreciated.
    Regards,
    Andrew

    IT guys that have servers hold bragging rights based on up time...  Hehehe... It's unusual to have a need to turn a server off for a scheduled time, but if you have to, then you could try this.
    I know that it works on clients, but I've never seen it work on a server.
    This is the code that I use on my clients...
    pmset repeat shutdown MTWRFSU 20:00:00
    pmset repeat wakeorpoweron MTWRFSU 06:45:00
    Have a look here.
    -Graham

  • How do I automatically transition from page to page (on a specific date and time)??

    I am trying to make a site that contains multiple pages. Each page will have one full screen image. (its a schedule) I would like be able to have my pages change at specific times throughout the day. Is there a way in muse to tell the pages when to change?

    I believe you are referring to change of image on page with specific time within a day.
    Please refer to this post for details :
    https://forums.adobe.com/thread/1757607
    Thanks,
    Sanjit

  • How to check whether a file is present in the UNIX directory of app. server

    Hi,
            I am creating files in the UNIX directory in the application server using :
                       CONCATENATE '/sapmnt/RD1/interfaces/client670/'
                       p_fname '.CSV' INTO w_filename.
               OPEN DATASET w_filename FOR OUTPUT IN TEXT MODE.
              LOOP AT t_output1.
                      TRANSFER t_output1 TO w_filename.
              ENDLOOP.
             CLOSE DATASET w_filename.
    I am unable to check whether a file with the same name exists or not. How to check the duplicate state of the file.

    You can use the following fm
    RZL_READ_FILE
    or
    use OPEN DATASET FOR INPUT.

  • How to check IBAN activation?

    Hi all!
    I have to modify a program which is quite old and which used table TIBAN_ACTIVE in order to check the IBAN activation.
    Today table TIBAN_ACTIVE does no more exist. Then how to check that an IBAN has been activated? Using the date "VALID_FROM" from table TIBAN is a good way or must I look for somehing else?
    Thanks for your help,
    David

    Use [search tool|http://www.sdn.sap.com/irj/scn/advancedsearch?query=check_iban_active] to find threads like Obsolete function module  CHECK_IBAN_ACTIVE
    Regards,
    Raymond

  • How to full restore OS X state to a specific date from Time Machine backup?

    Hello! Could someone please advice how to restore the state of my iMac to a specific date?
    NOT to the latest backup?

    The only way I found to make a full restoration of OS X to specific date from a TM backup is to launch OS X in recovery mode (Cmd+R during startup) and then choose "Recover from Time Machine". Full restoration took approx 2 hours.
    Dislike it very much. During my being a Windows user I could roll back in a matter of minutes with system utilities

  • How to check value is numeric or not

    hi how to check whether a value is numeric or not.
    example.  data : x type n.
              x = 12345.
    Now how to check whether X contains numeric value or not.

    Hi,
         If your type is 'N' there is no way that 'X' can have any value apart for numberics (i.e. 0 - 9).
    You can also check that as follows.
    Data: num_list(10) type c value '0123456789',
          x type n.
    X = '12345'.
    This is more useful if your X is of type C.
    if X CO num_list.
    Its only numeric
    else.
    its contains non numeric
    endif.
    Regards,
    Sesh

  • GL Account Ending Balance not transferred to next period

    hi,
    we are working in oracle applications 11i.
    in oracle general ledger from the standard report: account analysis ,the user is found that the ending balance for account 123 for ADJ period 2010 is 333.
    the same account has no beginning balance for Jan 2011. The account is the material account of an inventory organization.
    updates: in another account analysis report: Period JAN-11 is not in the LOV of ending period !!!!
    any clues please....
    Edited by: AHS on Feb 6, 2011 3:56 AM

    Regarding balances, there are two types of accounts:
    Accounts whose balance is kept from one year to the other (Asset, Liability, etc.)
    Accounts whose balance is cleared at the end of the year and the new year begins with a zero balance (Profit and loss, Expense accounts).
    You may need to check which kind of accounts you are using.
    By
    Vamsi

  • How to check event.target type in "if" statement

    Hi, i have "roll over" event listener and i would like to that works only with MovieClips (without textfields etc.). I would like to write something like that:
    if(event.target == MovieClip){ do something }
    else { do something else}
    This doesn`t work properly.
    How to check type of event.target in "if" statement?
    Thanks for any help.


    if(getQualifiedClassName(event.target) == "flash.display::MovieClip"){ do something }
    else { do something else}
     .

Maybe you are looking for