Posts

Showing posts from August, 2023

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

Enable/disable D365 maintenance mode- Tier 1 & Higher Versions - Microsoft Dynamics Finance and operations

Image
Tier 1 :   There are the following ways to enable/disable maintenance mode on DEV/could hosted boxes: Posted by :  Hariharasudan Kandaswamy SQL Query status: 1 2 use AXDB; select * from dbo.SQLSYSTEMVARIABLES where PARM = 'CONFIGURATIONMODE' ; Enable maintenance mode: 1 2 use AXDB; update SQLSYSTEMVARIABLES SET VALUE = 1 where PARM = 'CONFIGURATIONMODE' ; Restart IIS Express/IIS and do the required steps like enable/disable configuration keys. if required, Execute DB sync Disable maintenance mode: 1 2 use AXDB; update SQLSYSTEMVARIABLES SET VALUE = 0 where PARM = 'CONFIGURATIONMODE' ; CMD Open command prompt as administrator. Enable maintenance mode (replace **axdbadmin_from_lcs** value): 1 K:\AosService\PackagesLocalDirectory\Bin\Microsoft.Dynamics.AX.Deployment.Setup.exe --metadatadir J:\AosService\PackagesLocalDirectory --bindir J:\AosService\PackagesLocalDirectory\Bin --sqlserver . --sqldatabase axdb --sqluser axdbadmin --sqlpwd **axdbadmin_from_lcs** --setu