Posts

Short Circuit Problem when using conditional statements

 Just a little revision to my educational learnings, whenever we are writing the code with conditional statements, we encounter the issue of Short Circuit Problem. This can be avoided to clearly analyze our requirement of the condiition and do consider the SHORT CIRCUIT could result if condition is satsified. Consider the following example ! PASTED from the following LINK: https://stackoverflow.com/questions/9344305/what-is-short-circuiting-and-how-is-it-used-when-programming-in-java Short-circuiting is where an expression is stopped being evaluated as soon as its outcome is determined. So for instance: if (a == b || c == d || e == f) { // Do something } If  a == b  is true, then  c == d  and  e == f  are  never evaluated at all , because the expression's outcome has already been determined. if  a == b  is false, then  c == d  is evaluated; if  it's  true, then  e == f  is never evaluated. This may not seem to make any difference, but consider: if (foo() || bar() || baz(

Copy File Path and Share - Copy as Path

Image
 At times its needed to have a file path copied with file name. Here is a simple solution Simply hold down Shift and right click to see the option of Copy As Path ! 

D365 Free Text Invoice not getting posted

Image
Free text Invoice - In Progress Recently reviewed a case where unable to see the status of free text invoice as POSTED and Invoice Status as In Progress. and Posting status as False.  to resolve this issue, Recurring Invoice was clicked and validated. It wasn't posted. So, the first step to resolve this is to post the recurring invoice and automatically the batch will be posting the Free text invoice.  Hope this help someone stuck with the same issue. 

Samsung to Xiaomi

After a long journey with SAMSUNG brand, the shift to XIAOMI is not that easy. However with their note 10, I feel really comfortable to switch to a phone which is now in my financial budgets. The increased cost of Samsung and Apple brands are raising concerns for the users. After COVID-19 the trend is towards shifting to cost saving and low budget. As a XIAOMI user, I found it a very good brand with loads of features and similarities to high-end brands.  Do comment with your views and suggestions. What we cannot do with low priced phones, which Samsung and apple can do.  thanks

Xiaomi note 10 Focus Feature

Image
Great feature where you can turn on the focus mode on using the menu navigation. It helps to select applications which will not bother you during times when you need focus. I recommend to enable it during office timings, payers and while reading Quraan. Focus mode is ON ! When clicked the Application it shows following message

Header not repeated - AX 2012 SSRS Reports

A good blog to resolve the issue for column header repetition. Repeat the column header row on every page Tablix SSRS dynamics Ax 2012 https://community.dynamics.com/365/financeandoperations/b/alirazatechblog/archive/2014/10/13/repeat-the-column-header-row-on-every-page-tablix-ssrs-dynamics-ax-2012

CU8 Application on AX 2012 R3 instance - Reinitialize the Model Store

Reinitialize the model store After installations of most of the hotfixes and Cumulative updates Many hotfixes require that you reinitialize the model store after installation. You should assume that all cumulative updates require reinitializing. The hotfix description indicates whether this step is required. You can use either Windows PowerShell or AXUtil to perform this step. 1. On the Start menu, point to All Programs, point to Administrative Tools, and then click Microsoft Dynamics AX Management Shell. 2. At the Windows PowerShell command prompt, PS C:\>, type the following command, and then press ENTER. Initialize-AXModelStore This command reinitializes the default model store For more information, see Initialize-AXModelStore.