Dataverse

Articles about Dataverse, the underlying database store for Power Apps and Dynamics 365 apps

Checking buttons on the command bar

This Microsoft article describes a way to check if a button is hidden on the command bar because of a rule. To perform the check, append @ribbondebug=true to the Dynamics 365 URL. Then when the record loads you’ll see a command called Command Checker on the command bar. You might need to click into the …

Checking buttons on the command bar Read More »

View rights to record

Here is a feature that I and many others have been waiting for a long time; see the privileges a user has for a record and here is the best bit, how they obtained those privileges! But this is for Dynamics 365 online only. The feature called Check Access was added in one of the …

View rights to record Read More »

Multi-series charts

When you create a chart with multiple series, the chart editor insists on adding a secondary y axis scale. This is probably something that you don’t want because if you have two or more series comparing similar items the scaling will be different for each series. There is no way to remove the secondary y …

Multi-series charts Read More »

Reporting and Data Visualization in Dynamics 365 and Power Platform

Here are some reporting and data visualization tools to get all that data out of Dataverse: SQL Server Reporting Services (SSRS) – Use the Report Wizard in model-driven apps for simple reports. For more complex reports, you’ll need to use Visual Studio and learn FetchXML. Nick Doelman has written how to get started at https://readyxrm.blog/2021/01/23/ssrsdataverse2021/. …

Reporting and Data Visualization in Dynamics 365 and Power Platform Read More »

Affiliated Views

When viewing a list of records e..g opportunities, within a form there is a view option called “all affiliated records”. To explain this imagine we are working with an Account record, ABC Ltd that has a number of contacts. The include option, This record only, shows only opportunities that are directly linked to the record …

Affiliated Views Read More »

Activities Report and Activities Detail Report – Circle Colours

The out of the box Activites Report only shows activites that are regarding Opportunities and Cases. The report includes an option to show all. This uses the Activities Detail report which includes colour coding against the activities. By analysing the rdl file for the report the following sets the colour circle to show: IIf(Fields!scheduledend.Value>DateAdd(“d”,7,Now),”ballgr”,IIF(IsNothing(Fields!scheduledend.Value),”ballgr”,IIf(Fields!scheduledend.Value>Now,”ballyl”,”ballrd”))) My …

Activities Report and Activities Detail Report – Circle Colours Read More »

Mail Merge

The process of creating and working with templates is slightly simpler when working with CRM inside Outlook. The process within the web client is as follows: To run a mail-merge with existing templates the procedure is as follows: In CRM navigate to the appropriate view for the entity To run mail merge on specific records, …

Mail Merge Read More »