Event Handler to Synchronize (Populate Data) List / Document Library Columns...
We have created a solution for one of our clients. The solution is based on uploading documents and attaching workflows with the documents. Uploaded documents have different columns describing the...
View ArticleImport Spreadsheet Error: Method ‘Post’ of object ‘IOWSPostData’ Failed
We were trying to import Excel sheet data into SharePoint and got following error: Method ‘Post’ of object ‘IOWSPostData’ Failed Resolution: Need to perform following steps: Go to “C:\Program...
View ArticleMOSS 2007: You cannot create alerts for lists for which users can only read...
We tried to set up alerts for users for a list with customized permissions. Following error appeared: You cannot create alerts for lists for which users can only read their own items. Resolution:...
View ArticleSharePoint 2007: Last Modified Date of Lists / Document Libraries
Scenario: We need to find the last access / modified date of all document libraries in a site collection. Resolution: Following code solved our issue SPSite spSite = new SPSite(“SiteCollectionURL”);...
View ArticleSharePoint 2010: PowerShell Script to create Discussion Board / Discussion Forum
Scenario: We need to create discussion board / discussion forum using power shell script Resolution: $spWeb = Get-SPWeb $webURL $listTemplate =...
View ArticleSharePoint 2010: PowerShell Script to add / display list as webpart
Scenario: We were required to add / display discussion forum / discussion board as a webpart on a publishing page. Resolution: We used “XsltListViewWebPart” webpart to accomplish above requirement...
View ArticleSharePoint 2101: Migrate List Views to SharePoint Online
Scenario: We need to migrate List Views from SharePoint 2010 Server to SharePoint Online. We can use Web Services or Client Model. We decided to use Views Web Service. Resolution: First, we created a...
View ArticleSharePoint: Associate Workflow with a list programmatically
Scenario: We need to associate a workflow with a list or create an instance of workflow for a list using SharePoint Object Model (OM) Resolution: In order to associate workflow with a list, we will be...
View ArticleExport data from SharePoint Online List
Export data from SharePoint Online List Exporting SharePoint list to Excel or CVS is one requirement that have been raised again and again. We approach to solution usually by opening Excel and...
View Article