How to determine which entries of Bank statement have not got cleared

Hi Friends,
                  We are uplaoding bank statement using TCODE :FF67 .
  We observe that certain errors are found during clearing process . Currently we go into SM35 and individually check each error full transaction for details.
Is there any means / standard or customised developed report to get these outstanding entries of bank statement which have not been cleared .
  Will appreciate to have the report logic or code in case it is a customised solution ??
Please let me know further if you have any query .
  Thanks in advance

Hi Julian,
Table before sorting:
Date
Detail
Transaction
Balance
8 Jan 2012
a
-100
whatever
7 Jan 2012
b
-24
whatever
6 Jan 2012
c
-33
whatever
5 Jan 2012
d
-450
whatever
4 Jan 2012
e
-115
whatever
3 Jan 2012
Salary
4999
whatever
I wish
2 Jan 2012
f
-457
whatever
1 Jan 2012
g
-10
whatever
I haven't bothered with the balance, because you will recalculate after sorting.
Here is the table after sorting Entire Table and **then** entering formulas:
Date
Detail
Transaction
Balance
1 Jan 2012
g
-10
1500
2 Jan 2012
f
-457
1043
3 Jan 2012
Salary
4999
6042
I wish
4 Jan 2012
e
-115
5927
5 Jan 2012
d
-450
5477
6 Jan 2012
c
-33
5444
7 Jan 2012
b
-24
5420
8 Jan 2012
a
-100
5320
Balance is Column E in this example.
E1 is opening balance (check with closing balance from previous month).
In Row 2, the formulas begin. In Cell E2, type this:
=E2+D3
Then Fill Down.
Regards,
Ian.
P.S.  No. that is wrong. I missed the transaction on 1 January. Must go to bed (12:45 am here).

