where to get the SP 2010 Enterprise Search Query sample?
With "Contains" and "Freetext" option.
i find the tool from complex but its not working in share point 2010 sites.
Is there any tool available to generate SP 2010 search Query?
What tool from CodePlex did you try?
I use the SharePoint SearchCoder tool of zevenseas
http://mosssearchcoder.codeplex.com/
Related
I have to use standard Sharepoint 2010 filters for my list view as described in this article:
http://social.technet.microsoft.com/wiki/contents/articles/20882.sharepoint-2010-tips-on-implementing-the-sharepoint-filter-list-web-part.aspx
but filter category mentioned here:
is missed for my site :(
I have created site based on "Records Centre" template (template that should have most of features installed out-of-the-box) but no luck.
My Sharepoint DB version is: 14.0.4762.1000
Centeral administration tells me that it is: Microsoft SharePoint Server 2010
And when I go to "Migration" option it tells me that I have "Standard CAL" license
Do filters require enterprise license for Sharepoint 2010 server ?
Any ideas?
I have updated license to Enterprise and filters have appeared in web-parts categories.
Now I wonder if I could use them with Standard license
Alike question: SharePoint 2010 Filter Web Parts
I've been hunting all day trying to find some good examples/tutorials on how to pull data into Sharepoint 2013 from CRM 2011. The best thing I have found so far is a SP2010 example, but with VS2012 and SP2013 it seems like so much has changed, and trying to make that tutorial work isn't going well thus far.
I have no experience with SP; with CRM I have used the CrmSvcUtil.exe in the past to generate a class and use that within a .NET app in order to view/update data in CRM. I tried implementing this into my Visual Web Part, but I need to be able to add connection strings to the config file which it doesn't seem are recognized by the web part. I see that I can add a service reference to the CRM Organization service but I'm not sure if/how I can use that to query data. Any help is appreciated, or if anyone could point me in the direction of some good documentation. Thanks!
You have got couple of options.
(1) Use SharePoint 2013 client API.
Consume the client API from your CRM plugin / custom workflow to update the crm data to SharePoint 2013.
(2) Consume SharePoint 2013 webservices from CRM plugin / custom workflow.
I don't think this works in sandbox based solution.
I've heard about FAST Search recently and trying to make sense of it. Whenever I read about it , Sharepoint is mentioned.
Is this a separate product? How is it related to Sharepoint?
I am interested in learning more about it. Where can I find learning resources for it outside of Sharepoint context?
Thanks
SharePoint's enterprise search offering was non-existent, and there was this really nice product called FAST ESP that Microsoft liked the look of, so they bought the company. When SharePoint 2010 came out they made the connection a little easier to configure, and gave it a SharePoint admin UI.
Microsoft Sharepoint 2010 has the Search feature for intranet and people search. This was enabled by integrating MS Sharepoint and MS enterprise FAST. Microsoft FAST is an enterprise Search product which can be used as a stand alone search product for any website. There is no online documentation source for MS Enterprise Search. It can be compared to Endeca, another enterprise Search product.
I've a SharePoint installation in my virtual machine. How do I find whether it is SharePoint Foundation or SharePoint 2010? I've run this command -
Get-SPFarm | Select BuildVersion
and it is giving me the build version as 14.0.4762.1000. How do I identify the version from that?
Okay, should have searched a bit longer. I found it here - https://sharepoint.stackexchange.com/questions/3886/how-to-detect-the-edition-of-sharepoint-2010-installed. We can verify a regedit key to identify the GUID which matches to a SharePoint edition.
There is a page on MSDN http://msdn.microsoft.com/en-us/library/ff721969.aspx using registry access to list installed SharePoint products. However, sometimes you don't have enough permissions to look to the registry, or you want to use SharePoint API only - not to depend on registry paths. (You may need this check in some code that you deploy with a SharePoint solution where the registry access could be an unnecessary requirement.)
Your link to stackexchange above points out also a way using the SPFarm.Products property in PowerShell. This would be a complete code to check the SharePoint Server release in C#:
// B2C0B444-3914-4ACB-A0B8-7CF50A8F7AA0 : SharePoint Server 2010 Standard Trial
// 3FDFBCC8-B3E4-4482-91FA-122C6432805C : SharePoint Server 2010 Standard
// 88BED06D-8C6B-4E62-AB01-546D6005FE97 : SharePoint Server 2010 Enterprise Trial
// D5595F62-449B-4061-B0B2-0CBAD410BB51 : SharePoint Server 2010 Enterprise
Guid[] serverGuids = { new Guid("B2C0B444-3914-4ACB-A0B8-7CF50A8F7AA0"),
new Guid("3FDFBCC8-B3E4-4482-91FA-122C6432805C"),
new Guid("88BED06D-8C6B-4E62-AB01-546D6005FE97"),
new Guid("D5595F62-449B-4061-B0B2-0CBAD410BB51") };
// If a Server ID cannot be detected we are running on Foundation.
bool isServer = SPFarm.Local.Products.Any(productGuid =>
serverGuids.Contains(productGuid));
--- Ferda
For a customer project based on SharePoint 2013 we had the same problem. For this case we developed a simple Helper, which can be easily adapted for SharePoint 2010. More Informationen about the helper and how to use it can be found here:
http://msscorner.de/2014/06/11/identify-which-sharepoint-2013-edition-is-in-use/
If you wanna use this Helper for SharePoint 2010, you only have to change the SharePoint 2013 SKUs with the SharePoint 2010 SKUs, which are listed above.
I hope this will help you!
I wonder that, with a use of minimum custom code use, how easy or hard would it be, compared to previous versions, to build a community portal in Sharepoint 2010, in which users upload, view and comment videos, share videos and so on.
You can ofcourse take Youtube as an example.
Thanks.
Some links from Microsoft.com:
What's New in Microsoft SharePoint
Server 2010
What's New in SharePoint Server 2010
Microsoft SharePoint 2010 Overview
Check out this Walkthrough:
Walkthroughs: Creating and Customizing a Video Sharing Site
http://msdn.microsoft.com/en-us/library/ff464364.aspx