OK I have a process which exports a report to a SharePoint site.
This process works fine as so:
That is to say a PDF file is exported to SharePoint with no issues. AND... when I try this:
It pushes an RTF formatted report out just fine to the spcified location on the server...HOWEVER WHEN I DO THIS:
The report won't post to the SharePoint site, although I have manually uploaded an RTF document to that very site and had no issues... but for some reason MS Access' export command isn't working for the RTF like it is for PDF exports.
Anyone have any clue what might be going on here?
This process works fine as so:
DoCmd.OpenReport "00100_Rpt_Document(Draft)", acViewPreview, , , , intAgreementID
DoCmd.OutputTo acOutputReport, "00100_Rpt_Document(Draft)", acFormatPDF, "http://sps.itil.cit.nih.gov/SLADrafts/" & strSLAName & ".pdf", False
DoCmd.Close acReport, "00100_Rpt_Document(Draft)"
That is to say a PDF file is exported to SharePoint with no issues. AND... when I try this:
DoCmd.OpenReport "00100_Rpt_Document(Draft)", acViewPreview, , , , intAgreementID
DoCmd.OutputTo acOutputReport, "00100_Rpt_Document(Draft)", acFormatRTF, "D:\SAMS\CF_EOF_XX\" & strSLAName & ".rtf", False
DoCmd.Close acReport, "00100_Rpt_Document(Draft)"
It pushes an RTF formatted report out just fine to the spcified location on the server...HOWEVER WHEN I DO THIS:
DoCmd.OpenReport "00100_Rpt_Document(Draft)", acViewPreview, , , , intAgreementID
DoCmd.OutputTo acOutputReport, "00100_Rpt_Document(Draft)", acFormatRTF, "http://sps.itil.cit.nih.gov/SLADrafts/" & strSLAName & ".rtf", False
DoCmd.Close acReport, "00100_Rpt_Document(Draft)"
The report won't post to the SharePoint site, although I have manually uploaded an RTF document to that very site and had no issues... but for some reason MS Access' export command isn't working for the RTF like it is for PDF exports.
Anyone have any clue what might be going on here?