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 RES 3700 MESSAGE POPUP

Status
Not open for further replies.

MDLE

Programmer
Mar 14, 2017
5
US
Does anyone know how I can setup a message on print button to remind employee to ask customers about rewards?
 
You can write ISL script to show the message then invoke function 458767 (On Demand Customer Receipt). Assign that script to your key.

Here is script example:

[pre][tt]var myPrintCheck:n2 = 1

event inq: myPrintCheck
var print_check : key
var kKeyPressed : Key
var sTmpData : A10

InputKey kKeypressed, sTmpData, "Have you asked customer about rewards?"

if (kKeypressed = @KEY_ENTER)
print_check = key(1, 458767)
LoadKyBdMacro print_check, @Key_Enter
endif
endevent[/tt][/pre]

You'd need to create interface for that script, put the script file into proper CAL folders, then use Category SIM/PMS Inquire in the button definition
 
You can have the print button be a change touchscreen button which goes to a screen with the rewards message and an OK button (OK button programmed same as original print button)

themicroslady.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top