Integration Guide
Table Of Contents
- I
- Introduction
- Architecture Overview
- Hardware Requirements
- PSS Software Installation
- Install NT 4.0 Server
- Install the NT 4 Service Pack
- Install Internet Explorer 4.01 Service Pack 2
- NT Option Pack Install
- Install the Video Driver
- Create and Format the Database partition
- Desktop Cleanup (optional)
- Install Microsoft SQL Server 7
- Create and Configure the PSS Database
- Install Microsoft Access
- Internet Explorer 5.0 with Task Scheduler install
- Install WaveWorks
- Install PSS Runtime System
- Install Waveworks Development Studio
- Install PSS Development System
- TFTP Configuration
- DHCP Configuration
- Create an ODBC Data Source
- Load Initial Data
- MS IIS Configuration
- Obtaining Access to PSS System Administration Screens
- Configure Task Scheduler
- Configure Unit Management
- Configure Licensing
- Configure the NBQMAIN Service (IBM 4690 POS Only)
- Setup NT System Log
- Configuration of the PSS System
- Validation of System Operation
- Directory Listing of PSS Folders/Files
- Software Description
- _
- Hardware Overview
- Software Components
- Database Access
- Start of Shopping Trip Processing
- Shopping Trip Processing
- End of Shopping Trip Processing
- Shopping Trip Message Log Entries
- Fatal Messages:
- PSSTransactionFile Processing
- POS Transaction File Processing
- Item Record File Processing
- Customer Update File Processing
- PSS Services
- _
- Customizing the PSS System Software
- Custom DisplayServer Scripts
- Custom Services
- Custom Business Objects
- User Exit DLL
- Available User Exit Functions
- UE_PreProcessItemFile
- UE_PreProcessItemRecord
- UE_PostProcessItemRecord
- UE_PostProcessItemFile
- UE_PreProcessTaxFile
- UE_PostProcessTaxFile
- UE_PreProcessPOSTransFile
- UE_PreProcessPOSTransRecord
- UE_PostProcessPOSTransRecord
- UE_ProcessEODRecord
- UE_PostProcessPOSTransFile
- UE_PreProcessPSSTransFile
- UE_PreProcessPSSTransRecord
- UE_PostProcessPSSTransFile
- UE_CalculateItemPrice_Method10to20
- UE_RescanLevelCalculation
- UE_Pre-RescanDetermination
- UE_PostRescanDetermination
- UE_PreProcessMarketingMessage
- UE_LoginAuthorization
- System Administration Interface
- Specific Features
Customizing the PSS System Software
______________________________________________________________________________
WaveWorks PSS, Integration Guide, 1.10 Page 108
© 2000, Symbol Technologies, Inc. February 1, 2000
9.5 Available User Exit Functions
Following is a complete list of the User Exit routines as called by the standard PSS Software,
along with a brief description of the intended purpose of the User Exit routine and a description
of how the base PSS software reacts to the return code received from the User Exit. For the most
recent information on functionality and more details about specific arguments passed to the User
Exit routines, review the header file PssUserExits.h.
9.5.1 UE_PreProcessItemFile
This function is called before processing of Item Record File is performed. It receives the file
path of the item file as an argument.
The base PSS software handles the following return codes from the User Exit as follows:
UE_CONTINUE: PSS processes the item record file as if no Pre-Processing was performed
UE_DONE: PSS performs no Item record file processing
UE_ERROR: PSS logs an error then proceeds as with UE_DONE
9.5.2 UE_PreProcessItemRecord
This function is called after an item record is read from the file, but before PSS performs any
processing of the record. It is anticipated that this UE function will be used to either replace all
PSS Item record processing or to alter the input buffer that PSS processes.
The base PSS software handles the following return codes from the User Exit as follows:
UE_CONTINUE: PSS processes the item record as if no Pre-Processing was performed, validating the
item record and loading it into the PSS database.
UE_DONE: PSS performs no record processing and proceeds to read the next record
UE_ERROR: PSS logs an error then proceeds as with UE_DONE
Note: If a UE_DONE is returned, the POS_Item_Flag field of the record in table PSS_Item
must have been updated to "Y" or the record for that item will be deleted from the database by
PSS end of file processing.