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

Search results for query: *

  • Users: asimeqi
  • Content: Threads
  • Order by date
  1. asimeqi

    Print to Journal in 9700

    I am using Micros 9700. I need to have the trailers print in a Journal Printers. Does this option exist? If that is not an option is there an option to print the guest check in the Journal Printer? I think if that happens the trailers will print on the Journal too. Right now I have no way of...
  2. asimeqi

    Aloha Equal Pay and COM

    There is this feature in Aloha, called Equal Pay. In the payment screen you hit the Equal Pay key, you select the number 2 and the amount to pay is split in 2. You can select one of the payments and pay cash etc. for it. All is well. Now suppose that you have your special mode of payment...
  3. asimeqi

    Finding the max value and the corresponding row.

    I have a table like this: DECLARE @operator_activity TABLE ( account_id INT, operator_id INT, num_trans INT ) I need to find the max value of num_trans for each account and also the corresponding operator_id. So I write something like this: DECLARE @operator_activity TABLE (...
  4. asimeqi

    Finding SUM and COUNT

    I have this table: DECLARE @transactions TABLE (account_id INT, amount INT) INSERT INTO @transactions VALUES (1, 1) INSERT INTO @transactions VALUES (1, 2) INSERT INTO @transactions VALUES (1, 3) INSERT INTO @transactions VALUES (2, 2) INSERT INTO @transactions VALUES (2, 2) I want to write a...
  5. asimeqi

    How many transactions in a day?

    I have a table like this: Declare @transactions Table(tran_id Integer, account_id Integer, tran_date datetime) Insert Into @transactions Values(1, 1, '2006-06-08 08:00:00') Insert Into @transactions Values(2, 1, '2006-06-08 14:00:00') Insert Into @transactions Values(3, 2, '2006-06-09...
  6. asimeqi

    Excluding rows

    I have 2 tables, table_1 and table_2. Table 1 has all the rows of table_2 and some more. I need to find the rows in table 1 that are not in table 2. All I could think of is to use a cursor. There has to be another way, right?
  7. asimeqi

    Securing one database

    I have an application which uses a SQL Server Express database. There are tables in the database that contain information I do not want users of the application to be able to see or be able to change. However since I do not have control over the database file, the user can simply install a copy...
  8. asimeqi

    Radiant Lighthouse

    One of my functions at my job is to integrate our product to different POS systems. Micros, Aloha, the usual. I have followed the forum and I have learned lots of useful info about those systems. Lately I was asked to integrate to Radiant Lighthouse systems. The first thing I did was to come and...
  9. asimeqi

    IBM 4695 Card Swipe

    I have a program that reads a card throught the Magnetic Stripe Reader (MSR). I am having a problem with an old IBM 4695 terminal, running Windows NT SP6. My program can read both keyboard wedge MSR and OPOS MSR. But IBM 4695 seems not to have a keyboard wedge. I was thinking that I could use...
  10. asimeqi

    Aloha Mag Card Reader Problem

    I have an IBM SurePOS 500, running Windows NT4, Aloha TS 5.27. The mag swipe is an IBM OPOS. OPOS MSR Control is version 1.5.3 beta Service object is IBM OPOS ver 1.4 build 401 The card swipe usually works fine. But if I run a program, any program, using a button created via TSBUTTON.CFG, the...

Part and Inventory Search

Back
Top