Showing posts with label D365. Show all posts
Showing posts with label D365. Show all posts

Monday, 11 November 2019

Show button only when the record is selected - Selection Count Rule

Hi Everyone,

Today I was working on adding some button on the Subgrid and the requirement was to show the button when at least single record is selected.

We can easily achieve this using a Enable Rule - Selection Count Rule. Here is the enable rule of the same, we just have to attach this rule to the button command.


      <EnableRule Id="...SelectionCount.EnableRule">
        <SelectionCountRule AppliesTo="PrimaryEntity" Minimum="1" Default="false" />
      </EnableRule>

Hope this helps.

--
Happy 365'ing
Gopinath

Tuesday, 24 September 2019

Asynchronous processing of cascading transactions

Hi,

Processing of Cascading Transactions plays a crucial role when you are working with the big engagements and dealing with entities where you have many child records. You might have not observed this on the lower instance like Test, UAT, SIT or whatever but I am sure that Synchronous processing of Cascading transactions would be resulting slow performances on the Production as we have more data and transactions are being performed.

I know it's not so easy to discuss this with Customers and make them understand as mainly it deals with data integrity as if something fails someone has to monitor System Jobs. However, It's worth to discuss with Customers and make them understand the consequences and take an action.

Go through Microsoft Docs for more information.

Hope this helps.

--
Happy CRM'ing
Gopinath