Hi Renee,
File import and renaming happens in WebHandler. According to an old app ( and my recall of conversations with Bruce...)
Enbed p_web RenameFilePROCEDURE*(......)
Priority 5001 = AFTER Parent Call.
Here is my code: ( a little messy with messages )
MESSAGE('pname ' & p_name)
if p_name = 'upfilename' ! uploading schedule file
locpath = p_web.GSV('tProvRptDir') ! this is the provider file
! message('report dir ' & locpath)
locpath = clip(locpath) & '\INFILE\' ! this adds teh Infile path
! message('upload path: ' & locpath)
RETURNVALUE = Parent.RenameFile(p_name,p_filename,locpath)
RETURN RETURNVALUE
END
FWIW,
Ron Jolda