Performance Point Server, approval’s don’t work
When you create an approval workflow in Performance Point, it appears to work. Unfortunately it doesn’t. When a user submits an excel template, to an approval it actually save the data to the...
View ArticleSharePoint Error tab in navigation
If you notice your navigation has gone away and you have a tab called “Error:”, you have a problem. You may also notice that authenticated users can’t navigate your site. This is caused when you have...
View ArticleHow to create sub sites in SharePoint 2007
Here is some code to create a subsite in SharePoint. The important part to remember is to set AllUnsafeUpdates (and unset), otherwise it won’t work. try { SPWeb webSite = SPContext.Current.Web;...
View ArticleHow to check if a project template exists
If you are creating sites based off custom project templates through code you should if the project template exists. If you don’t and you try then SharePoint will through an error. Here is a simple...
View ArticleHow to create a new site based on a custom site template
Here is a method to create a sub site based on a custom site template. You need to pass in your new site name and the name of the site template. It will check the available site templates for the one...
View Article