talz13
Technical User
- Feb 26, 2001
- 3
I'm trying to validate the forms of payment on a Micros 9700 check via a SIM script. I believe I want to use @TRDTLT to loop through and verify the T=Tender/Media types currently applied to the check before applying the next tender.
I'm trying to do this, but keep getting errors when I reference system variables like @TRDTLT. Here's what I have so far:
When calling this event from a button on the Micros PCWS, I get an error stating:
How am I supposed to use these variables?
I'm trying to do this, but keep getting errors when I reference system variables like @TRDTLT. Here's what I have so far:
Code:
SetReRead
event inq : 1
var counter : n10
// waitforclear "Check number: ", @CKNUM
For counter = ArraySize(@TRDTLT)
// // window 3, 1000, @TRDTLT
waitforclear "Tenders: ", @TRDTLT[counter]
EndFor
endevent
When calling this event from a button on the Micros PCWS, I get an error stating:
Code:
ISL error on line 7:26
Variable undefined (@TRDTLT)
How am I supposed to use these variables?