App
901 TopicsO365 Group email settings
I am in the middle of trying to create some automated routines that create groups in O365 and add/remove members from them as needed. One of things I ran into is that when an email is sent to the group, the emails are not going into each members' inbox and are only visible in Outlook through "Go to groups" in the left hand menu. I can see the settings that need to be set but can't set them because either, A: it just doesn't do it or B: says I don't have permission. Doing this through C# and the Graph SDK The two items I think I need to turn on are below. What permissions are needed to be able to manage those settings but NOT be able to have access to anyone and everyones' email boxes, emails, etc or is there another way to do this? IsSubscribedByMail AutoSubscribeNewMembers41Views0likes1CommentCompany Portal | App installation issues
Anyone else experiencing issues with downloading apps from company portal? Win32 apps, pressing install and just spins on “download pending… your device is syncing and will begin downloading your app shortly” Experiencing this issues with 2 different tenants. In 2 different countries now.59Views0likes0CommentsBest way to build a dynamic data driven navigation, that can be restricted based on security roles
Hi All, I'm in the process of designing a power app and would like to use the tab control or gallery for the menu. Looking for advice on how best to wrap authorization around the navigation for example to check if a logged in user belongs to a role they can see only specific menu item or disable a link button etc.. Any advice would be appreciated Thanks in Advance123Views0likes3CommentsCan GUESTS access t Premium Plan in Teams?
I created a Teams Team and want to manage a premium plan project therein. I have the Planner-Plan 1 license. One external supplier is a guest in my Team but he cannot see the Premium plan. Is this by design or is there any wrong setting in my system? I could not find any information on this in the Microsoft documentation. Facts The guest user is part of the team89Views0likes0CommentsWhen can we drag files, outlook items and attachment to Planner?
The flow to flag mail getting into a task in Planner is great but the attachment of mail is not included. We like to use Planner as Trello for complaints handling by different assignees. The complaint mail is getting into Planner but the attached complaint file doesn't come with it by this flow. So to get this into Planner i would like to drag and drop attachments and files what Trello facilitates. Anybody smart alternatives or workaround or better smart Flow ideas?? I prefer to stick to the MS apps, so no 3rd party apps.11KViews16likes10CommentsSharePoint online document library - document properties not getting update values in word document
Hi All, We have created an application in SharePoint online. This application creates Word documents in which SharePoint list fields are merged. When creating a new item in SharePoint, the Word document shows the correct date values: 1. Create new item in SharePoint. Dates are 1/9/2025 and 2/9/2025 2. Opening the related word document shows This is correct behavior 3. Change any field through 'Edit properties'. Still the dates are 1 and 2/9/2025 4. If I open the Word document now I see that the dates have a value of 1 day less then the provided date. The category is updated correct. 5. When downloading the document the correct values are shown 6. Also when opening the document through View in browser > Edit document > Open in desktop, I see the correct values Question is: 1. Why don't we see the correct values when the Word document is directly opened in the browser? 2. Is there a possibility to open the Word document always in the Client (desktop) itself instead of directly on the browser? We already tried changing the below Advanced library settings (changed it in Open in Browser/use the server default), but this didn't gave the correct solution.84Views0likes1CommentSharePoint List calculated column formula using a Lookup column reference
Given: A SharePoint List (SPL) called Contractors with the following columns: ContractorID // Display name of the default ID column ContractorName Another SPL called Reports with the following columns: ReportID // Display name of the default ID column ReportNumber // Calculated column Contractor_ID // Lookup column referring to the ContractorID column of the Contractors SPL The calculated column, ReportNumber, would have a formula similar to: = [ReportID] & "-" & Contractor_ID Question: Does SharePoint Lists support the use of a Lookup column in the formula of a calculated column? If so, I need help on the proper syntax for the formula. (The formula above is not working) Thanks in Advance84KViews1like9CommentsVBA
Hello everyone, I'm new here, so please be kind! This happens every time I create a new file, and Visual Basic Editor won't open in Access. When I click on 'Visual Basic', a pop-up box appears and I'm told that the database cannot be opened because the VBA project contained in it cannot be read. The database can be opened only if the VBA project is first deleted. Deleting the VBA project removes all codes from modules, forms and reports. You should backup your database before attempting to delete the VBA project. Note: To create a backup copy, click Cancel and then make a backup copy of your database. To open the database and delete the VBA project without creating a backup copy, click OK. Well, I have no database to read in the first place because I haven't made one, so what does it mean, and how do I fix this, please?159Views0likes4CommentsHow to hide Command bar in Sharepoint using SPFX Extension without CSS injection?
I know there are similar questions on the Internet. But none of it have the solution that I am looking for. I want to hide few action buttons (New, Edit in Grid View, Add shortcut to OneDrive, Pin to Quick Access, Share, etc.) in SharePoint Command bar using SPFX extensions. enter image description here I know it can be achieved by injecting custom CSS with display: none property. But the problem is, in case in future if Microsoft updates the html element then this solution might break. Another approach is to use JSON Formatting. But this needs to be done from SharePoint UI or by calling the SharePoint API to apply the JSON formatting. But I don't want to do this. Initially my approach was: Access the command button like const newCommand: Command = this.tryGetCommand("newComposite"); newCommand.visible = false But I am getting undefined when I access it. Is there any way to hide the command buttons from the code itself using SPFX extension.76Views0likes0Comments