Activate Financial Dimension in Dynamics 365 FO. (On- Premises)
If you want to activate the financial dimension in Dynamics 365 on on-premises, you need to do a following step.
1. Open SQL and go to D365FO Database.
2. Execute the following Query
select * from SQLSYSTEMVARIABLES
update SQLSYSTEMVARIABLES SET VALUE = 1 WHERE PARM = 'CONFIGURATIONMODE'
3. Execute IIS Restart.
4. Refresh the Page.
5. After activating the financial dimension, you need to revert the option.
update SQLSYSTEMVARIABLES SET VALUE = 0 WHERE PARM = 'CONFIGURATIONMODE'
6. Execute IIS Restart.
7. Refresh the Page.
Comments
Post a Comment