You are here: DAL Examples > Preparing AFP or Metacode print streams for Docusave

Preparing AFP or Metacode print streams for Docusave

This example shows DAL scripting which you could use to format and configure an AFP or Metacode print stream for storage using Docusave.

The FSISYS.INI or FSIUSER.INI files must contain these options:

< PRTType:xxx >

		OutMode= MRG4 or JES2
		                                                                DocuSaveScript = DOCUSAVE.DAL

Where XXX is either AFP or XER. For the OutMode option, enter MRG4 or JES2. Enter the name of the script in the DocusaveScript option.

The DOCUSAVE.DAL script file should contain this information:

* Add Docusave Comment - use default: APPIDX record!

comment	 = AppIdxRec(  )
class 	 = PAD("bio",8)
cabinet = PAD("rpex7",8)
title 	 = PAD("TITLE",22)
indextag = comment & class & cabinet & title
Print_It (indextag)
AddDocuSaveComment (indextag)
Return ('FINISHED!')