Dynamics 365 Ce



What is Dynamics 365? It’s how you become more agile to delight your customers. With Dynamics 365, you’ll have the only portfolio of intelligent business applications that empowers everyone to deliver operational excellence and create more engaging customer experiences. A Dynamics 365 CE report has the potential to overcome those limitations. Dynamics 365 CE offers end users a reporting wizard to create basic reports. This wizard offers similar functionality to a view but also includes grouping and charts, but, again, in a limited fashion. The real powerhouse of reports is a custom report.

Introduction

In today’s blog we will explore how to filter records in PowerApps of Dynamics 365 CRM based on the logged in user in the PowerApps.

Now I have created a default Canvas app for Account entity. As you can see in below screenshot, the list contains all the account records belonging to different users:

Now we have to filter the records based on the logged in user in PowerApps. To achieve this please follow the below steps:

Dynamics 365 Ce

1. Create a default Canvas app for appointment entity by using Dynamics 365 CRM. You can refer our previous blog here.

2. Now, edit the “Item” property of BrowseGallery:

SortByColumns(

Filter(

Dynamics 365 Customer Portal

Accounts,

Owner = LookUp(

Users,

‘User Name’ = User().Email,

User

Dynamics 365 center of excellence

)

),

“emailaddress1”,

“address1_city”,

Dynamics 365 ce trial

“name”,

If(

SortDescending1,

Descending,

Ascending

)

)

Please see the screenshot below:

The above formula filters the account records by implementing the condition if ownerid is equal to the logged in user by using the function User() in PowerApps.

The User() function in PowerApps returns the information as Email, Full Name and Image about current logged in user in PowerApps.

You can refer this blog to gets more details.

3. Now log in to the other user and you will see the app contains those account records which belongs to the user:

Conclusion

By implementing the above steps we can filter records of Dynamics 365 CRM in PowerApps based on the owner of the records.

In this article we would like to show how to kick start a custom ReactJS UI implementation within Dynamics 365 Customer Engagement using an existing ReactJS template.

In a nutshell

We licensed the Light Bootstrap Dashboard PRO React Template by Creative Tim for our customer and integrated the template into Dynamics 365 CE to develop a custom UI upon that using Web Resources (IFRAME). In this post we’d like to show the first steps how to get started and set that up.

Background

The user interface of Dynamics 365 CE improves steadily. Especially with the release of the Unified Interface. Nevertheless, there are moments when you encounter the limits of the Dynamics 365 CE UI capabilities and you need to think about different means how to provide great usability. One of the means, is the now available possibility to develop custom Canvas Apps. Another one is the future possibility of the Custom Control Framework (which is not yet available, but will be soon). In the meantime, the best option to provide a custom user interface within Dynamics 365 CE is a custom UI implementation using frameworks like ReactJS or Angular. For both options we have implemented several implementations. For ReactJS we would hereby like to provide a simple guide how to get that started.

Hosting of the UI

For every custom implementation of a web interface you have to think about hosting. Using SPA (single page application) design you have to worry about two different questions:

  • A server that provides download of the HTML and JavaScript files
  • A back-end to provide an API that exposes the data

Regarding the hosting of your client side resources (HTML, CSS, JavaScript, images) in combination with Dynamics 365 CE exist basically the following two options:

  • Using Dynamics 365 CE as your host (meaning you deploy the HTML, CSS, images and JavaScripts as Web Resources to Dynamics 365 CE)
  • Hosting your HTML and Web Resources on a custom server (e.g. a custom .NET Web App that is hosted on Azure or on premise within IIS). You’d like to do that when your user interface should be also available outside of Dynamics 365 CE.

Regarding the back-end you could:

  • Use the web api of Dynamics 365 CE (if you access Dynamics 365 CE data only) and expose custom actions (also exposed over the web api)
  • Additionally expose a custom API using .NET Web API hosted on Azure for example (secured e.g. with OAUTH2 using Azure AD and ADAL.js on client side)

In this article we would like to focus on the ReactJS part. Due to this we will show how to host ReactJS as Web Resource within Dynamics 365 CE (you could then use Xrm Tooling to access the Dynamics 365 Web Api from within the ReactJS application). In a future post we will show to put ADAL.js on top of it to handle authentication against a custom .NET Web API using OAUTH2.

Getting started

After licensing the template and downloading and extracting it you should end up with a folder structure as following:

First thing to mention here is that the template we chose was created with one of the most popular starter kits, the Create React App starter kit.

Looking at the package.json you’ll see that it looks quite simple. Well, that’s actually why the Create React App starter kit is so popular. Most of the logic is handled actually within the react-scripts and is not visible for the developer. If you want to see the details, you could create a copy and eject to see the details. We would recommend that only on a copy, since it’s a one way action where you cannot get back (except with the help of source control and undo). Ejecting from the simple version of the Create React App starter kit should be the last option if you really cannot handle something . In this guide we will not eject and stay on the simple version that uses react-scripts.

To run the ReactJS app you will need to install NodeJS and Python (add python executable to path or check it in the installer). Afterwards run the following script to install the necessary modules.

If you encounter problems during installation, have a look here and here.

Having the dependencies downloaded and installed, you can start the app:

Microsoft Dynamics 365 Ce

This will start the webpack server and should bring up the following browser window with the following url: http://localhost:3000/#/dashboard

Integration into Dynamics 365 CE

