A-2 Sample Script
;The Comply function contains the batch data for the compliance format.
Function Comply
Begin
MOVE "{B,1,N,1 |8,~03466598~034|", SCRATCH
CONCAT "9,~0340~034|", SCRATCH
CONCAT "10,~03436~034|", SCRATCH
CONCAT "11,~0342508-09505~034|", SCRATCH
CONCAT "12,~034950330~034|", SCRATCH
CONCAT "13,~034FISHING ROD~034|", SCRATCH
CONCAT "14,~034OH 45001~034|", SCRATCH
CONCAT "16,~034LIMA~034|", SCRATCH
CONCAT "17,~034123 US 35~034|", SCRATCH
CONCAT "18,~034MYSTORE~034|", SCRATCH
CONCAT "29,~0348~034|", SCRATCH
CONCAT "30,~0340000028028665988~034|}", SCRATCH
parse
clear INPUT
return
End
;The Receiving function contains the batch data for the receiving format.
Function Receiving
Begin
move "{B,2,N,1|1,~034674148022201~034|", SCRATCH
CONCAT "2,~034BULK TOMATO PASTE~034|}", SCRATCH
parse
clear INPUT
return
End
;The Sale function contains the batch data for the sale format.
Function Sale
Begin
move "{B,3,N,1|1,~0340632253993005~034|", SCRATCH
CONCAT "2,~034SWEATER~034|", SCRATCH
CONCAT "3,~034SMALL~034|}", SCRATCH
parse
clear INPUT
return
End