SUMMARY
This technical note describes an issue when exporting to PDF, Excel with formatting, Excel with plain text a Report or Document that contains special characters on the name, such as ‘&’
SYMPTOM
When trying to export to PDF, Excel a report or document that contains a special character on the name, such as an ampersand ‘&’, the following error occurs in Strategy Web 10.4 HF 4 or 10.8.

Serve Error in '/ Strategy' Application. A potentially dangerous Request.Path value was detected from the client (&).
<,>,*,%,&,:,\\,?

CAUSE:
This is an identified defect in Strategy Web 10.4 HF4 and 10.8. The reason this occurs only in the ASP version of Strategy Web, is that in ASP.Net 4 and above, special characters are considered invalid character.
ACTION:
This issue has been addressed in Strategy Web 10.4 HF 5 and 10.9 . Upgrade to either of these two versions to take advantage of this fix.
WORKAROUND:
In order for prevent the issue from occurring in Strategy Web 10.4 or 10.8, perform the following modification to the web.config file.
Note: Following best practice, make a copy of the file before modifying it.
<system.web>
<httpRuntime requestValidationMode="2.0" maxRequestLength="1048576" />
....
....
</system.web><httpRuntime requestValidationMode="2.0" maxRequestLength="1048576" requestPathInvalidCharacters="<,>,*,%,&,:,\\,?" />
<httpRuntime requestValidationMode="2.0" maxRequestLength="1048576" requestPathInvalidCharacters="<,>,*,%,:,\\,?" />
For more information on the requestPathInvalidCharacters parameter, refer to the following Microsoft article.
THIRD PARTY SOFTWARE INSTALLATION WARNING:
The third-party product(s) discussed in this technical note is manufactured by vendors independent of Strategy. Strategy makes no warranty, express, implied or otherwise, regarding this product, including its performance or reliability.
The Strategy Internal Reference Number for this issue is: KB438433. 38433 KB438433