Hi
If you are working with Oracle Payables you might come across on questions related to Escheatment process. The payables user guide does not have much info on this. Let me explain what it is and how to go about it. Many a times Some vendors forget to cash their check for various reasons. Believe me it happens in real world for whatever reason it is . We had over 200k (dollar amount) in uncashed checks. The US law requires that you remind the suppliers about the uncashed checks . If those checks remain uncashed after enough efforts you are required to cancel the checks and remit the amount to the State as the amount is not yours but it belongs to the suppliers who did not cash it.
In India Companies are required to remit the amount to the Comapny Law board. How do you go about it.
It is very simple. As this happens with Checks run the query to identify the checks, suplliers etc. I have given a date of 01-Jan-2008 to identify the checks mailed in the years prior to 2008. Based on the results you send out letters to the suppliers identified by the query. Some suppliers might encash it or request for a new check, if they have lost the check (Void and reissue in such cases). Or ellse cancel the checks and remit the amount to the state after some time.
The query is as follows. You may have to modify it based on your AP department’s requirement.
select vendor_name,vendor_site_code, amount,check_date,check_number,
checkrun_name from ap_checks_all
where 1=1
and status_lookup_code=’NEGOTIABLE’
and check_date <’01-JAN-2008′
Thanks
Kumar