I am going to talk at modern workplace conference Paris 2018

Reading Time: < 1 minute I’ll be speaking “Implementing SharePoint Hub Sites on Office 365” at modern workplace conference Paris on 16, 17 and 18 October 2018.  I am honored to have this great chance given by the organizer’s. Below are my session details:- Date : 17-Oct-2018 2:40 PM – 3:30 PM Session : Implementing SharePoint Hub Sites on …

Solution: clientcontext.executequeryasync not working for Some Users

Reading Time: 2 minutes Issue: While executing Asynchronous call to get users list or any SharePoint lists data executequeryasync function not working for some users. My requirement: When loading the page I need to get the user name and validate the user belongs to one of the group in SharePoint. First I created a code …

Clone or Copy SharePoint Pages/Sites Pages Library Files, Folders and Webparts from one site to another using CSOM

Reading Time: 3 minutes Always we have a limitation to copy the pages and Site Pages to another site Issues Copy a page across different site collections Moving SharePoint Pages from one site to another Publishing feature enables site it is not supported to migrate root sites into sub sites or sub sites into …

Clone or Copy SharePoint document Library Files and Folders from one site to another using CSOM

Reading Time: 2 minutes While migrating share point documents we need to migrate document Library Files and Folders from one site to another. It is easy to copy the files from one document library using the Open with Explorer command under the Library tab in Library Tools, but it won’t copy the meta data. Also we …

Unable to Edit SharePoint Office files in IE – The file is corrupt and cannot be opened /The URL for this file is too long for the application

Reading Time: 2 minutes While Edit the Office files in SharePoint, if you receive below errors The file is corrupt and cannot be opened The URL for this file is too long for the application.  A temporary copy of this file will be opened on your computer.  You must save this copy as a …

Best Practices for Office 365 SharePoint Development or Implementation

Reading Time: 7 minutes Best Practices on Naming convention When creating columns, always create it with a short name first. This should be a fairly unique version of the full name, without any spaces, punctuation etc. This is because the column internal name is generated from that first name; if you allow spaces then …

SharePoint REST API Supporting keywords – OData query URL

Reading Time: < 1 minute SharePoint REST/ODATA API https://office.sharepoint.com/sites/mysitecollection/_api/web/lists/getbytitle(‘Tasks’)/Items?$select=Title&$filter=Title eq ‘Jenkins’ and Status ne ‘Open’ SharePoint REST API Syndax Example Syndax $select $select=Title,Author $orderby asc &$orderby=Title asc desc &$orderby=Title desc $filter $filter=Title eq ‘Jenkins 05’ $expand $select=Title,Products/Name&$expand=Products/Name $top items?$top=10 datetime $filter=Created ge datetime’2015-04-01T00:00:00′ guid _api/web/lists(‘4eff143c-0b29-420a-93fb-ed33a1efb934’)/Items and Title eq ‘Jenkins’ and Status ne ‘Open’ or Title …

Set edit permissions only to creator and Owner of list item SharePoint 2013

Reading Time: < 1 minute Hi All, Most of the time we receive a requirement to stop edit other than creator and Owners. most of them suggest custom solution – Event receiver/Event Handler. There is a out of box solution for SharePoint and Office 365 Go into the List Settings,  Advanced Settings, and you should be able …