Flighting is a new concept introduced by Microsoft from D365FO version 10.0 that allows turning on new features, which are delivered but not activated by default. Some of these "hidden" new functionalities are: Client alert notifications by email Manage access to network printers across legal […]
Author Blog Posts (43)
Multiple use of Report caption
Report caption is usually set to the caption of the report menu item, e.g. Customer account statement. Sometimes, the report menu item caption ‘got lost’ in the report execution pipeline and the technical report name (i.e. name of the report in AOT) becomes visible to […]
Why deep links don’t work in batch in Dynamics 365 for Finance and Operations
You can create shareable and secured URLs (aka deep links) to forms in Dynamics 365 for Finance and Operations using URL Generator, i.e. the UrlGenerator class. Deep links can be embedded in reports, emails, external apps, etc. A deep link points to a specific form […]
Deep links (aka drill-through links) in SSRS reports in Dynamics 365 for Finance and Operations
You can enable deep links (aka drill-through links) in SSRS reports in Dynamics 365 for Finance and Operations by setting the Action property on the wanted textbox to Go to URL and then to specify the expression for URL using the following utility method:
1 2 3 |
=Microsoft.Dynamics.Framework.Reports.BuiltInMethods.GenerateDrillThroughLink( Parameters!AX_ReportContext.Value, Parameters!AX_UserContext.Value, "[MenuItemName]", "[MenuItemType]", "[TableName]", "{Arguments}") |
[…]