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

SIM script trigger - Clock in / Clock Out (MICROS 3700)

Status
Not open for further replies.

RitwickGupta

Programmer
Aug 21, 2014
96
CA
Hello,

I wanted to know if I can trigger a SIM script in MICROS 3700 when someone clocks-in or clocks out of the POS system. If yes, how do I do that?

Thanks
 
Yes. Use the ClockIn and ClockOut events.


Clock In Event
Syntax
Event ClockIn
Example
Code:
Event ClockIn
[indent]Var text : a20 = "Clocked In"
Var title : a20 = "Clock In Status"
InfoMessage title, text[/indent]
EndEvent

Clock Out Event
Syntax
Event ClockOut
Example
Code:
Event ClockOut
[indent]Var text : a20 = "Clocked Out"
Var title : a20 = "Clock Out Status"
InfoMessage title, text[/indent]
EndEvent
 
Thanks for the quick reply. Also I have an event which is triggered when I press a custom button on Payment screen. Can I open something like an info box which is interactive at that event trigger? All I need is to display a string and have a yes or no button or just get a yes and no input?
 
Which file do I write that SIM script in for EventClock function?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top