Total Import permission denied - import

When I try to access my import tool for products Tools->Total Import Pro a message appears:
You do not have permission to access this page, please refer to your system administrator
I tried to go to system->users->users groups->administrator->Modify Permission
but I can't find the permission for TotalI mport.

Make sure you search the module inside Access Permission: and also Modify Permission: . Normally the module name will start with module/your_module_name.
If still cannot you can try to upload again(maybe some files is missing) or contact the developer.

I had the same issue Daniel.
Double check that all the files associated with the Export / Import tool are installed correctly. If the controller file is missing the system won't show it in the permissions list.
If the files were not upload, you can make it manually via FTP. I've done that and it worked for me.
After you've done that, make sure you give permission to admin to use the tool. Go to System > User Group > Admin and give access and modify permission to tool/export_import

Go to System > Users > Users groups
Edit the Group Administrator and make sure you are logging in as administrator
There are two boxes
- Access Permission
- Modify Permission
You need to check to the checkbox 'tool/export_import' in both "Access permission" and "Modify permission". Is your case is Modify permission

Related

How to delete a group permanently?

I have been trying to permanently delete a group from 0365 via PowerShell by using AppRegistration but I keep getting Insufficient Permissions.
I can delete the group with Remove-PnPMicrosoft365Group or Remove-MgGroup and after these commands, the group is moved to deleted items. But when I try to delete the deleted group permanently, I always get insufficient permissions. Both Remove-MgDirectoryDeletedItem and Remove-PnPDeletedMicrosoft365Group did not work for me:
I also tried directly from Graph explorer but I received the same error although I consented all possible permissions.
By the way, I can permanently delete the deleted group from Azure Portal.
Any ideas ?
Thx
Just in case if anybody needs help for such requirement, there are two options:
Give the app registration "Company Admin (Global Admin as of today)" as described here : https://konstantinvlasenko.wordpress.com/2016/12/22/microsoft-graph-api-insufficient-privileges-to-delete-a-group/
But this option will not work later than July 2023 because Microsoft is deprecating MSOL.
App Registration usage is not possible for permanently deleting directory objects : https://learn.microsoft.com/en-us/graph/api/directory-deleteditems-delete?view=graph-rest-1.0&tabs=http
So you will need to use MSGraph with user authentication.
Just fyi, when you try to permanently delete O365 group from Graph Explorer, you will need to consent to Directory.AccessAsUser.All
Regards,

Custom Role in Azure DevOps to allow Add Users

Is it possible to provide a reduced set of permissions to allow a user permission to add other users to a project without being a full blown administrator? Adding a user as a Project Admin provides to more access which is a huge security issue.
You could add user as contributor or Project Valid Users with limited access. Please see Project-level groups
Contributors: Has permissions to contribute fully to the project code base and work item tracking. The main permissions they don't have are those that manage or administer resources.
Project Valid Users: Has permissions to access and view project information.
Besides, you could also create a custom group to grant or restrict permissions in project setting >> permission >> new group. Then, change permission for the group.

Connecting Excel to a Azure Devops Query

I can not see my queries using Excel Team plugin. I get an error enter image description here
TF8001:An error occurred while accessing the work item database. Contact the administrator
Please use the administrator account to check these:
First, please check whether the current query allows your account to access it.
click on the Shared query-->Security
Make sure that the related options are allowed.
Second, make sure that your account has access to the current work item.
Project Settings--> Project configuration
Finally if you execute the query to tfs work item database, you should contact your Administrator to add permission for your account.

Package permissions of a single user in AEM 6.2

I have a user named readuser, I created from useradmin and I gave few read permissions on content for that user. Why I try to get the package of the user through ACLs, I'm getting the permissions of all users existing in my local.What it doing is basically packaging all the permissions under content of all users.
But I want permissions of only my readuser.
How do I get the permissions of readuser alone.
Thanks
Sharath

Report Server - User permissions to access all users folders

I have a application .net that search a folder on report server and reads the reports inside that folder and display on asp.net page. The permissions for the asp.net user are working fine to deploy and execute on website.
Now, I want to users to deploy on "My reports" folder, so they only see theirs reports.(The users have access to report server and use report builder).
I search and I could not find a solution for this:
I want to give permissions to an a user (the same that is running on asp.net server), to access all "My reports" folder of all users(Users Folder), so I can execute the reports inside users folder on website.
I put the asp.net server user as local administrator of the report server, but with that permission te user can only see the content of the folder, this user can not execute the report. Any idea what is the problem?
I finally found a solution, and does not involve add users to local administrator of the machine.
I used the IAuthorizationExtension.
I found this example that enable anonymous access for all users witch was a start.
On my implementation I used WindowsAuthorization, because I want to keep the existing authorization and give access to one specific user. On all CheckAccess methods I check if the user is the one I want to give access and return true otherwise return the WindowsAuthorization.CheckAccess(...). On all others methods of the interface I also used the WindowsAuthorization.
With this solution the user running website can access all content of reporting services.