ryroanderson
Systems Engineer
I am trying to create a new service charge button for 22%.
As far as I can tell I have everything setup correctly, and I can even using the button when I remote into the server, but using the button from a terminal throws an ISL error - No Event Found.
I created a button in TS Designer (PMS/SIM inquire, interface 9, event inquire 1, added a new service charge (#23), added a new interface (#9), created a new pms9.isl in the pos/etc folder, the script is a copy of a 21% charge with the change of the service charge object number to 23.
Why would this work on an RDP session but not the terminal/why is throwing an error at the terminal?
System Info:
Micros RES 3700 5.5
WS 5's & 6
Here's my script:
event inq : 1
var svc_chg_obj : n6 = 23
var svc_chg_key : key = key(7, svc_chg_obj)
var inquire_2_key : key = key(24,(16384*2)+@pmsseqnum)
loadkybdmacro svc_chg_key, inquire_2_key
endevent
As far as I can tell I have everything setup correctly, and I can even using the button when I remote into the server, but using the button from a terminal throws an ISL error - No Event Found.
I created a button in TS Designer (PMS/SIM inquire, interface 9, event inquire 1, added a new service charge (#23), added a new interface (#9), created a new pms9.isl in the pos/etc folder, the script is a copy of a 21% charge with the change of the service charge object number to 23.
Why would this work on an RDP session but not the terminal/why is throwing an error at the terminal?
System Info:
Micros RES 3700 5.5
WS 5's & 6
Here's my script:
event inq : 1
var svc_chg_obj : n6 = 23
var svc_chg_key : key = key(7, svc_chg_obj)
var inquire_2_key : key = key(24,(16384*2)+@pmsseqnum)
loadkybdmacro svc_chg_key, inquire_2_key
endevent