Missing content on sync mappings tab
Learn how to troubleshoot a Sync Mappings tab that's blank after you refresh the sandbox org
This topic provides troubleshooting steps for when Reltio Control Panel displays nothing on the Sync Mappings tab after you refresh the sandbox org. Refreshing causes changes in the organization ID. However, Reltio Integration for Salesforce continues to use the previous value, but these IDs are used for all SFDC Connector Configuration and Search Before Create requests. As the tenant profile, defined by the new Organization ID doesn't exist, all the requests fail with 404 error.
Resolution
Perform the following steps to resolve this issue:- Retrieve information about profile configuration, mapping and custom logic (cl):
GET {{SFDCConnectorUrl}}/configuration/{{tenant}}/{{oldOrganisationId}}
GET {{SFDCConnectorUrl}}/configuration/{{tenant}}/{{oldOrganisationId}}/mapping
{{SFDCConnectorUrl}}/configuration/{{tenant}}/{{oldOrganisationId}}/cl
- Delete the old profile. Otherwise, the new profile will not be created with same Salesforce source.
DELETE {{SFDCConnectorUrl}}/configuration/{{tenant}}/{{oldOrganisationId}}
- Create new profile, appropriate mapping, and the
cl
.- The following command displays the API posting the old profile. You can repost the old profile into the new profile.
POST {{SFDCConnectorUrl}}/configuration/{{tenant}}/{{newOrganisationId}}
- The following command displays the API for posting the mapping. You can get the mapping from the previous profile and repost it into the new profile.
POST {{SFDCConnectorUrl}}/configuration/{{tenant}}/{{newOrganisationId}}/mapping
- The following command displays the API for posting the old custom logic. You can get the old custom logic from the previous profile and repost it into the new profile.
POST {{SFDCConnectorUrl}}/configuration/{{tenant}}/{{newOrganisationId}}/cl
- The following command displays the API posting the old profile. You can repost the old profile into the new profile.