If you want to prevent users with Admin Access Right from creating records in a specific sheet, you can follow the steps below:
Right-click on any sheet name and select Javascript Workflow.
if(param.isCreateNew() && !user.isInGroup('SYSAdmin')){ response.setStatus('INVALID'); response.setMessage('None-SYSAdmin users are not allowed to create entries'); }
In the code above, 'Non-SYSAdmin users are not allowed to create entries' is the error message that Admin users will see when they try to create a new record. You can customize this message as needed. Once done, remember to Save before exiting the JavaScript Workflow Editor.
In the future, when Admin users try to create a new record, they will see this error message.
Note: For Survey Users or Bulletin Users, you can directly adjust their "Create Record" Access Rights in the Additional Access Rights Settings.