Thursday, April 13, 2023

New videos on YouTube: Useful tools when working with Search

 

Both when answering questions and handling issues on the PnP Modern Search GitHub project and in my daytime job as a Senior Solution Architect with Fellowmind I work a lot with both Microsoft and SharePoint Search related issues.


When people report an issue with Microsoft Search or the PnP Modern Search web parts the root cause is often related to either:

  • The KQL query is not correct
  • The fields they are missing has not been created as Site Columns 
  • The fields have not been turned into crawled properties as the users has forgotten to add content in the list/library
  • The crawled property has not been mapped or mapped incorrectly


When this kind of issues shows up in a Search Results web part or in the Out Of The Box search it is pretty difficult to debug, hence this blog post and the Useful tools when working with Search series on YouTube:


Episode 1 is about Using the SP Editor

Episode 2 is about Using the SP Query Tool 

Episode 3 is about Using the Graph Explorer ( planned for week 18, early May)

  

If you have any ideas about additional tools or methods that would be useful when debugging a search related issue please let me know on twitter

Thursday, March 23, 2023

The joys of hiding content from Microsoft Search

 

It was just a question of time, sooner than later we would get a request to hide content in Microsoft Search.


"But why not just use permissions to ensure that only the right group of people can see the content", I hear you say?


Well, in this case the content is visible for everybody, but the business rule is that the content MUST be reviewed at a set interval, and if the content has not been reviewed within this deadline, the end user should not see the content in search anymore.


One option could be to have a workflow that breaks the permissions on the item level once the deadline has been reached, but that option comes with a certain smell of substandard performance and complexity.


The Microsoft Search approach looked less intrusive and gave me some options:

Option A)

I could add a Result Type in the Search and Intelligence Admin center that would "intercept" all items of the specific type (using Content type id or similar property) and only display those items that have been reviewed using the $when clause.


Option B) 

