DYNAMICS 365 CRM HOW TO CHECK THE IMPORT SOLUTION PROGRESS
Importing solutions to the DEV, TEST, UAT or PROD environments in Dynamics 365 CRM is a common activity for system administrators and developers.
However, when importing large or complex solutions, it can be frustrating to sit and wonder: How far along is the import? or Is it stuck?
-
Step 1: Open Dynamics CRM Advanced Find, where the solution is being imported.
-
Step 2: In Look for: Select Import Jobs entity and give the condition Created On = Today to narrow down the result.
- Step 3: Make sure that the column Progress is added to the view.
-
Step 4: Identify your Solution Name and check the Progress (%) column in percentage.
-
Step 5: Once the import is done, you can verify that the progress is now 100.
- You can use the Solution Transfer Tool in XrmToolBox to help tracking the progress of solution imports.
-
You can use Web API calls, to monitor the import status by querying the importjob table in Dataverse.
You can query it directly using Web API tools or Power Automate. [EnvironmentURL]/api/data/v9.2/importjobs?$select=progress,statuscode,name
Published on:
Learn moreRelated posts
How to Remove an Active Unmanaged Layer from the Ribbon in Power Apps (Dynamics 365 CRM) Using ribbondebug=true
Customizing the ribbon (command bar) in Dynamics 365 CRM via Power Apps can be a powerful way to tailor the user interface ...
DYNAMICS 365 CRM ADDING ENTITY METADATA AFTER ADDING THE TABLE TO A SOLUTION
In Microsoft Dynamics 365 CRM, solutions function as the fundamental units for packaging, deploying, and managing s...
HOW TO GET MICROSOFT DYNAMICS 365 FORM TYPE IN JAVASCRIPT
If you're working on forms within Microsoft Dynamics 365 and seeking to understand how to create different types of forms - such as Main Form,...
DISABLE ALL FORM FIELDS IN DYNAMICS 365 USING JAVASCRIPT
If you're working with Dynamics 365 and need to disable all form fields using JavaScript, this article has got you covered. There are three op...
CHANGE ROLLUP FIELD RECURRENCE SCHEDULE IN DATAVERSE / DYNAMICS 365
If you're using Dynamics 365, you might find the roll-up field feature useful for performing aggregation and calculation of data in a parent r...
OPEN DYNAMICS 365 ADVANCED FIND BY DEFAULT IN DETAILED MODE
If you use Advanced Find in Dynamics 365, you can optimize its usage by opening it in detailed mode by default. Normally, when you open the Ad...
SEARCH BY GUID IN DYNAMICS 365
Have you ever wondered if it is possible to search for a CRM record using its GUID in Dynamics 365? Well, the answer is both NO and YES. ...
SAVE FORM IN DYNAMICS 365 JAVASCRIPT
Are you curious about how to save a CRM form automatically in Dynamics 365 using JavaScript? Look no further! This tutorial will guide yo...
CHANGE CONTROL LABEL DURING RUNTIME IN DYNAMICS 365 USING JAVASCRIPT
If you're working with Dynamics 365 and require changing control labels at runtime, worry not. This blog post presents a simple solution using...
CHECKING DIRTY FIELDS IN DYNAMICS 365 USING JAVASCRIPT
In Dynamics 365, it is crucial to know which fields have been modified on the form during an update. While creating a plugin to receive data o...