SharePoint Saturday Baltimore – Office 365 and Azure Functions

Last week, I was at Baltimore speaking at SharePoint Saturday Baltimore. I was talking about using Azure Functions for SharePoint and Office 365 Developers.

When I talk with Developers in the community they are not aware how powerful Azure Functions are and they are very useful in various scenarios. My talk was to cover just that i.e. various scenarios where we can use Azure functions when using Office 365 Services.

I covered using Azure functions with:

  1. SharePoint Webhooks
  2. SharePoint Framework
  3. PowerApps
  4. Microsoft Flow

In my session I also covered how to get started with Azure Functions and how to debug them. So if you are new to Azure functions then you should definitely take a look at Azure Functions Documentation.

https://docs.microsoft.com/en-us/azure/azure-functions/

It was great speaking at SharePoint Saturday Baltimore and meeting with lots of passionate users.

Kudos to all the organisors, sponsors and volunteers for successful event!!!

I look forward to speaking in next year’s event.

I will be speaking at SharePoint Fest 2017 – Seattle

I will be speaking at SharePoint Fest Seattle 2017 on August 10 and 11. This will be my first time presenting at SPFest and I am pretty excited to be presenting at this awesome event.

I will be talking about SharePoint On-premises Search Display templates.

While I looks like Display templates do not have future with the way Microsoft is moving ahead with Modern view I still think that there are many clients who are currently using SharePoint on-premises as well as Office 365 classic view.

One word of caution if you are currently using Office 365 classic view or planning to go to Office 365 from on-premises then I personally would not want to invest too much on display templates. There is no clear direction given from Microsoft on display templates so far and hence I cannot say anything with confidence but I will be keeping an eye on all the developments.

But if you are planning on investing on Display template then definitely you should plan to attend SharePoint Fest Seattle this year as I will be talking about display template customization. I will also be covering some advanced scenario.

I look forward seeing you all there.

Edit: The URL of the event is changed since its old event but you can still access the site using the URL below.

https://www.sharepointfest.com/Seattle2017/index.php

 

The SharePoint Conference is back – almost

Microsoft today blogged about an awesome news. Microsoft will be hosting a SharePoint Virtual Summit, a free global online event, on May 16 2017.

Last year Microsoft had Future of SharePoint virtual event which was viewed by over 50,000 users and hence this year Microsoft is bringing it back.

At this year’s SharePoint Virtual Summit you’ll learn how to create a connected workplace in Office 365 with OneDrive and SharePoint and integrated with Yammer, Microsoft Teams, Windows, PowerApps and Microsoft Flow. Microsoft Corporate Vice President Jeff Teper will unveil the latest product innovations and roadmap. You’ll also hear from industry-leading customers on how they are leveraging these technologies as part of their digital transformation. Jeff will be joined by Microsoft corporate vice presidents James Phillips and Chuck Friedman to discuss how Office 365, connected with Windows and Azure, is reinventing productivity for you, your teams and your organization.

Make sure you register and secure your spot.

https://resources.office.com/ww-landing-sharepoint-virtual-summit-2017

SharePoint Saturday Ottawa – December 2016

On December 3, 2016, I was at Ottawa presenting at SharePoint Saturday Ottawa 2016.

The event was at Algonquin college.

I presented on developer introduction to new SharePoint framework (SPFx). I would like to thank everyone who attended my session.
It was awesome to see lot of interest to learn new framework as there were users who did not have any background on SharePoint server side model but wanted to learn more about how they can use their existing web development skills to build against SharePoint Online.
Kudos to all the organisors, sponsors and volunteers for successful event!!!

SharePoint 2013 Check-in / Check-out PDF files using Adobe Acrobat Reader

I get this request once in a while where users wants to checkout PDF document hosted in SharePoint from within Adobe Acrobat Reader or once check-out from SharePoint they want to check that document back in (or save the document) to SharePoint from Adobe Acrobat Reader.

Now if you are using SharePoint 2013 out of the box you may not get this feature. Fortunately there is simple configuration change that you would need to make to have this feature.

On all your SharePoint web front-end servers you would need to edit your DOCICON.xml file and update the PDF mapping to the following.

<Mapping Key=”pdf” Value=”icpdf.png” EditText=”Acrobat Reader” OpenControl=”AdobeAcrobat.OpenDocuments” OpenApp=”AcroRd32″/>

When changing this entry I was reading that it was recommended to perform IISRESET but that is only needed if you need this change to kick in right away. If you can wait then this change does not even require app pool recycle. In my case I had to wait roughly couple of hours (not 100% sure).

Nick Patel also have blogged about this in details if you are looking for additional information.

https://nikpatel.net/2012/09/09/improved-pdf-support-in-sharepoint-2013-delivers-better-user-experience/

Search Results web part not showing all results

Many SharePoint projects uses Search Result Web Part to display data and provide refiners to further filter the result.

As usual to configure that you will drop the Search Result Web Part and provide the query to pull your data. When you test your query you will see that data is returned (if your query is correct) and you will see the result count i.e. number of results.

But when you view the result in real time you will see that the result count does not match. Search Result web part displayed less results than you were expecting.

This is because if search result web part thinks that there are some duplicate data in the results being displayed then it will automatically supress those results.

There are couple of fixes to this.

1) Search result web part settings

When providing the query you can click the Settings tab and select “Don’t remove duplicate option”.

2) Search Result Web Part Export and Import

You can also export your search result web part and find “TrimDuplicates”:true and change it with “TrimDuplicates”:false.

I hope you find this helpful.