We intended to open a specific Product form, distinct from the default one, when clicking a view button. Since using a ‘Select Form’ rule was not viable, we opted for the following code solution. When employing the ‘FormManager.showEditDialog’ function, we…
Category: Resco
Resco CRM – Plug-in Assembly example
I recommend reading the Resco documentation on plugin assemblies here to ensure proper project setup before coding. In Resco CRM, you must create a new process and call it within the process to activate a plugin. See the example below:…
Resco CRM – How to use InvokeWebRequest in a Process
In my example I am trying to send a SMS message to a mobile number using Resco’s InvokeWebRequest. There are 4 parts to constructing the ‘InvokeWebRequest’ function. Method – To send a data to an API server. We will need…
Resco CRM – Nested Reapters using the same entity
I had a requirement to display a list of Services and Products onto a Quote report. But list all the services on top of each product within the report. This means that I will need two Repeaters which displays a…
Migration from Resco to Microsoft (Field Service Mobile) in April 2021
This is a continuation of my last blog post – https://www.daymandynamics.com/migration-from-resco-to-microsoft-field-serivce-mobile-in-may-2020/ Microsoft have added some migration details which can be found here – https://docs.microsoft.com/en-us/dynamics365/field-service/mobile-2020-power-platform. Observing some important information within that link is Microsoft actually now recommends using their new application…
Loop through selected records in a Multi-Select view custom command with Resco Mobile CRM
You cannot create a form rule for your custom Multi-Select command which means that you will need to add some Offline HTML to execute your custom rule. To apply your custom rule you will need to add a new command…
Bypassing frontend validation on the web using Fetch
This is just an example of how you could possibly bypass certain front end validation by executing an asynchronous fetch within the developer tools console. When trying to create a new process in Resco Cloud, there is a function called…
Migration from Resco to Microsoft (Field Service Mobile) in May 2020
Microsoft have announced there new Field Service Mobile application which is soon to replace the old application previous built using the Resco platform – https://docs.microsoft.com/en-us/dynamics365/field-service/mobile-2020-power-platform This blog post may seem a little pre mature as the application has just been…
How to get more space out of your views in Resco Mobile CRM
This post will show you how you can get some extra space in your views in Resco Mobile CRM. Below is an example of using extra space in the view where I have added custom icons in place of the…
Generating a mobile report and attaching it to an email using JavaScript in Resco Mobile CRM
In this post I will show an example of how to execute a mobile report and sending it within an email using javascript in Resco CRM. I had a requirement to provide a way of quickly creating an email with…