File Name Requirements

Production Reporting programs may contain file names in the #INCLUDE and PRINT‑IMAGE commands. If you run Production Reporting programs from other machines, you may need to change the path and/or file name.

For example, assume a program contains these commands:

#INCLUDE ‘C:\ADMIN\WRAP.INC’
PRINT-IMAGE(1,121)
	TYPE=bmp-file
	SOURCE=’C:\ADMIN\MY_IMAGE.BMP’
	IMAGE-SIZE=(24,24)

If you move the program to another machine and convert the image to EPS, the commands might be:

#INCLUDE ‘/usr/admin/wrap.inc’
PRINT-IMAGE(1,121)
	TYPE=eps-file
	SOURCE=’/usr/admin/my_image.eps’
	IMAGE-SIZE=(24,24)