What you will find here

If you are one of those multi hat kind of person you might want to take a look here.
Some of the sections here will cover: SharePoint, SQL, Server, VB Script, Batch files, PCI Compliance

Icon

Icon

Wednesday, March 29, 2017

Issues openning pdf files in browser SharePoint 2010?

Here an easy solution

$webApp = Get-SPWebApplication("http://yourwebappurl")
$webApp.AllowedInlineDownloadedMimeTypes.Add("application/pdf")
$webApp.Update()

Thank Brandon Atkinson



Cognos 11 - 10 Report title with Parameter - Dynamic

I have seen that there is lots of confusion there when this question is posted.

I need the title of my report to by dynamic in Cognos.

Not that hard.

Go to your query or one of the queries you are using in the page with the title.

Add a funny filter like

?TitleParam? = ?TitleParam?

Make it optional.



You have your parameter now.


Then go to your Report title and change the type from text to report expression


In the report expression just add the parameter from the list


And that is it.

Now you have a dynamic report title.