SharepointOnline
14 TopicsGroup by view not showing all groups
Hello, I have a document library with multiple tags. One of the fields is a dropdown with 3 items. When I do a 'group by' using the dropdown field I can only see groups for 2 items. The 3rd one is just invisible. I have documents tagged to all three options. So all the 3 tags are in use. When I ungroup them they are all visible. Any help will be appreciated.8.1KViews0likes2CommentsUpdating Editor field on SharePoint Online using the CSOM with App Only Auth
I have the following issue. I work with CSOM and I want to update the Author and Editor field on a List Item object. The actual problem is that the Editor is not updated and the value is set to the SharePoint App user. The problem occurs after using the App Only Authentication. The following method is used to update Author, Editor, Creation Date and Modified Date. List<SP.ListItemFormUpdateValue> values = new List<SP.ListItemFormUpdateValue>(); foreach (ItemProperty property in properties) { property.AddPropertyToUpdateList(ctx, item, info, values); } IList<SP.ListItemFormUpdateValue> results = item.ValidateUpdateListItem(values, true, string.Empty); ctx.ExecuteQuery(); info.Log("<--// Called \'ValidateUpdateListItem\'. //-->"); // check for API-failures. CheckErrors(results); Do you have any ideas why this is not working for Editor but for Author-it works? I also tried to use the Update method to edit the Author and Editor, but this is also not working for the Author field. User user = service.Ctx.Web.EnsureUser("email address removed for privacy reasons"); ctx.Load(user); ctx.ExecuteQuery(); FieldUserValue userValue = new FieldUserValue(); userValue.LookupId =user.Id; item["Editor"] = userValue; item["Author"] = userValue; item.Update(); ctx.ExecuteQuery();4.1KViews0likes3CommentsSet-PnPUserProfileProperty with Application Permission in Azure Function
When using Set-PnPUserProfileProperty in Azure Function with Power Shell and the permissions has been defined using the Application Permission. Once connected to the admin site URL using client id, tenant and cert and try to update the User Profile Property, it throws the below error Access denied. You do not have permission to perform this action or access this resource. Attached the screenshot for the reference Below are the permissions given for the application in Azure API Permissions Hope someone already have a solution!3.9KViews1like3CommentsHow to count number of lines and words in a SharePoint online Page
I am requested to generate a report that illustrates the number of pages and plus the count of words on each page, and the number of files in that site (word, PDF, images..etc.). Is there any custom tool that i can use to enter my SharePoint site URL and then it will generate me the report i'm looking for Or if you think SharePoint Powershell can help with this, please share your ideas with me. Thanks You3.8KViews0likes1CommentAdmin - Get List of New Flows : Error
Hello, I'm a billing admin, I tried to use the flow template to get list of flows created from [StartDate] - [EndDate]. I tried basic auth and gave credentials. I get below error: {"odata.error":{"code":"","message":{"lang":"en-US","value":"Resource not found for the segment 'UnifiedAuditLog'."}}} I tried couple of other blog posts, it went no where. I followed this article as well, https://flow.microsoft.com/en-us/blog/accessing-office-365-security-compliance-center-logs-from-microsoft-flow/ Any idea? Looking for some suggestions.SolvedHow to resolve e.clvp.Init is not a function error from SharePoint list view?
I have a list view showing below error message whenever I am opening list view. When I refresh the page, the list view will start working again. Any thoughts why this is happening? Any thoughts on e.clvp function? I tried to search on the web, unable to find any content on it.Solved2KViews0likes1CommentChange the look Theme is not working with communication site
Hello Team We added custom theme in my tenant. Created a new communication site and tried to change the theme of communication site. When i clicked on the Theme button. It will not working as expected. Attached a image file in attchement Does anyone face the same issue? Thanks, Dipen Shah1.8KViews1like4CommentsRelink,Relink ALL, and MERGE option is missing under FILES within FORMS Library
I was trying to relink some records within a forms library after migrating to new site and all 3 options RELINK, RELINK ALL and MERGE options were there. later i found those missing and not sure how do i put it back. can someone please assist. The default RELINK VIEW is missing.1.4KViews0likes0CommentsAdd-PnPListItem return value
I have a question about the PowerShell command "Add-PnPListItem" to create a list item in SharePointOnline. Does the "Add-PnPListItem" command create a task for the list item? Or is it a command to actually create the list item? In the past, when I used the "New-Team" PowerShell command to create a Teams team, it terminated normally without any error, but the team I created was not created. When I contacted Microsoft support, they told me that "New-Team" only creates the task to create the team, and if the task to create the team is created successfully, "New-Team" does not return an error message whether the team is actually created or not. If the task to create the team is successfully created, the error message whether the team is actually created on the Teams side will not be returned by "New-Team". I would like to confirm whether the fact that the "Add-PnPListItem" command completes without generating an error is a sign that the item has been created on the SharePointOnline side. ================================= ■Japanese SharePointOnlineにリストアイテムを作成するPowerShellコマンド「Add-PnPListItem」について質問がございます。 「Add-PnPListItem」コマンドはリストアイテムのタスクを作成するコマンドでしょうか。それとも、リストアイテムを実際に作成するコマンドでしょうか。 以前、Teamsのチームを作成するPowerShellコマンド「New-Team」を利用していた際、 「New-Team」実行時にエラーが発生せずに正常終了しましたが、作成したチームが作成されていないことがありました。 そこでMicrosoftのサポートで問い合わせた所、「New-Team」はチームを作成するためのタスクを作成する処理までしか行っておらず、チームを作成するタスクが正常に作成されれば、Teams側で実際にチームが作成されたかどうかのエラーメッセージは「New-Team」では返さないというご回答を頂きました。 「Add-PnPListItem」コマンドでエラーが発生せずに完了したことを、SharePointOnline側でアイテムが作成されていると考えて問題ないかを確認させていただきたいです。 =================================1.4KViews0likes0CommentsTrigger a flow to send custom message email
Hello, I thought this would be very easy, but I'm stuck while implementing. Requirement: On click (JSON format flow trigger, image below) trigger a flow to send email with custom message. I could trigger a flow, but couldn't figure out how to get the document link and a custom user message to the flow. Bottom line: Is there a way to send parameters to flow which is button triggered.Solved