|
Banquo,
The reason is as follows;
Postscript output is created using the WPS-PLUS formatter.
Normally, when printing an ASCII document/file the WPS-PLUS formatter
is not used BUT printing to style PS is a special case.
If FILEFORMAT.SCP (foreground formatting) you have the following lines...
! Text Data Set mechanism cannot format to PostScript. If formatting to
! PostScript, we have to use the WPS-PLUS formatter.
.if #FILEFMT_DEST_FORMAT eqs "PS" then .goto wpsplus
You need to change the last line to...
.if #FILEFMT_DEST_FORMAT eqs "PS" or -
#FILEFMT_DEST_FORMAT eqs "PSLZR" then .goto wpsplus
Similarly, in WPPRINT.SCP (background formatting) you have these lines...
! Text Data Set mechanism cannot format to PostScript. If formatting to
! PostScript, we have to use the WPS-PLUS formatter.
.if #PRINT_FINAL_FORM eqs "PS" then .goto WPSPLUS
The last line needs to be changed to...
.if #PRINT_FINAL_FORM eqs "PS" or -
#PRINT_FINAL_FORM eqs "PSLZR" then .goto WPSPLUS
OR, you could just change the "eqs" to "=" (Beginning) in both scripts
to catch all print style that start with "PS".
Hope this helps.
Andy
CSC Sydney
|