web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / Manish Sharma blog / Business Central Permission...

Business Central Permission XML file.

ManishS Profile Picture ManishS 6,578
When creating new tables extension you need to have the permission set also,
else you get error.
If you have enabled Code Analysis, you are good to go,
cause you can see the problems in the VS code window.
Below permission xml file for reference,
MRS_NAVPermissionSets.xml
<PermissionSets>
<PermissionSet RoleID="MRS01" RoleName="MRS_NAV Permission">
<Permission>
<ObjectType>0</ObjectType>
<ObjectID>50000</ObjectID>
<ReadPermission>Yes</ReadPermission>
   <InsertPermission>Yes</InsertPermission>
<ModifyPermission>Yes</ModifyPermission>
<DeletePermission>Yes</DeletePermission>
<ExecutePermission>Yes</ExecutePermission>
<SecurityFilter />
  </Permission>
</PermissionSet>
</PermissionSets>

Comments

*This post is locked for comments