In this article we will explain how to develop a new custom report from scratch in Dynamics 365 for Finance and Operations using Docentric. Requirements for the new report Let’s say that we want to develop a new report that will show the data from […]
Category: Docentric AX Full Edition (41)
Email an invoice with additional attachments from D365FO
This article describes a setup-based solution for emailing reports with additional attachments from D365FO. We will show a step-by-step configuration which enables you to email an invoice with Terms & Conditions and product specification as additional attachments from D365FO. Before writing this post, I tried […]
Improved Configurable Business Documents
In our previous article we analyzed Configurable Business Documents announced on Microsoft Business Application Summit in Jun 2019, with general availability in October 2019. Configurable Business Documents are intended to empower end-users and functional consultants to customize business documents such as invoices and orders in […]
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}") |
[…]