Adding up the report menu item into privilege
The security privileges in Microsoft Dynamics AX R3 basically constitute a group of permissions. The entry points below each privilege identify the objects that the user can access. By using a privilege, we give permissions to forms, menu items, tables, and SSRS reports. A privilege provides multiple access levels to securable objects. These levels are Read
, Update
, Delete
, Create
, Correct
, and NoAccess
. In this recipe, we will learn how a menu item can be added into a privilege. We will create a new privilege and add a menu item into it.
How to do it...
The first step is to create a new menu item in the SSRS report. Go to AOT | Menu Items | Output and right-click on it. Click on New Menu Item. Name the new menu item as
PKTRDLMenuItem
.Assign the properties of the menu item as follows:
Properties
Values
Name
PktRdlMenutItem
LinkedPermissionType
SSRSReport
LinkedPermissionObject
PKTRdlCustInvoiceReport
LinkedPermissionObjectChild
Report
...