I could change the query for the verticals in order to exclude specific content using a subset of KQL (Manage search verticals


Initially I selected Option A, and use the Search Layout Designer to define the layout, but when the layout was used in the Result Type it had a hard time deciding if the date of the deadline is in the past or the future.

Both blocks below were displayed...but only in the Result Type, in the Search Layout Designer it worked as expected. 😕




Due to this issue, I investigated Option B.

Step one was to get the query right, and using Graph Explorer this was pretty easy:



When I tried to negate the query I found that using the - sign as a shorthand for NOT seems to be a no-go going forward.



Works




Once that query works I just updated the Query for the relevant verticals, in this case only the All vertical.


Add "cacheClear=true" to your URL when testing the update as per Manage search verticals


Can this approach scale?

For now, this solution does solve the current problem, but I doubt very much that it can scale as additional content needs to be excluded. 
It will be interesting to see the solution patterns that will be developed in the coming months as Microsoft Search becomes more top of mind in the MS365 world.










Friday, March 17, 2023

Boost you PnP Modern Search List Layout

 

When working with the PnP Modern Search web parts I am often ask by my customers to tweak the layout of the results.

The Lists Layout seems to be the most popular layout. It looks like this out of the box when searching for documents with some metadata:



We can enhance this layout by making a few simple updates.


Go the Layout section and click on Edit results template



Step one: Upgrade the user info

Find the code block below in the layout template


<span class="template--listItem--author">

{{#with (split (slot item @root.slots.Author) '|')}}{{[1]}}

{{/with}}

</span>


This section shows the name of the Author. Replace it with this section


<mgt-person

ser-id="{{getUserEmail (slot item @root.slots.Author)}}"

      view='threelines'

      show-presence="true"

      person-card="hover"

      avatar-size="large"

      />

</mgt-person>



This is mgt-person, a very powerful component from the Microsoft Graph Toolkit gallery. This component is very configurable, see Person component in MGT for details.

In this case I have chosen the 3 line view (Name + Email + Job title) and that the person-card shall be available. The person card is the card that shows up when the mouse hover above a user's photo. The content of the hover card can also be tweaked, see the link above.



Step two: Update the metadata tags

Find this section:

{{#if (slot item @root.slots.Tags)}}
pnp-icon data-name="Tag" aria-hidden="true" data-theme-variant="{{JSONstringify @root.theme}}"></pnp-icon>
      <div>
      {#each (split (slot item @root.slots.Tags) ",") as |tag| }}
      pan>{{trim tag}}</span>
     {{/each}}
      </div>
{{/if}}


Replace it with this

{{#if (slot item @root.slots.Tags)}}
div>
      {#each (split (slot item @root.slots.Tags) ";") as |tag| }}
            pnp-icon data-name="Tag" aria-hidden="true" data-theme-variant="{{JSONstringify @root.theme}}"></pnp-icon> {{last (split tag "|")}}
            {{/each}}    
/div>
{{/if}}


Finally update the css for template--listItem--result :

 .template--listItem--result {
            flex-basis: 100%!important;
            background-color: antiquewhite;
            box-shadow: 5px 10px #888888;
        }



The final result looks like this.





The layout file can be downloaded from GitHub

Sunday, March 12, 2023

Boost the person fields in your PnP Modern Search Layout

 

This rather generic SharePoint list is created by a self-service site provisioning setup, and it shows who is in change of any Site Collection.






On the front page on each of the Site Collections the customer requests that we insert a web part with some basic site information. In this case the People web part is not sufficient as some of the metadatea can change over time, such as e.g. the Site Owner.

The obvious choice is therefore a PnP Modern Search results web part using a query like 

Path:https://tcwlv.sharepoint.com/sites/SampleTeamSite/Lists/SiteCreationRequestList* basicProvisioningSiteUrlOWSTEXT:{Site.Url}

(basicProvisioningSiteUrlOWSTEXT is the internal name for the SiteUrl column as seen above)

This will give me the data in the list item having the SiteUrl that is the same as the current Site Collection. 


I looked in the People layout and found that the template used to display a person is a pnp-persona template and used it in the custom layout. It looks like this and has not hover card.



This is off cause better than nothing, but even the OOTB List has a hover card, so it needed an upgrade.

I asked the community on the PnP-modern-search discussions and @patrikhellgren provided an incredibly detailed sample using the mgt-person template. (Microsoft Graph Toolkit).

So, by updating the Layout to this I get a tree line Card and the hover card as well 😀

<template id="content">

    {{#> resultTypes item=item}}
        {{!-- The block below will be used as default item template if no result types matched --}}
       
       
        <div class="contactheader">
        Primary Contact
        </div>
       
        <mgt-person
            user-id="{{getUserEmail (slot item @root.slots.Owner)}}"
            view='threelines'
            show-presence="true"
            person-card="hover"
            avatar-size="large"
        />
        </mgt-person>
        <br><br>
    Template: "{{slot item @root.slots.Template}}"

    {{/resultTypes}}
</template>






As an additional bonus I am pretty sure (not verified yet), that the photo comes from AAD and not the User Profile Application, a service that have provided several headaches over the years, especially related to the employee photo ;-)













Saturday, February 25, 2023

Creating a Planner tab in Teams, including a number of Tasks, in an Azure Function

( Updated 1 March 2023)

As part of an update to a provisioning tool I was looking into creating a Planner, a Bucket and a handful of tasks and finally connecting the Planner to a tab in one of the channels in my Teams Team.   




The tools of choice is an Azure Function running PnP.PowerShell ( version 1.12 )  as this combo allows both us and the client to alter existing functions and create new ones without having to hire a hardcore developer. Quite a few consultants and IT administrators knows enough PowerShell to work with these fairly simple scripts.  💪

Creating the Planner, the bucket and the tasks goes like this: (draft version , not ready for product yet)



$localConn = Connect-PnPOnline -Url $siteUrl -ClientId $ClientId -thumbprint $thumbprint -Tenant $TenantName -ReturnConnection -erroraction stop

$PlannerPlan = Get-PnPPlannerPlan -Group $groupId -Identity $PlannerName -Connection $localConn

if(-not $PlannerPlan)
{
    $PlannerPlan = New-PnPPlannerPlan -Group $groupId -Title $PlannerName -Connection $localConn
}

$bucket = Add-PnPPlannerBucket -Group $groupId -Plan $PlannerPlan.Id -Name "Tasks" -Connection $localConn

$newTask = Add-PnPPlannerTask -Group $groupId -Plan $PlannerPlan.Id -Bucket $bucket.Id -Title "Task A" -Connection $conn

$newTask = Add-PnPPlannerTask -Group $groupId -Plan $PlannerPlan.Id -Bucket $bucket.Id -Title "Task B" -Connection $conn

$newTask = Add-PnPPlannerTask -Group $groupId -Plan $PlannerPlan.Id -Bucket $bucket.Id -Title "Task C" -Connection $conn

$newTask = Add-PnPPlannerTask -Group $groupId -Plan $PlannerPlan.Id -Bucket $bucket.Id -Title "Task D" -Connection $conn

$plannerChannel = Get-PnPTeamsChannel -Team $groupId -Connection $conn | Where-Object {$_.DisplayName -eq "RFP"}

However, connecting the Planner to the tab in Teams proved to be a challange as the Add-PnPTeamsTab looks like this:


Prefect, as one of the options in the Type enum is "Planner" this should do the trick:

Add-PnPTeamsTab -Team $groupId -Channel $teamsChannel -DisplayName "RFP" -Type Planner -ContentUrl $contentUrl


But no. Error : Add-PnPTeamsTab: A parameter cannot be found that matches parameter name 'ContentUrl'.


Later in the day I saw that @PaoloPia (Paolo Pialorsi) had released a YouTube video : "Learn how to use Graph to automate provisioning of Planner plans, buckets, and tasks". In that video Paolo was using MS Graph to create the tab and connect it to the Planner.

When I added a comment on Twitter that I most likely was going to use the same approach as the Add-PnPTeamsTab approach apparently didn't work.

Gautam Sheth (@gautamdsheth) saw this and answered that I should use -type "Custom" instead as this would allow me to set the ContentUrl.

This will create a Planner tab to your channel:

$teamsTab = Add-PnPTeamsTab -Team $groupId -Channel $plannerChannel -DisplayName "RFP" -Type Custom -TeamsAppId "com.microsoft.teamspace.tab.planner" -Connection $conn -ContentUrl "https://tasks.office.com/[TenantName].onmicrosoft.com/Home/PlannerFrame?page=7&planId=$($PlannerPlan.Id)"


So thanks to a comment on Twitter and to Paolo and Gautam I learned something new, got the function to work using PnP.PowerShell exclusively. 

In order to ensure that this option reaches a broader audience the documentation for Add-PnPTeamsTab has been updated with a example like the code above.

  
Update 1 March 2023:

Gautam has updated the Cmdlet and I have updated the documentation with this example:
No need to use -Type Custom anymore ✌




Monday, February 20, 2023

Microsoft search : using a DateTime field in your Result Types

In one of our products, we are using a Generic SharePoint list to store some information that is required to be visible within a specific timeslot ( beginDate & EndDate).

In the ol' days we could easily exclude those listitems in a data source derived from the LocalSharePointResults data source using a Date variable.


But these days we are dealing with Microsoft Search and a different set of rules.


 Since Microsoft Search will display those list items by default we have a few options:

Option 1: Create two Result Types and use e.g. ContentTypeId and the RefinableDates to handle the items that should be show and not shown respectively.



 Well, this is as far down that path that I got. Date fields in the Result type builder does NOT have any date variables, and according to a very reliable source with Microsoft there are no plans to offer this option.


So, we are left with Option 2 or 3.

Option 2: For each relevant Search Vertical we must add a filter to hide any item outside the range.
(risky as this rule might be forgotten and not implemented in a Vertical added at a letter date)


Option 3: Use the Result Type without any date filter and set up the Adaptive Card to hide any item outside the range.

I am not happy about having "business logic" in the GUI/Display layer but I guess we will go with Option 3 for now.