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

Micros Checks Number of Prints

Status
Not open for further replies.

jrahma

Programmer
Aug 1, 2003
19
BH
Hi,

In Micros there is a report shows every check and how many times it was printed and the employee name.

I want to know how can I get this using SQL?


Thanks,
Jassim



Jassim Rahma
 
SELECT micros.chk_dtl.chk_num,
micros.chk_dtl.chk_prntd_cnt,
micros.emp_def.last_name,
micros.emp_def.first_name
FROM micros.chk_dtl JOIN micros.emp_def ON micros.chk_dtl.emp_seq = micros.emp_def.emp_seq

This will give you the Check #, # of times printed, and the employee first and last name.
 
the employee name shown here.. is it the employee opened the check or printed it? because I can't see one check printed by more than one employee so I assume it's grouped check..

Am I correct?




Jassim Rahma
 

is there any way to get the employee who printed the check to know how many times check was printed and who printed each copy?




Jassim Rahma
 
That chk_prntd_cnt increases when I add something to the order and click send. Why is that? I just want to know if the check has been printed for the customer or not.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top