Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Micros pos 3700 check detail read error 1

Status
Not open for further replies.

sturno55

Technical User
Nov 8, 2007
1
US
Hi all. I am having trouble opening some old checks and I just want to delete them at this point. I know it can be done in DBISQL but i forgot the exact code." Select * from micros.chk_dtl " is all I have. Can someone please help?
 

If you haven't solve this yet, here's the code.

Replace xxxx with the check number you want to close in the query below.

Code:
Select * from micros.chk_detail
Where chk_num = 'xxxx'

The first field will be chk_seq. Make sure you have the correct check and write done the chk_seq number.

Now enter this, replacing chk_seq with the number you wrote down:

Code:
call micros.sp_ForceChkClose(chk_seq)

Repeat this for each check.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top