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!

SIM programming - MI_VOID Never fires

Status
Not open for further replies.

RitwickGupta

Programmer
Aug 21, 2014
96
CA
Hello,

I am trying a SIM code but my MI_VOID event never fires. I want it to display the item(s) which are being voided. Any idea what's happening there? Anyone tried this before?

Thanks
 
What version of Micros are you running?

Also, how are you calling the MI Void?
 
Micros 3700. I was guessing that the event would fire when I hit void button to void an item.
 
If you want to Void off MI items you have to make an event for it. Then add any statements with-in that event, or call a Sub routine.
I know this code works on 9700 Systems.

Code:
Event MI_VOID
  infomessage "Voided Item"

endevent
 
That is exactly what I am doing, but the event won't fire when I void the items
 
Is the script that the Event is in setup for that RVC and setup to be used?
 
Interfaces are setup via the RVC Interfaces or Interfaces module.

3700 SIM Guide -
3700 Configuration Guide - See page 7-18 or search for Interfaces

Have a look at this post, I wrote a script for the 9700 system, when canceling items. I am not 100% sure that MI_VOID works well with the 3700 system.

You can also take a look at this one.
 
It might be that its not a void but an error correct.
An error correct is a void but in the current service round. This has a separate event. Event mi_error_correct_items

Do you want some custom SIM scripts developed. Contact me via my website
 
In touchscreen designer, it says it's Category is Function: Transaction and Function is Transaction Cancel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top