question

sns1 avatar image
0 Votes"
sns1 asked CaseyYangMSFT-4714 commented

Migretion issue


Migrated from sharepoint on premisis 2013 to sharepoint online, after this 2 search web parts which are content queri and content serch are not working instead giving an error as per the attached screenshot. We have done re-index at site level and site collection level.
we have seen refinement results are coming up after some time something went wrong error is popping up, u can see in the serch error screenshot of destination sites( SP online sites
Please suggest where could be the problem

office-sharepoint-online
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

CaseyYangMSFT-4714 avatar image
0 Votes"
CaseyYangMSFT-4714 answered CaseyYangMSFT-4714 commented

Hi @sns1,

Does this issue happen to all users? Does this issue still happen if you use some other query ?

1.Please check search setting allow this site or document to appear in search results.
Site level: Settings > Site information > View all site settings > Search and offline availability > Allow this site to appear in search results
Library level: Settings > library settings > Advanced settings > Allow items from this document library to appear in search results

2.Please check whether this search results web part has Hit-highlighted managed properties disappear in search schema.

For Reference: SharePoint unfamiliar error on kw search: SubstrateSearchException: Remote executors failed
Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.


If an Answer is helpful, please click "Accept Answer" and upvote it.

Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


· 9
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

HI CaseyYang,


Every step u mentioned is in in place.
We have mapped custom property to mapped now as they are not present in the target
I see which are available in search schema

& same issue describing in more details, one more point to add we have contant serch web part in the source side so while writing change query in the web part on source site collection it is written as contant type name and subsites for that web part it is written with contant type guid instead content type name so it is effecting the search. Looks like now same GUID is not reflecting in the destination which is causing the search issue as explained in my first thread. Please let me know what we can do in this situation

0 Votes 0 ·

Hi @sns1,

You could use the following PnP PowerShell commands to check the content type ID in SharePoint online.

 #Config Variables
 $SiteURL = "https://xxx.sharepoint.com/sites/xxx"
 $ContentTypeName ="xxx"
     
 #Connect to PNP Online
 Connect-PnPOnline -Url $SiteURL -Credentials (Get-Credential)
     
 #Get the site content type
 $ContentType = Get-PnPContentType -Identity $ContentTypeName
     
 #Get Content Type ID
 $ContentType.Id.ToString()



0 Votes 0 ·
sns1 avatar image sns1 CaseyYangMSFT-4714 ·

HI ,

How do we know content type name from known respective content type GUID? Please help me in this

and also I see out put as compressed, and i want to export to excel

0 Votes 0 ·
Show more comments
sns1 avatar image
0 Votes"
sns1 answered CaseyYangMSFT-4714 commented

Hi CaseYang,

I am seeing different error now. PFA.
131589-errorrrr.png



errorrrr.png (23.2 KiB)
· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Hi @sns1,

Using PowerShell to contact site, the site url you type should be like:" https://xxx.sharepoint.com/sites/xxx". For example, your site url should be like"https://xxx.sharepoint.com/sites/firstsite"

0 Votes 0 ·