Hi Bram,
ok, I think I've found the problem. At least, I've found it in the example so it's probably the same in your app;
Go to the RightReportsWebPrintReport procedure in your app.
It should be a NetWebPage procedure.
Goto the extensions for the procedure.
"Implements NetWebServer Code on a Print Report page" extention should be there. Highlight this extension and go to Properties.
See the setting, "Formula for PDF file". It's likely to be;
'Reports\' & p_web.SessionID & '_' & RROptionsGroup.DefnCode & '.pdf'
this needs to be changed to
'Reports\$$$' & clip(p_web.SessionID) & '_' & RROptionsGroup.DefnCode & '.pdf'
The SessionID changed from a long to a string, hence the need for the extra Clip.
cheers
Bruce