Using property restrictions in your KQL queries, you can restrict your search to only pull back certain things like calendar events for instance. This is a very powerful way to limit search results and get exactly what you are looking for. You can use these in your query like this: " lunch contentclass:STS_ListItem_Events " This will return only calendar events with the word "lunch" in them. Pretty powerful and pretty simple. Here is a list of available content class items: STS_Site – Site Collection STS_Web – Site (Web) STS_List_850 – Page Library STS_ListItem_850 – Page STS_List_DocumentLibrary – Document Library STS_ListItem_DocumentLibrary – Document Library Items STS_List – Custom List STS_ListItem – Custom List Item STS_List_Links – Links List STS_ListItem_Links – Links List Item STS_List_Tasks – Tasks List ...
I ran into a strange issue today when using the SharePoint 2013 REST API for Lists with Managed Metadata columns but I just had a ‘clever workaround’ moment with SharePoint’s oData/REST implementation when it comes to filtering list items based on taxonomy (managed metadata) columns. Now I do not consider myself a developer, so this article is probably a little verbose for some readers, but should be helpful to power users or IT pros. 1. To filter the Taxonomy columns in SharePoint list using Rest API call we need to use the Post method. 2. The Rest API call will give errors some times when the Rest API Query string crosses limit 260 characters that time we will use the Query in the body. Those things are clearly explained in the below example clearly. 3. WE can use the CAMEL Query in the Rest API call this example come under that. < script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" ></ script > < scri...
Custom Timer Job in SharePoint 2010 Introduction: In this article we will be seeing how to create a custom timer job in SharePoint 2010 using Visual Studio 2010. A timer job runs in a specific Windows service for SharePoint Server and performs infrastructure tasks for the Timer service, such as clearing the timer job history and recycling the Timer service; and tasks for Web applications, such as sending e-mail alerts. A timer job contains a definition of the service to run and specifies how frequently the service is started. The SharePoint 2010 Timer service (SPTimerv4) runs timer jobs. In this article we will be performing the following steps Creating a custom timer job. Deploying the timer job. Registering the timer job Managing configuration data for timer jobs. Solution Overview: I have a web application => Site Collection =>3 Subsites as shown in the above diagram. Each subsite has a custom list รข€“ "Projects" which has the follo...
Comments
Post a Comment