Similar Messages

  • How to determine which version of USB I have

    I was just trying to figure which version of USB my Powerbook Aluminum 1.25GHZ 167 MHZ it has firewire 800 is there an easy way to figure this out. Thanks for all of your help.

    Awesome thanks for all of your help.

  • I've got an older I pad and am wondering how I can determine which version of iTunes I have.

    ? I've got an older iPad and am wondering how to determine which version of  iTunes I have?

    The iTunes App on an Ipad is different to the iTunes Application on a Computer.
    Krdmgd wrote:
    how to determine which version of  iTunes I have?
    On your Computer... Open iTunes > About > Version.
    iTunes free download from www.itunes.com/download

  • How can i open a PDF bank statement in numbers so that the rows and columns contain properly aligned data from statement?

    how can i open a PDF bank statement in "numbers" so that the rows and columns contain properly aligned data from statement?

    Numbers can store pdfs pages or clippings but does not directly open pdf files.  To get the bank statement into Numbers as a table I would open the bank statment in Preview (or Skim) or some pdf viewer.
    Then hold the option key while selecting a column of data.
    Then copy
    Then switch to numbers and paste the column into a table
    Then repeat for the other columns in the pdf document
    It would be easier (in my opinion) to download the QFX or CSV version from your bank

  • How do I determine which version of OS I have on my old iphone 3gs--so I can determine if I can set up Icloud?

    how do I determine which version of OS I have on my old iphone 3gs--so I can determinw whether I can set up Icloud? thx

    Settings > General - About.
    If the iPhone is up to date, go to Settings and you will see a setting for iCloud.

  • How to determine which elements are queryable via Web Services QueryPage

    I am trying to query opportunities by associated opportunity product revenue records, but I continue to receive errors like "Unexpected text: = '9598015'".
    From reviewing the forums, it looks like this is when I am querying a field that is not defined to be queryable.
    Could someone please tell me how to determine which fields are queryable on a particular record type like this? I have tried using basic short text fields and indexed short text fields - but continue to receive the error message above.
    Thanks in advance.

    I found at least partial answers to my questions.
    MessageContext.getPropertyNames() can be used to see the properties on a given flow.
    MessageContext.getProperty(prop) can be used to get information for paroperties such as:
    prop=javax.xml.rpc.service.endpoint.address
    prop=wsdl.portName
    -- Frank

  • How do I determine which IPad Air model I have?

    How do I determine which IPad Air model I have--Air or Air2? Thanks.

    The single row I'm speaking of goes across the full width of the iPad but is interrupted by the Lightning connector. Here's an ASCII example:
    iPad Air 2
    .  =speaker holes
    O= Lightning connector
    ...............O...............
    iPad Air 1
    : = speaker holes
    O= Lightning connector
    :::::::::::::::O:::::::::::::::
    I mentioned them as being rows and not columns because with a single row as with the Air 2, there are no columns when viewed horizontally...if viewed vertically, the rows will of course turn into columns.

  • How to determine which chipset my Satellite L300/700 has?

    I have a SATELLITE L300/700 (PSLB8A-047004). The User Guide covers several models. It indicates that the chipset determines which memory modules I need for a memory upgrade. How do I find out which chipset I have, please?
    Kev.

    > I'm still curious about how to determine which chipset I have - any thoughts?
    Go to the device manger and click on IDE Ata/Atapi controllers:
    http://img814.imageshack.us/img814/7321/chipset.jpg
    There you will see your chipset installed on your laptop. In my case, as shown on the screenshot is Intel ICH9m

  • How CSSCAN determines which indexes need to be rebuild ?

    Hi everybody,
    i'm currently migrating 3 Oracle databases that contain CP1252 characters unproperly stored in WE8ISO8859P1 instances.
    The key steps of the migration are :
    1. ALTERing CHARACTERSET to WE8MSWIN1252
    2. changing CHARACTER SEMANTIC LENGTH for CHAR and VARCHAR2 columns
    3. truncating data stored in VARCHAR2(4000) columns
    2. Full export
    3. Full import in a ALL32UTF8 instance
    To do all of this (and especially the step 3), i use the CSSCAN utility (very practical !!!).
    And i have a question about CSSCAN: how CSSCAN determines which indexes need to be rebuild. What is the logic ?
    Looking at the CSSCAN report, i have a lot of cells/columns that are affected by the characterset migration, and i have just a few index to rebuild.
    Why would i like to understand the logic ? Because i would like to rebuild ONLY indexes that REALLY need to be rebuilt and i am not sure that all the indexes specified by CSSCAN really need to be rebuilt.
    Thanks for any information about that.
    (and sorry for my english)
    NB: i have managed "function-based indexes" specifically: i drop them before the export, and i recreate them after the import. So my question mostly target the "regular indexes"

    1. All indexes whose key contains at least one character column with convertible or exceptional data, excluding indexes with names equal to some constraint name for the same owner.
    plus
    2. All functional indexes on tables that have columns needing conversion, excluding indexes with names equal to some constraint name for the same owner.
    The condition regarding constraints does not seem to be very fortunate but it comes from times when the appropriate flag in index metadata was not yet available.
    But note that in your migration scenario, you do not actually have to care much about indexes. Step 1 & 2 do not need any modifications to the user data and hence to index contents. Step 3, if done through UPDATE, will modify affected indexes automatically. Step 4 does not affect the database. Step 5 will recreate all existing indexes anyway.
    -- Sergiusz

  • My Wells Fargo bank statement will not open in Firefox. I have to use Safari. Please fix and let me know the reason.

    My Wells Fargo bank statements will not open in a viewable format.

    Here is a link to Wells Fargo "Online Statements Questions": https://www.wellsfargo.com/help/faqs/statement_faqs
    *click on the item "How can I view or get copies of my Online Statements?"
    *scroll down to "Viewing Online Statements"
    *it says:
    **You need Adobe® Reader® to view, print, or save your statement. If you do not have it, you can download Adobe Reader for free.
    I do not see a PDF Reader plugin in the list of plugins submitted with your question.
    *See Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Track Missing Entries between Bank Main A/c and Clearing A/cs

    hi,
    Is there any easy way to track the missing entris between Bank Main a/c and Clearing Accouns. Is there any tocode or something.
    Please advice.
    Satish

    Hi Chandra,
    Thats right. You would anyways do a bank recon at which point these are moved into the bank main account.
    Caio
    Raghu

  • The numbering of the bank statements is not sequential

    Hi expert,
    When I load the bank statements in transaction FEBA, the numbering of the bank statements is not sequential.
    Eg: Error
    Statement No    Date                  Amount
    223                   10.01.2010        xxxx
    222                   10.01.2010        xxxx
    221                   10.01.2010        xxxx
    106                   01.02.2010        xxxx
    105                   01.02.2010        xxxx
    104                   01.02.2010        xxxx
    220                   10.01.2010        xxxx
    219                   10.01.2010        xxxx
    218                   10.01.2010        xxxx
    How can I make it sequential?
    Thank you.
    Kind regards,
    Sridhar Sha

    Please note the statement number is normally provided by your bank.
    I would contact your bank to ask why the numbering changed.
    There is normally a check inside SAP that looks at opening statement balance and statement number.
    Perhaps your coder have turned this off. - Please check with them over this.

  • How to determine whether process Chain is active or Not

    Hello Experts,
    How to determine whether process Chain is active or Not, because i have large number of PC to activate.

    Hi,
    Please check this program in SE38---- /SSA/BWT
    This program will give you information regarding all your process chains which are active and running based on there timings.
    Hope it helps.
    Regards,
    AL

  • TS1702 I am trying to install an app, I'm asked to enter my password, but my keyboard won't pop up, only the option to paste, but when I choose paste, nothing fills in (which makes sense as I have not copied anything). How can I make my keyboard appear?

    I am trying to install an app, I'm asked to enter my password, but my keyboard won't pop up, only the option to paste, but when I choose paste, nothing fills in (which makes sense as I have not copied anything). How can I make my keyboard appear?

    Are you tapping on the field you want to enter data into? That opens the soft keyboard. If you touch the field and hold it, the paste option will appear.
    Barry

  • How to get rid of "Delivery costs have not been cleared" status = MM_EKKO

    Hi dear experts,
    During pretreatment of MM_EKKO archiving object (TA: SARA), I get an amazing huge amount of PO position which can not be archived due to "*Delivery costs have not been cleared*".
    I tried several ways to find out how to solve this issue but without any success.
    Point is that we do not clear delivery cost regarding those PO positions, but delivery cost are transfered directly to a global account.
    It means that those PO's won't never be cleared.
    Any ideas about how I can fix this issue?
    Best regards,
    Daniel

    Yep,
    no idea why, but when I uncheck the "Final Invoice" box save and went back into the same PO and check again the same "Final Invoice" box, then, as a miracle, SARA=>MM_EKKO=> Pretreatment knows that this document is cleared and can be archived.
    It is just that for now, really old PO's are located in the present residence time
    I hope this slyness will help someone else one day.
    Regards,
    Daniel
    Edited by: Daniel Putzschler on Jul 28, 2009 2:02 PM

Maybe you are looking for

  • Indesign cs5.5 server (service) giving error while including .indd document

    Hi all, When I try to include the .indd document in book  and try to genarate pdf using indesign cs5.5  server sevice  it gives following error: ( note : but when i am using command line(.bat ) file it is including .indd document without locking) Err

  • Running VMware Server 2 services as a non-root user

    Hello, I have switched from VirtualBox to VMware Server 2 on my Arch64 server and the transition has been relatively painless. I am at the point now where I want to run VMware's services as a non-root user account (I have a service account called "sv

  • Display image from the save link in the field

    Hi all, I have a image link that saved in a column and will like this picture to be displayed once user is click on the image link in the tabular format. However, now I am facing the problem to perform query of the record because one of the field typ

  • 2003-2010-2013

    I have 2003 and 2010 exchange servers in same forest. Also i have 2013 in another forest. And two ways trust. Migration from 2003 to 2010 in progress and all ok. Tell me please, how i must migrate from 2010 to 2013 in same time? Use New-MoveRequest -

  • Simple Step-by-Step Weblogic+EJB Tutorial

    Anyone know of a simple step-by-step weblogic+ejb tutorial? Online? Thanks, Rocky