hello,
I would like to assign a "friendly" filename to the PDF created with a DF19.1 WebApp + DR7. The code that I use to generate the PDF report is the following (default created by DF)

Code:
        Procedure RunReport
            tNameValuePair[] ExportInfo


            Get NamedValueAdd ExportInfo "ExportFormat" "PDF" to ExportInfo
            Get NamedValueAdd ExportInfo "AllPages" True to ExportInfo
            Get NamedValueAdd ExportInfo "Destination" btNewTab to ExportInfo
            Send ExportReportToDownloadURL of oReport ExportInfo
        End_Procedure
On server side it is correct that the PDF is created using a random filename, but on client side I would like to assign a friendly file name. Is there a sort of ExportInfo to use to achieve that?

Thank you, kind regards
Luca