You can design Docentric templates in many ways. If you are all about beautiful designs, you will probably hire a professional designer to do it for you. But there are other approaches as well, and our customers sometimes decide to develop a new Docentric template […]
Tag: Full Edition (42)
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 […]
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}") |
[…]