Evan Camilleri
Programmer
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
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