Skip to main content

Notifications

Community site session details

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

View all
Like (0)
🧠 Automate LCS Environment Control Using Azure Logic Apps (With Daily Trigger at ...

ontrolling your Dynamics 365 LCS (Lifecycle Services) environments doesn’t need to be manual. In this post, I’ll show you how to set up a Logic App that triggers daily at 7:00 PM to automatically stop or control your LCS environment using authenti...

Fawad Hassan 337
Like (0)
How to get company fiscal calendar

  Ledger::FiscalCalendar()

Fawad Hassan 337
Like (0)
How to check user has selected all the record using the top check box in the grid

How to check user has selected all the record using the top check box in the grid TestTable_ds.defaultMark() method can tell you if the user has selected all the records in the grid on the Form or not

Fawad Hassan 337
Like (0)
How to check user has applied filter on the records or not

TestTable_ds.queryRun().query().queryFilterCount(); A very helpful link with examples can be found below http://dynamicsuser.net/forums/t/63208.aspx TestTable_ds.defaultMark()

Fawad Hassan 337
Like (0)
‘Select all’ ctrl-A is selecting only 20 records in the Form grid

There is an issue with the Grids in Ax 2012 where select all or ctrl A or clicking top check box in the grid, selects only 20 records and if you want to iterate or check the number of records through code, it will always show 20 even though the re...

Fawad Hassan 337
Like (0)
Refreshing SSRS report meta data

Changing contract parameter to an existing reports sometimes become cumbersome. It becomes more difficult when you are removing parameters from the contract class and changes are not reflecting in the visual studio design side. If figured out the ...

Fawad Hassan 337
Like (0)
‘Using sub queries in Dynamics Ax views

I had a chance to implement yearToDate functionality in Dynamics Ax using views and I thought it would be helpful to share the code for that. This article required reading article mentioned in post at the bottom. The sub queries in View requires f...

Fawad Hassan 337
Like (0)
Converting enum values to string in Dynamics Ax views

Here is the code snippet for converting enum value to string with the help of my colleague Danish public static server str genderString() { tableName viewName = identifierStr(HcmWorkerInfoView_TYL); DictEnum dictEnum = new DictEnum(enumNum(HcmPers...

Fawad Hassan 337