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

Simphony ISL. Check if you are in a CLOSED check

Evan Camilleri

Programmer
Feb 14, 2018
31
0
6
MT
Simphony ISL:

I am trying to find out if the check I am in is CLOSED. I managed to see if I am in a check that has just been closed by playing around with the following. However, if the check is opened for reprint, it does not work. I also tried @InEditClosedCheck and @InReopenClosedCheck during reprint, but they are always 0.

var check_closed : N = 0

event begin_Check
check_closed = 0
endevent

event pickup_Check
check_closed = 0
endevent

event final_tender
check_closed = 1
endevent


 

Part and Inventory Search

Sponsor

Back
Top