When working locally, npm run start will start the webpack server and this will serve the files from memory. For deploying the first draft of the template to Dynamics 365 CE we first need to generate the build files so we can then try to upload them to Dynamics as web resource. To do that, execute the following command:

This will generate bundled and minified JavaScript and CSS files as well as media file in the folder build/static.

  • buildindex.html
  • buildstaticjsmain.fd363da8.js
  • buildstaticjsmain.fd363da8.js.map
  • buildstaticmediaPeicon7stroke.01798bc1.ttf
  • buildstaticmediaPeicon7stroke.b38ef310.woff
  • buildstaticcssmain.1cfbe954.css
  • buildstaticcssmain.1cfbe954.css.map

Challenges

Looking at the generated files you might notice that a random build number is used for the output files. Moreover some icon files are used, where we currently will only handle the Pe-icon-7 files as an example.

To upload those files to Dynamics 365 CE we would actually need something more or less in the form of the following (depending on the tooling). In our case, we are using Microsoft Dynamics 365 Developer Toolkit at this customer. You could also upload your resources using spkl as we do at other projects. “pre” represents some prefix for your solution publisher. Depending on your tooling you could replace the “_” with “” and a folder structure (we do so in Visual Studio in the properties of the files, see below). Please note that for some files we had to add the the extension “.js” or “.css“. To upload those files we have to trick Dynamics and make it think it was actually a .js or .css file. Furthermore look closely, that for the Pe-icon-7 files we had to replace “” with “_“. All due to some Dynamics 365 CE requirements for the file names that are allowed for web resources and that can be uploaded.

  • WebResourcesWeb Page (HTML)pre_sample_index.html
  • WebResourcesScript (JScript)pre_sample_static_js_bundle.js
  • WebResourcesScript (JScript)pre_sample_static_js_bundle.js.map.js
  • WebResourcesScript (JScript)pre_sample_static_media_Pe_icon_7_stroke.01798bc1.ttf.js
  • WebResourcesScript (JScript)pre_sample_static_media_Pe_icon_7_stroke.b38ef310.woff.js
  • WebResourcesStyle Sheet (CSS)pre_sample_static_css_styles.css
  • WebResourcesStyle Sheet (CSS)pre_sample_static_css_styles.css.map.css

Using the Microsoft Dynamics 365 Developer Toolkit the files are then represented as following to form a nice folder structure within Dynamics 365 CE:

So the challenges are:

  • a random build number that makes deployment to a web resource tricky
  • the generated .js file and .css file contain references to the corresponding .map files (to see that open the files and look at the end of the file) also containing the random build number
  • we have to change the file extension to be able to upload the resources to Dynamics 365 CE (at least when we do it manually)
  • The file name of the icon files would need to be changed, so also the references to those files within the icon font .css file

The missing link

Looking at what the Create React App currently provides and what we would actually need, a simple script would be great that would take care of those transformations. And that is actually what we provide here by first changing the package.json the following way:

For the build command, we added the execution of our own scrips after the build, that first process the output files (processBuildFilesForDeployment) and then copy over the processed files to the WebResources folder that we use for deployment to Dynamics 365 CE. Let’s have a closer look to this custom processBuildFilesForDeployment.js then.

The code above takes care of the following

  • changing source map references within the bundled .js and .css file
  • renaming the bundled .js and .css files to get rid of the random build number
  • adding the necessary file endings that we need for upload to Dynamics 365 CE
  • Changing the reference for the icon files since in the file name we replaced ‘-‘ with ‘_’

Dynamics 365 Ce Crm

In the scripts “copyJSFiles” and “copyCSSFiles” within the package.json we copy over the resulting files. Since the icons files (Pe-icon-7) do not change very frequently we just copy them over into the Web Resources folder once manually and rename them to “Pe_icon_7“.

Entry point

The part missing until now is the index.html. For this we also just create a static version within the Web Resources folder (that is not copied over automatically). We took the index.html from ReactJS as a reference and then we changed the references to the .css and .js files. The outcome looks similar to this (simplified version):

Putting it all together

Dynamics 365 Set Form Section Invisible

  1. Execute “npm run start” to start the local webpack server for development
  2. Upload at least the index.html as web resource once, so you can include it as a web resource (IFRAME) on some form
  3. Use Fiddler and AutoResponder for local development (this redirects your browser requests that would normally be served by the Dynamics 365 CE server to your local webpack server). This way you can open Dynamics 365 CE user interface, which will load the form, but then the IFRAME contents (so your ReactJS App) is served from your local development server. Since for the browser it appears as if the files were served by the Dynamics 365 CE server, you can even access the Dynamics 365 CE Web Api without any authentication (since cookies are automatically passed, as for the browser it appears as the Dynamics domain)
  4. When you are done, execute “npm run build“. This will create the minified bundles. Source map references will be exchanged, font icon file references changed, files renamed and copied over to the Web Resources folder.
  5. Then deploy and publish the just built bundled and minified files to the Dynamics 365 CE server

The rest is then ReactJS web development and design, accessing probably the Dynamics 365 CE Web Api or some custom REST Api to retrieve some data, transform it and present it nicely.

Summary

We showed how to use a ReactJS template (one that is implemented by means of the Create React App starter kit) and how to modify it just a little bit to make it Dynamics 365 CE Web Resource deployment ready. This way no manual modification is anymore necessary and the development and build process is actually quite smooth and time saving. Starting with the licensing of an existing template saves lot of manual design and coding time.