Global - Program Setup
    SYSTEM{Prop:Datapath} = 'D:\STank64\Data'
PDFReporter.SetUp PROCEDURE
  CODE
...
  If Not p_Web &= NULL
    SELF.SetFileName(clip(p_web.site.WebFolderPath) & '\' & clip(loc:PDFName))
  End
Error Message
TARGET Openfile
ERROR:(3) Path Not Found
Can't create target file web\$$$55769.pdf
Looks like the pdf output to different path
when I create a folder 'D:\STank64\Data\web', the report will print/save to the web folder.  from there, no display or "Page Load Error" on web page.
message(p_web.site.WebFolderPath ) = web
If I set the path at 
PDFReporter.SetUp PROCEDURE
SELF.SetFileName('D:\STank64\TheWeb\' & clip(p_web.site.WebFolderPath) & '\' & clip(loc:PDFName))
everything works fine.