Posts

Showing posts with the label D365FO

Running Custom X++ Scripts in Tier 2 or higher Version Production environment without downtime

Image
  How about running  custom X++  scripts without any  downtime ? Posted by : Hariharasudan Kandaswamy E.g : Let say example , you want to update the inventory Transactions of the particular items in Tier -2 or higher version. Steps to follow: 1. Go back to Dev box , Create a Model and add required references package 2. create a runnable class to update for the particular transaction 3. Then Create an deployable package. 4. once package is created, Go back to Tier 2 or higher version. 5. Go to System Administration Module  path : System Administration --> Periodic Task --> Database --> custom Scripts 6. Click upload  Upload the Deployable package in Custom scripts  7.  once package is upload. 8. some one has to approve the upload Deployable package 9. once package is approved, then test the process.      10 if result as expected then click RUN , script updated the Inventory Transactions for the particular item...

Create a Tile in a D365FO Workspace with X++ - Microsoft Dynamics Finance and operations

Image
  Tiles : There are two ways through which we can create tile one by personalizing form and another through code. In this example   we’ll use code The diagram below  summarizes the operations we will perform to add a tile to a workspace Posted by : Hariharasudan Kandaswamy These are the steps we’ll do : Create an AOT Query object Create a simple list form to show the query results Create a menu item to call the form Create a tile to call the menu item Add the tile to a workspace Create an AOT Query object Create a project and add a query called “ DeliveredSalesOrdersQuery ” Add SalesTable as datasource in “ DeliveredSalesOrdersQuery ”. Set dynamic fields property to “Yes” Add range in it for showing sales orders whose status is delivered. Save the Query Create a simple list form to show the query results Add a  Form  object and call it “ DeliveredSalesOrderInquiry “ Add  DeliveredSalesOrdersQuery  as Form Data Source Apply  “Simple list”   pa...

Financial Tags -Microsoft Dynamics Finance and operations (D365FO)

Image
Financial Tags :  Re-Posted by : Hariharasudan Kandaswamy In version 10.0.32 the feature 'Financial tags' is added in D365FO. This feature gives you the option to define up to 20 user-defined tags. In this version you can enter these financial tags on the (global) general journals. This will be extended in the following versions of D365FO for additional journals, documents and processes. You can read more about it on the related  Microsoft Learn page . In this article I share my experience with the introduction to financial tags. I describe how you can setup and use the financial tags with the following topics: Setup: Select the delimiter in the General Ledger parameters Create financial tags and values Activate the financial tags Process: Use the financial tags in postings Analyze and report Correct financial tags value if necessary Prerequisite to use the financial tags is that you enable the feature 'Financial tags' in feature management: Setup: Select the delimiter ...