User's Manual
D-16 Customizing the DecisioNet System
Sale Price Verifier
When the optional EPL Price Redundancy package is installed, the Sale
Price Verifier starts with the other EPL applications. The Sale Price
Verifier ensures that the SmarTalkers accurately display sale prices by
comparing sale price information in the EPL Item table against sale
price information in the PLU table. In a default system, a comparison is
made every 60 minutes. To change the timing, edit the start scripts and
change the essprcvrf options to meet your requirements.
Changing the Sale Price Verifier Time Interval
The default time is 60 minutes in the S90sprcvrf.bat file in the
Windows NT \epl\bin\scripts directory. Edit the batch file and set the
time frame to the desired length.
@echo off
echo Starting Sale Price Verifier
if "%1" == "startservice" goto startservice
start /min ..\essprcvrf -r60
goto finish
:startservice
..\startsrv svsprcvrf
:finish
The default time is 60 minutes in the S90sprcvrf script in the UNIX
/epl/bin/scripts directory. Edit the batch file and set the time frame to
the desired length.
echo Starting Sale Price Verifier
essprcvrf -r60 > $ESCONFIGDIR/essprcvrf.out 2>&1 &