d365 [D365] How to get SSRS Report design from form letter print management There is a way to get the default report layout by code using the following line:PrintMgmtDocType::construct(PrintMgmtDocumentType::SalesOrderInvoice).getDefaultReportFormat();Finding the report design from the print management settings for a report
d365 [D365] Fix - The devInstall option is not applicable to the current deployable package There is a good documentation on how to install a deployable package on the various types of environments in the Microsoft Docs which I don't want to repeat here.Recently there was a
d365 [D365] How to add custom report designs to print management lookup Creating a new SSRS Report design for a customer is not a big deal.Overwriting the default report design for a specific document type in the print management is also simple, it just
d365 [D365] DevBox performance enhancements After searching to enhance the performance of D365 DevBoxes I tried a lot of stuff. During the analysis one thing stood out clearly:Windows Defender plays a huge role regarding the performance of
d365 [D365] Check .NET version with PowerShell prior to PU37/10.0.13 release As Microsoft states in the requirements for the PU37 / 10.0.13 release coming in October 2020, the Visual Studio tools require Microsoft .NET 4.7.2 runtime.You can read the full
d365 [D365] Get list of Designs of SRS Report by code Recently the requirement to list all designs of a SRSReport came up and the Metadata API is a good fit for the task to accomplish this with as less lines of code as
d365 [D365] SysClassRunner as JavaScript bookmark with parameters With D365fO we have couple of ways to run classes in our environments.The first one is to make a menu item, attach the class to it and put that on a form
d365 [D365] How to add a custom report type to form letter print management setup The docs for D365 F&O describe the process of adding a custom report design to the form letter print management setup very well.But do you know how to introduce a
d365 [D365] Add display method via Extension Adding a display method to a standard table in D365 can be confusing because most parts of the documentation state it should be implemented as static method with the table as only parameter
d365 [D365] Form Adaptors in separate Model When task recordings are used to generate automatic tests, form adaptors are needed in order to make the controls available to the test code.One way to generate or update them is to
d365 [D365] Find TableId from Name TableId's are not really important anymore with D365. But sometimes it can be handy to find it out without creating a runnable class and call tableName2Id().One use case can be if a
d365 [D365] Outer join in view with NULL enum column Sometimes an outer join is necessary in a query to enrich the resulting records with additional data.A recent requirement to filter records of a Data Entity based on an enum field looked
d365 [D365] Create Azure feed from build pipeline Using the pipelines in Azure DevOps to build D365fO packages is a great way to automate builds and share the resulting artifacts.A great way to provide the generated (deployable) packages to other
d365 [D365] DB Sync changed data type on field When changing the data type of a table field (let's say from integer to string) in D365fO, the DB sync will work on the maschine of the developer that made the changes.When
d365 [D365] Azure Dev Ops build with git as source control In a previous article I shared the transition from TFVC to GIT as source control provider with Dynamics 365 for Operations (D356fO).Microsoft does not support Azure Dev Ops (VSTS) automated builds for