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

How to call event after FINAL_TENDER complete in Micros res pos 3700 isl

Status
Not open for further replies.

Ibrahim Wali

Programmer
Aug 14, 2020
6
PK
Hello There,

I need help about, how can I call some event after FINAL_TENDER complete in Micros res pos 3700 isl file?

Can I call another event after completing one event?

Also note that I need to pass CHKNUM to that event for further process.

Thanks in advance.

 

Sample:

LoadKyBdMacro KEY(24,( 16384 * 222) + @PMSSeqNum)

Some info on it...

KeyType 24 = Interface key call type
222 is the inquiry number
@PMSSeqNum if the event you want to call is in the current SIM/ISL file, you can hard code this or call events in other interface files.
16384 ... just use it hah.

To pass @cknum ...
RetainGlobalVar
Var chkNum : n4

Event Final_Tender
chkNum = @CkNum
LoadKyBdMacro KEY(24,( 16384 * 222) + @PMSSeqNum)
EndEvent

Event Inq: 222
InfoMessage chkNum
EndEvent

I didn't test this but this is the basic concept..


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top