Skip to main content

Posts

Showing posts from April, 2021

How to disable particular Financial Dimension on Desired form

Sometimes we want to disable particular financial dimension for purchase requisition line or any other form. To achieve that we need to write code on OnInitialized event handler of the required form. please follow the steps to achieve this functionality. Go to desired form and make note of control that is used for financial dimension(in our case Purchtable form and DimensionEntryControlLine control name). Now go to desired form(Purchtable in our case) and select OnInitialized event handler as follows and paste it in your class. write following code in the event handler class and provide Name field value (dimension which should be disabled) as well as DimensionEntryControl name and build the project. code :- 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 class PurchTableEventHandler { /// <summary> /// /// </summary> /// <param name="sender"></param> /// <para...

Resolve error "31 update script for service model: DIXF Service on machine: xyz"

Many of the times while updating environment form LCS we face error as "31 update script for service model: DIXF Service on machine: xyz" which lead to failing one of the steps for updating environment you can take help of this article to resolve that issue by simple following steps mentioned in this blog. 1.       Go to your respected cloud-hosted environment   and open the following path and Copy the  DMFExecutePackages.exe  file from  K:\DeployablePackages\....\AOSService\Code\Bin  to G:\DeployablePackages\....\DIXFService\Scripts                2.       If AOS & BATCH is already in started state, please stop AOS using AutoStopAOS.ps1 as follows Navigate to K:\DeployablePackages\....\AOSService\Code\ script and now open file from action pane and select PowerShell and PowerShell with administration and run following command:- AutoStopAOS.ps1 3.  ...