Posts

Showing posts from December, 2018

SharePoint Coding in Few Lines - Xmas 2018

Image
Xmas Gift 2018 from Thangu – SP Coding in Few Lines <img class="wp-image-3576 size-full" title="Xmas Thangu SharePoint gift" src="https://publishers.collab365.community/wp-content/uploads/sites/9/2018/12/Xmas.png"/> Xmas Thangu SharePoint gift Why bother about Simple Code Solutions? <img class="wp-image-3574 size-large" title="Few lines in SharePoint" src="https://publishers.collab365.community/wp-content/uploads/sites/9/2018/12/CityvsVillage-1024x271.png"/> Few lines in SharePoint Which scene is better? A simple village or a complex City? Few lines of coding is better than many lines of coding. Long ago, developers were paid for writing many lines of code and charged for a number of lines of code. Recently, even non-developers can achieve great things with tools like PowerApps, SharePoint Designer, InfoPath and SharePoint itself. However, these tools are complex and ...

Simple SharePoint Crud with PnP

Image
Simple SharePoint Crud with PnP Simple is Superb. I have driven in Pittsburgh and missed the simple straight highways. There are various ways to do CRUD coding in SharePoint. I am using PowerShell to explain the CRUD development using CSOM,REST etc. Here, I am focussing on the simplest of all CRUD operations for developers with one line of code. PnP PowerShell Working on PnP PowerShell is applicable even to administrators with little coding knowledge who can focus on writing their ideas in single lines, similar to writing sentences in English. If you want to create a site without clicking often from UI, you can use the following command: New-PnPWeb -Title "Site1" -Url "Site1" -Description "Dev SubSite" -Template "STS#0" 1 New - PnPWeb - Title "Site1" - Url "Site1" - Description "Dev SubSite" - Template "STS#0" Many times, I forget where is that...