For example if you mean see the tender_media obj_num and name you can check the "micros"."trans_archive_dtl". The below cloumns are showing tender_media object number and tender media name.
TMEDDEF_obj_num
TMEDDEF_name
what I want is a SQL query that will pull for the transactions of a given date, the start and end time for all credit card payments.
We have made changes to the payment terminal and stores are saying that the transaction time has gone up. this is what I wish to check.
Here's the quick and dirty method I usually use for stuff like this. It's much easier than joining together all the tables you'd need for reports.
Join micros.trans_dtl to micros.dtl on trans_seq and filter the results with dtl.dtl_type = 'T'.
The start_date_tm and end_date_tm in trans_dtl will get you the transaction time, rather than the check time.
The dtl.dtl_name field will show the tender type.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.