Example INI Configuration

Enable the Batch and Transaction Banner scripts using the FSISYS.INI or FSIUSER.INI files. Typically, you enable the scripts for the chosen recipient batch output.

In the example implementation, Batch6 is the chosen output which is the FILE recipient’s batch and is associated with Printer6. Note that the EnableBatchBanner and EnableTransBanner settings are required in both the Printer control group and the Batch6 control group. Here is an example configuration snippet with the changes and additions (in italics) to write PDF output for Batch6 and enable the DAL scripting calls:

< BatchingByRecip >	
Batch_Recip_Def	= TRUE;"BATCH1";AGENT
Batch_Recip_Def	= TRUE;"BATCH3";INSURED
Batch_Recip_Def	= TRUE;"BATCH2";INSURED
Batch_Recip_Def	= TRUE;"BATCH4";CLAIMANT
Batch_Recip_Def	= TRUE;"BATCH4";OWNER
Batch_Recip_Def	= TRUE;"BATCH4";LIENHOLDER
Batch_Recip_Def	= TRUE;"BATCH6";FILE
DefaultBatch < Print_Batches >	= ERROR
BATCH1	= data\agent.bch
BATCH2	= data\insflat.bch
BATCH3	= data\insured.bch
BATCH4	= data\other.bch
BATCH5	= data\lienholder.bch
BATCH6	= data\file.bch
< Printer >
; Must generally enable banner processing for it to work.
EnableBatchBanner	= Yes
EnableTransBanner	= Yes
PrtType < Printer6 >	= PDF
Port	= data\file.pdf
PrtType	= PDF
AORDebug	= No
AORExt	= .pdf
AORFilesPerBatch	= 1000
AORPath	= c:\AOR\
; Enable a DAL library of scripts to be pre-loaded
< DalLibraries >
	LIB	= aor
; Enable the Banner and Transaction DAL Scripting
< BATCH6 >
	EnableBatchBanner	= Yes
	EnableTransBanner	= Yes
    BatchBannerBeginScript = AOR_PREB
	BatchBannerEndScript	= AOR_POSTB
    TransBannerBeginScript = AOR_PRET
    TransBannerEndScript	= AOR_POSTT Printer	= Printer6