How to remove "Create New Menu" or change the perm...
# ask-stanley-ai
c
How to remove "Create New Menu" or change the permissions to no one can view in netsuite
c
AI generated answer (using internal Slack threads):
To remove the "Create New Menu" or change the permissions so no one can view it in NetSuite, you can follow these steps: 1. Go to the setup tab of the roles. 2. Permissions in NetSuite are mostly role-based. So, you need to adjust the permissions for each role. 3. Look for the permissions named "SuiteApp Marketplace" and "SuiteApp Deployment". These are the permissions that control the visibility of the "Create New Menu". 4. Remove these permissions from the roles that you don't want to have access to the "Create New Menu". However, it's important to note that this might not completely remove the tab for some users. They might still see the tab, but they will get a permission violation error when they try to click on it. This is because the ability to completely hide the tab is currently an "enhancement request" in NetSuite. If you want to hide the tab using a script, you can use the following jQuery code:
Copy code
javascript
jQuery("li[data-title='SuiteApps']").hide();
This will hide the tab from the user interface, but it won't change the underlying permissions. Please note that these steps might not work for the customer center as managing these roles doesn't allow "setup" tweaking. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.823764384
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.821692288
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.815893054
Please provide your feedback on this answer.