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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Micros 3700 - Database help - list of all guest checks

Status
Not open for further replies.

serendipitytech

IS-IT--Management
May 12, 2011
8
US
I'm preparing for a sales tax audit, and I'm trying to get a list of all the guest checks for certain days. I don't know what table they would be in. I had to reset the database, so I'm working from a restored database backup from before I reset it.

I'm trying to find in Sybase Central, what table can I look at that will list all the guest checks. I look at some of the tables, and all it seems to have is the most current month, where would the history be from last year?
 
Micros only holds check specific detail for 14 days. To keep it longer than that you'll need to get MyMicros or a third party reporting tool like Avero. You can also add on transaction analyzer and set a long retention time but I wouldn't recommend it. Transaction level detail takes up a lot of space and your database will get bloated.

That said, your posted sales, employee and tax totals should be held for at least a year. You should have consolidated system, rvc and tax reports already in your system. Most are set up to hold a little over a year's worth of totals, so you'll probably be able to go back to about the first week of May 2011. You can run

SQL:
select min(business_date) from micros.dly_sys_ttl
to get the oldest date with totals.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top