HOW TO GET A REVERSED RECEIPT OUT OF THE AVAILABLE FOR RECONCILIATION

Hi All,
We have reversed 3 receipts in Ar as it gave error while posting. Now we are getting these entries in Bank reconciliation report.
Please suggest.
Thanks in Advance,
Ajit

Hello Ajit,
Remember there are different types of Receipt Reversal. The two you're probably interested in are:
Reverse Payment; and
Non-sufficient Funds
You would use 'Non-sufficient Funds' in situations where both a credit and debit appear on the bank statement - e.g. A customer cheque that bouces due to insufficient funds. This will be available for reconciliation to a bank statement debit item.
You would use 'Reverse Payment' when the original receipt was entered in error. This will not be available for reconciliation to a bank statement debit item.
If you have reconciled a credit to a receipt which you later realise was entered in error it is important that you unreconcile the credit before reversing the receipt with 'Reverse Payment' (as the money has been incorrectly reconciled - and you'll be left with an accounting headache if you don't).
Regards,
- Matt Symes
inKlein Consulting Ltd

Similar Messages

  • How to get a Connection Matrix out of the FireSight?

    Hi All,
    did someone have a useful hint how i can get a usefull connection matrix out of the FireSight Management to create a Ruleset for the ASA, which is at the moment on pemit any .... Focus should be a list of source and destination IP with port and maybe a counter - did some investigation on the connection events - but it is too much information and too much same events - and i have only events from the last 2 days ... i would like to get the result maybe from one or two weeks - is there a way to do this?
    Thank You in advance
    Helmut

    You can generate reports based on connection events and connection workflows.  You could create a custom workflow with something like Initiator IP, Responder, IP, dst port, count.  That would give you the count of connections between a src/dst IP on a given dst port.  
    As for connection history that's a tough one depending on the amount of traffic going through your device.  The default connection limit is 1M connections.  You can raise that in the System Policy database setting but be careful as bumping this up too high can cause it to take a long time to process connection event queries.  A week is really all we can ever hope for and even that is often too long (too many connections).

  • How to get an session BackingBean out of the FacesContext

    Hi,
    I want to make my appliction userdependent (each user only see's his own data).
    There fore I created a UserBackingBean with a session scope.
    An attribute of my other backingbeans is the User object. In my UserBackingBean I want to create a static method that returns the current user. Only I don't know how to get the UserBackingBean from a FacesContext.
    Please help?
    Romano

    ... and if you decide there MAY be several users logged in simultaneously, you can get the user associated with the current session by doing :
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ExternalContext externalContext = facesContext.getExternalContext();
    Map sessionMap = externalContext.getSessionMap();
    UserBackingBean userBackingBean = (UserBackingBean)sessionMap.get("userBackingBean");assuming you labeled your UserBackingBean managed bean "userBackingBean" in your faces-config.xml

  • How to get a mini disc out of the drive?

    Hi all. I have just made the stupid mistake of putting a mini disc inside my G4 and i cant get it out by ejecting. It is not even detected by the system. People have recomended restarting the system and holding down the mouse button, but that did not help. Others have recomended sliding a business card into the slot, however I'm reluctant to try that due to fear of damaging my system. Is there any safe way to professionally remove this disc? Any help is much appreciated.

    The absolute safe pro way is to pull the drive and open the top. Sorry a pain I know.
    There are other ways, some more dangerous than others
    http://forums.macrumors.com/archive/index.php/t-200014.html
    Richard

  • I bought an iphone of my friend and used my blackberry sim in it, it say i have signal on 3g but imessage and twitter does not work when not connected to wifi, and i dont know how to get it to work out of the house?

    The phone is not stolen but it does not work out side of the house

    if it doesnt match that means your iPhone is not provisioned for the carrier you are trying to use. Your iPhone would need to be unlocked in order to use on other carriers. You will need to contact your carrier to see if this iPhone is unlocked py providing them the IMEI. If the iPhone is not unlocked you will need to contact the carrier that the iPhone is locked to to see if they will unlock the device to use on another carrier.

  • How to get this report format out ?

    Hello all experts,
    Sample table creations like the following. Note checkno under xcheck table is not unique. Have tried pivotting the xcheck table then link pivoted xcechk with xcert using certno and invno but this willl end up getting duplicate records. Can u please help ? Basically I am stuck at how to get that vendor name out on the report
    create table xcert(
    certseq number primary key,
    certno varchar2(5) not null,
    vendor varchar2(25));
    create table xcheck(
    checkseq number primary key,
    checkno varchar2(8) not null,
    invno varchar2(100);
    Xcert Data
    certseq certno     vendor
    1     C1001     BP GAS
    2     C1002     BUG PEST CONTROL
    3     C1003     BP GAS
    4     C1004     BP GAS
    5     C1005     WILLIES BESTxcheck Data
    checkseq     checkno          invno
    1          EF500001     C1001,C1003,C1004
    2          EF500002     C1002
    3          EF500002     C1005Looking for a following report format
    checkno          invno               vendor
    EF500001     C1001,C1003,C1004     BP GAS
    EF500002     C1002               BUG PEST CONTROL
    EF500002     C1005               WILLIES BEST      Thank you
    Munshar

    Hi, Munshar,
    MunSharmi wrote:
    Frank,
    "I don't see why you would need another column. What would you need to store, or retrieve, that a table like this wouldn't allow?
    Notice my orignal xcheck table data plus a check date column
    {code}
    checkseq     checkno          invno               checkdate
    1          EF500001     C1001,C1003,C1004     11/01/2010
    2          EF500002     C1002               12/10/2010          
    3          EF500002     C1005               01/01/2011
    {code}Sure, if you have other data that you haven't mentioned yet, then you need other columns, and maybe even other tables, to store that data.
    Talking about this would be a lot easier if you described what you were trying to model in these tables, and what the different entities are.
    after nomalization
    {code}
    seq(PK)     checkseq     checkno          invno               checkdate
    1     1          EF500001     C1001               11/01/2010
    2     1          EF500001     C1003               11/01/2010
    3     1          EF500001     C1004               11/01/2010
    4     2          EF500002     C1002               12/10/2010          
    5     3          EF500002     C1005               01/01/2011
    {code}What do checkseq and checkdate represent? What is the realtionship between them? If there is another row with checkseq=3, will it necessarily have checkdate=01/01/2011? If there is another row with checkdate=01/01/2011, will it necessarily have checkseq=3?
    Shouldn't I need to have the extra seq(PK), then use check seq to group the data report to meet users' target format ? Please adviseIt depends on what your entities are. If you explain that, then perhaps I can give some advice about how to model them.
    In general, every type of entity requires a separate table. It looks like xcert represents one kind of entity, uniquely identified by certno. I assume there is some other kind of entity, uniquely identified by checkno, and that you have a table for that which you haven't needed to show in this thread.
    Are you saying that there's some other entity, that is uniquely identified by checkseq? If so, it probably needs a table of it's own.
    Every table should have a primary key. I had assumed that checkseq only served as the primary key of the xcheck table. If it serves some other purpose, then yes, you would need another column.
    Many-to-many relationships usually require a separate table. I was guessing that xcheck was intended to record a many-to-many realtionship between xcert and some other table. Guessing is not always the best way to solve problems. I think it would be better if you explained what you want to do, rather than have me guess at it.
    So far, what you've shown is analagous to an order entry system. One kind of entity is customer, another is supplier. Say you're running a company that sells products from many suppliers to many customers. There is a many-to-many relationship between customers and suppliers. Any customer may buy from many suppliers; any supllier may sell to many cutomers. You may have an orders table that keeps track of that many-to-many relationship. You may also have another entity, salesman, that also has many-to-many relationships with customers and suppliers. Depending on what exactly you consider an "order", there are lots of different ways to model this. Can a single order involve many customers? Can a single order involve many suppliers? Can a single order involve many salesmen? If an order always involves one customer buying from one supplier using one salesman, then you may only need four tables. If the situation is more complicated, then you may need more tables.

  • How can I get a stripped screw out of the bottom of my iPhone?? I need help, How can I get a stripped screw out of the bottom of my iPhone?? I need help

    How can I get a stripped screw out of the bottom of my iPhone?? I need help, How can I get a stripped screw out of the bottom of my iPhone?? I need help

    Try asking at ifixit.com. The iPhone is not considered user servicable. You're not going to get much help on an Apple sponsored forum.

  • How do I get  camera memory card out of the DVD slot?

    How do I get  camera memory card out of the DVD slot?

    Well, for one thing it shouldn't be in the DVD slot. You can try turning the computer on it's side and see if you can coax it out, but otherwise you will need to take it in for service because the computer has to be disassembled.

  • How do I get my sd card out of the cd slot.. I have tried the method shown on youtube and it is not working

    How do i get my sd card out of the cd slot.. I have tried the method shown on youtube and it's not working

    Shut down the machine, turn it on it's side and shake it out. If you still can't get it try another solution on YouTube, there are many shown. We Have no idea which one you tried. If you still can't get it out take the machien into your local Apple Store or AASP and they will help you.

  • HT3702 I got charged $104.00 for a game I never play. How do I get it reversed.  I did not ask for this charge nor did I authorize it.

    I had a friend over and she found a casino game on my IPAD2.  She played it for a few minutes and asked if she could purchase $19.99 more of coins.  I finally okayed the $19.99 but then noticed she had over a million points.  I didn't know how this happened.  Then I checked my account and found that after the initial $19.99 charge an automatic charge also showed up for $104.99 had been taken from my account.  I want to know how to get this reversed as it was identity theft and was not I repeat NOT AUTHORIZED BY ME.    I need my money.  How can I get it back.  I trusted ITunes and now I get ripped off.  It turns customers off real fast.  Please help.
    Dee52

    Welcome to the Apple Community.
    Select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History.

  • Could anyone please tell me how to get my cd/disc out. thanks

    could anyone please tell me how to get my disc/cd out of my desk top? thanks

    CD/DVD - Eject Stuck
    CD/DVD - Eject Stuck (2)
    CD/DVD - Eject Stuck (3)
    CD/DVD - Eject Stuck (4)
    CD/DVD - Eject Stuck (5)

  • I accidently deleted an app off my iphone, and its not on my computer, how do i get it back with out having to pay for it again

    I accidently deleted an app off my iphone, and its not on my itunes account on my computer, how do i get it back with out having to pay for it again?

    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Does anyone know how to get a movie to play on the apply TV that you rented?

    Does anyone out there know how to get a movie to play on the Apple TV that was rented through Apple TV?

    It's not going to show under purchases because it's a rental. You have to go into settings - iTunes - check for rental.
    Note: a rental will disappear once it's expired (after 24hrs or 48 hrs depending on location)

  • How to get my macbook to connect to the Apple TV?

    How to get my macbook to connect to the Apple TV in a strange apartment? I am housesitting for someone for a few months. They mentioned that i would be able to use their Apple TV to play stuff from my macbook. I am using their basic wifi in the apt, which works fine on my macbook and iphone, but see no Apple TV icon appearing on macbook screen, nor any connection happening. (nor is there anything connection w my iPhone). What gives? How can I establish a connection?

    See
    http://support.apple.com/kb/ts4215

  • How to get latest record on top of the result list

    Hi Gurus,
    How to get latest record on top of the result list when you open the record.
    saved data method in BT120H_CPL of OverView page and result list in ICCMP_INBOX.
    Regards,
    Ravi

    Hi
    Try sort descending by on fileld "changed at ".
    manipulate the sort depends on your requirement
    Regards
    Logu

Maybe you are looking for

  • Disk i/o question

    As I believe our workflow will be I/O bound just as it is now, the new machine I build will have a raidcard  setup for data storage. The work we do entails editing imageI up to 3--4GB max, no rendering. I haven't yet decided which sas/sata card and w

  • 5800 shows wrong track length for MP3s with VBR

    I have a Nokia 5800 "XpressMusic" with the current firmware 20.0.012. Yesterday I converted some CDs using Nokias Music Software (shipping with the mobile). I converted the CDs to MP3 with VBR 256KB/s. When i play them on the 5800 a song with i.e. 3:

  • C++ library wich is similar to bounsty castle

    hi all, is there any free source C++ lib wich provides similar interfaces (API) as present in BounstyCastle in java???

  • Safari not connecting but Firefox working

    Have been having problems connecting to my home wireless system today. Finally resolved that issue but now only the Firefox browser is working not safari. I'm sure I've reset something wrong but what any ideas?

  • Bottom bar in flash player is all black - no controls!

    I'm put up a file at: http://shmuelkatz.com/expt3.htm And it does play my video, but the bottom bar of the flash player is all black.  Normally I would expect at least what youtube shows - which is a start button, a pause button, a 'maximize' button,