User Profile
kalpeshvaghela
Steel Contributor
Joined 6 years ago
User Widgets
Recent Discussions
Re: Sharepoint integration error 401 C#
Adil_Shaikh 401 Unauthorized error comes when you don't have assigned necessary permission in your Azure AD App Registration or you didn't consent those permission. You can verify it by accessing https://jwt.io. In this site you can paste on access token generated from your code on left side in "Encoded" section and it right side you would able to see using which scope access token is generate and it will also show necessary permission, client id, scopes etc. Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community3.8KViews0likes0CommentsRe: I am not able to proceed to set up microsoft 365 developer program.
dheerajsain I have experienced two scenario while registering for Developer Program: If you have registered for Developer Program before using same mobile number then it's not allowing and showing same message as shown in your screen shot. If you are sure that you haven't registered for Developer Program before using this number then try to add your country code before the mobile number e.g. 911234567890 where 91 is country code (for me it worked -> but I tried this trick around 6 months ago) Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community1.1KViews0likes0CommentsRe: SharePoint Online - Manage Access has changed
laceyk Yes. It has been applied Globally by Microsoft in all the tenant (At least I am seeing in my all tenants located in different region). See related article -https://techcommunity.microsoft.com/t5/microsoft-onedrive-blog/announcing-a-more-intuitive-sharing-experience-across-microsoft/ba-p/2384952 Now you can go to advanced settings only using Manage Access menu which is visible into ECB and Information Panel as shown in below screen shots: Click on three dots to navigate into Advanced Settings page. Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community3.8KViews1like2CommentsRe: SP not finding/returning all refinable properties
xls0288 Is Content Approval enabled in your library? If it's enabled then Search will crawl only documents which are approved. Another thing you can try by getting same search result using SharePoint Search Query Tool and verify whether here you are getting value in Refinable Managed Properties or not? so that you can at least have a idea whether it's PnP Search issue or crawling issue? Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community2.7KViews0likes1CommentRe: How to add Topic Header and Show a Topic Header for SitePages using powerautomte/Rest API
DJoshi2302 You can call below API to Set Topic Header API URL: {Site URL}/_api/sitepages/pages({ItemID})/savepage Headers: if-match: * Request Body: { "TopicHeader": "Topic Header Custom", } Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community811Views0likes1CommentRe: People/Group Notifcation
robrkhw There are two approaches: Approach 1 You can create rules two send notification using following steps Click on Automate -> Create Rules -> When Column Changes Click on When Column Changes and do following configuration (In below screen shot "Users" is my multi allow user column) This approach does have following limitation It will send notification to every users added in fields whenever you change something in your user field (either adding user or removing user) We can't have control in notification content here Approach 2 you can use power automate flow using "When item is created or modified" trigger & check if User field changed or not based on getting previous version of item and then you can send notification to user Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community819Views0likes1CommentRe: Sp Calculated Dates with a twist
DJKoala323 Try without Day function for day, it should work: =IF(Frequency="monthly",(DATE(YEAR([Last deliverable date]),MONTH([Last deliverable date])+[Date Calculation Input],[Due Day of the month]))) Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community717Views1like1CommentRe: How to remove recent documents view in sharepoint org chart
matthewcarterACG If you are talking about below Files section, then it does not show recent documents by all the employees but it does show recent documents by the user for whom you opened this callout/page. And if you are viewing other user's profile then it will show only recent document of that user where you have access to that documents. SharePoint will never show any content where current user don't have access. Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community8.8KViews0likes0CommentsRe: How to use Version in a calculated column?
NastaraN As per my understanding, In calculated column we can't use OOTB Version column. But there is one classic feature (Which is still available in SharePoint Online) which you can use i.e. Labels from Information Management Policy. Following are the steps to do so. Activate Site Collection Level Feature with Name "Library and Folder Based Retention". Go to library settings and click on Information Management Policy Settings Click on Document Content type (If you have multiple content type then you need to configure for each content types) Check on Enable Labels and Define Label Format (You need to use SharePoint Column's Display Name Here). In below screen shot "Version" and "Title" is default column and "Document Number" is custom column. . After adding Label Format click on Refresh button and then click on OK button. After performing above steps, one column with Label will be created automatically in library and you can add it in view, and SharePoint will calculation it's value based on given Label Form. Limitation: If you document library does have already uploaded document then it will not apply this label by default. (I am not sure whether it's default behavior or bug in SharePoint). For Existing document if you update it manually then label will be applied. Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community4.3KViews0likes0CommentsRe: Move a file to a folder in the same library without read permission
spena1611 You want to move file in same library using Power Automate but Account which you are using for Power Automate does have only read permission. If my understanding is correct then you need to use App Only Authentication which required to register application and provide necessary permission to application. Below is the helper links for the same: https://anupams.net/sharepoint-rest-service-microsoft-flow/ Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this communityRe: New SharePoint site created not inherit external sharing from tenant level
Don_Vlogeer I checked with below settings and not able to reproduce this issue: I tried to create site from both the place i.e. from SharePoint Admin Center and also creating new Teams from MS Teams (which will anyway created site connected with group). Can you confirm that you have same settings as I mentioned in above screen shot? Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community893Views0likes1CommentRe: Can we have a sharepoint online url without ".sharepoint.com"
yname2480 It's possible to create custom web app with Microsoft Authentication and then redirect to your SharePoint Site Below are some article https://learn.microsoft.com/en-us/azure/active-directory/develop/web-app-quickstart?tabs=windows&pivots=devlang-aspnet Important: Following scenario must be handled in your custom web app In SharePoint, You will able to access necessary page based on URL e..g https://contoso.sharepoint.com/sites/test1,https://contoso.sharepoint.com/sites/test2,https://contoso.sharepoint.com/sites/test2/Lists/Tasks, etc. Here SharePoint will show to the correct page based on URL Now if you use your custom URL (https://spo.domain.com/sites/test1)then you need to handle that scenario in such a way that after authentication it will redirect to correct SharePoint URL. Limitation: Whenever SharePoint will send an email (e.g. when you share any content to any user, alert), it will use only https://contoso.sharepoint.comURL only. Here we can change this behavior Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community2.3KViews0likes0CommentsRe: Can we have a sharepoint online url without ".sharepoint.com"
yname2480 According to my knowledge it's not possible to use custom domain for SharePoint Online Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community2.4KViews1like2CommentsRe: Unable to retrieve list items with app-only access token via PnP PowerShell
Number_Five Make sure thatDisableCustomAppAuthenticationis set to False. By default in new tenant this setting is set to True, https://learn.microsoft.com/en-us/powershell/module/sharepoint-online/set-spotenant?view=sharepoint-ps#-defaultsharinglinktype You can change this setting via SharePoint Online Management Shell Make sure that once you change this setting at tenant level, it can take up to 24 hours to apply this settings. Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community3.3KViews0likes1CommentRe: Highlighted content library not filtering as expected
PorciaUmber It seems that you are missing <Where>tag inside CAML Query and also you don't need to encode "&". Try below query: <View> <Query> <Where> <Eq> <FieldRef Name='FieldTeam' /> <Value Type='Taxonomy'>Avon & Stour</Value> </Eq> </Where> </Query> </View> See below screen shots: See more documentation on CAML Queryat below link: https://learn.microsoft.com/en-us/sharepoint/dev/schema/query-schema Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community488Views0likes0CommentsRe: RetryQuery not working after throttling
cristinadulau Can you try to use ExecuteQueryRetryFunction from PnP.Framework. ? If it's not possible for your to use above Nueget Package then you can copy that function from PnP.Framework repository which you can find code at here Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community1.6KViews0likes0Comments
Groups
Recent Blog Articles
No content to show