You are here:
Fix the DataPack Import or Export Error: No Configuration Found (Managed Package)
For the managed package runtime, if you see the error message No Configuration Found while trying to import or export a DataPack, the issue is most likely with the configuration of the Salesforce org. This error often occurs in developer sandboxes that are missing some of the configuration files owing to a recent refresh or an install or upgrade that has missed a post-install or post-upgrade step. You can fix this error with code in Anonymous Apex.
This information is for Omnistudio for Managed Packages. For Omnistudio on standard runtime, see Omnistudio Help.
-
Go to the Developer Console.
- In Lightning Experience, click the gear icon and select Developer Console from the menu.
- In Salesforce Classic, click the user menu and select Developer Console from the menu.
- Select .
-
Paste the following code into the Enter Apex Code window:
namespace.CorePostInstallClass.runDev2ProdInserts();-
If you’re using Contract Life Cycle Management, add
namespace.CmPostInstallClass.cmRunDev2ProdInserts();. -
If you’re using Order Management, add
namespace.XOMCreateDPMappings.createDPMappings();
-
If you’re using Contract Life Cycle Management, add
-
For the namespace placeholder in the code above, substitute one of the
following:
-
vlocity_cmtfor Salesforce Industries Communications, Media, and Energy -
vlocity_insfor Vlocity Insurance -
vlocity_psfor Vlocity Government
-
- Click Execute.

