Is there a way to disable "Advanced Settings" option in Dynamics 365? - microsoft-dynamics

Want to disable/hide the "Advanced Settings" option under Settings in Dynamics 365 as role based like no one should be able to access it or see it except system administrators. Is there anyway to do it ? If there is, would like to know the detailed steps.

It's not possible to hide an entry in that menu or disable the direct url to access that settings.

it is not possible to disable the advanced Settings. Based on security role you can manage user group to see no of fraction feature into Advance Settings menu.

Related

Google Cloud doesn't allow me to create my first project with admin role

I'm trying to create my first project in google cloud with organization's administrator account. I have access to the administrator's email and passwords and I am logging in with that account to do so. The problem is that when I click on create new project I receive the following error:
There was an error while loading /home/dashboard?project=proven-now-305315&authuser=1.
You are missing at least one of the following required permissions:
Project
resourcemanager.projects.get
Check that the project ID is valid and you have permissions to access it. Learn more
Send feedback
The detail is that in my resource administration panel I already gave the permission that they ask me to the resource as shown in the following image:
As I have read, the project IAM Admin role should grant the resourcemanager.projects.get role and as you can see in the image the resource rcv # .. which is the administrator has it activated, however I keep trying to create a new project and it doesn't allow me to do it. Any idea?
In case anybody else, like me, reaches this answer, I want to point out that the accepted answer is correct, but for me I had to also make sure that within the settings, I ensured that Project Creation Settings on the right pane and under the section of Cloud Resource Manager Api Settings was set to on. It was turned off by default. Many people on my team overlooked this as it is significantly smaller text.
This may be an option that was not present before or it was turned on by default in the past. For us, it was turned off.
Please refer to the included image for a visual representation of the
settings that need to be turned on.
The problem was for some reason the Google Cloud was disable for all users, I solved following this instructions. Solved with this!
To activate this service, please follow the steps:
Access the admin console and go to Apps -> Additional Google Services
Look for the service “Google Cloud Platform” and click on the box next to it
In to top right corner click in “ON”
Confirm you want to turn it on in the pop-up box.

Google Cloud Platform: How do I rename a Google Cloud Platform project?

Is it possible to rename a Google Cloud Platform project? If so, how?
I don't need to change the project ID or number. But I do want to change the project name (the name used by/for humans to identify a cloud platform project).
Thanks for any tips!
Use the hamburger menu in the top left to switch to the "IAM & Admin" section
Click Settings
Type the new name
Press Save
Reload the page
For those wondering how to change the project ID, the official documentation says:
A project ID cannot be changed after the project is created, so if you are creating a new project, be sure to choose an ID that you'll be comfortable using for the lifetime of the project.
The easiest way it to go via the hamburger menu in the top left > "IAM & Admin" > Settings.
These are the screenshots to the Google Cloud Product Settings
You can change the project name using gcloud projects update command.
First of all, you need to get the associated project ID.
gcloud projects list
Here is the example command.
gcloud projects update your-old-project-id --name="New project name"
For more information please refer this official documentation.
Note: You cannot change the ID of a project's ID or Number,you can only change the Name.
It seems that the Google console menus have changed since #Sphinxxx posted an answer to this question in 2017. (Unless for some reason my Google account is different than others. Please correct me if I'm wrong.)
It is still possible to rename the project, but in order to get to the Settings page, you must first go through the "IAM & admin" menu. Here are the steps I did:
Choose the project name from the menu just to the right of "Google APIs"
Open the navigation menu by clicking on the three bars ("hamburger") just to the left of "Google APIs"
Hover over IAM & admin in order to see that menu
Click on Settings to open the settings page where you can modify the project name
Screen shot of IAM & admin menu
NOTE: it is also possible to directly go to the settings page via the URL using the project id:
- https://console.cloud.google.com/iam-admin/settings?project=your-project-id
Use the hamburger menu in the top left to switch to the "IAM & Admin" section.
Click Settings.
Type the new name.
Press Save.
Reload the page
Go to IAM
Settings
Rename your project
The easiest way to change your project in a few seconds is to:
Click on the three dots on the left of your profile and then on the Project settings. No matter where you are now in the console, this option will be available.
Change your project name and Click SAVE.

personal view setting in sharepoint list

is it possible that once configured in advance , we can block the create personal view settings in share point server list.
Please share your experience.
Thanks
Yes it is possible to remove "Manage Personal Views" option from Permissions Level. I'm not sure what is required. My experience is, to create new permission level and modify the settings on the newly created one. If you want to restrict permission to view then you have to use Sharepoint designer to edit the view ( I mean without coding). Hope this helps.

Sitecore restrict access to webpage

I am working on a website that uses Sitecore CMS. An intranet webpart was already created with restricted access.
In this intranet I've created a new page which should only be visible for 1 role. I have created the new role. I tried to mess around with the security of the page in the content editor (Security --> Assign). I published the changes. But no matter what I do, it doesn't seem to have any effect.
Any guidance would be greatly appreciated!
Open the sitecore desktop ( http://yoururl/sitecore/shell ), click on the 'sitecore' button, then 'security tools' and 'security editor'.
Select the 'anonymous user' account in the ribbon, click on the chosen page in the tree, and click 'x' near 'read'.
Then click 'select' in the ribbon and choose the proper role. Once again select the chosen node and allow 'Read' rights for the role.
Once it's done, you can use 'Access viewer' app (once again sitecore button and security tools on the desktop) to check whether the rights are set properly.
The trick is probably to deny access for the extranet\Anonymous user and then grant access for the role.
I like to use the Access Viewer or the Security Editor for that, instead of the Content Editor as it gives you a better overview.
Make sure to put inheritance to good use so you don't have to set security to each item individually but rather on the root of the site (if possible).
I advice you to take a look at the Sitecore Security Administrators Cookbook: http://sdn.sitecore.net/upload/sitecore6/securityadministratorscookbook-usletter.pdf

Django livesettings - greyed out group

I'm using django-livesettings to provide additional parameters to be set by the admin.
One thing I'd like to do is have groups greyed out according to whether they've been enabled or not.
An example would be enabling either pop3 or imap mail settings, perhaps via a radio button. If the admin enables pop3 then all the imap settings are greyed out.
Another example might be just a simple group enable checkbox. If the group isn't enabled then there's no need to enter further info.
I'd like to make it clear which settings are in force. Is this possible?
Sounds like something, you'd need to do with JS/CSS. Use a project-specific template override with settings.TEMPLATE_DIRS or go fork the project at Bitbucket and add your feature.