Problem
Country Code is displaying as ‘United Kingdon(GB)” instead of ‘GB-United Kingdom(GB)”
Solution
For the issue reported, the country code value in the UI in the United Kingdom
You can verify whether it displays correctly by doing the following:
1. Check the MDM tenant using the configuration API:
GET https://{EnvironmentURL}/reltio/api/{tenantId}/configuration
Find the RDM tenant ID. Use the snippet below to find the RDM tenant information:
"rdmTenantId": "{rdm tenantId}",
2. Use the API below to check the RDM lookups:
GET https://rdm.reltio.com/lookups/{rdmTenantId}
Below is the snippet from the RDM lookups where the value is mentioned as the United Kingdom
{
"source": "Reltio",
"values": [
{
"code": "GB",
"value": "United Kingdom",
"enabled": true,
"canonicalValue": true,
"downStreamDefaultValue": true
}
]
},
To fix the misspelling in the UI cited in the problem statement, change the value so that the country code will be displayed as "GB-United Kingdom". Use the snippet below for reference.
From:
{
"source": "Reltio",
"values": [
{
"code": "GB",
"value": "United Kingdom",
"enabled": true,
"canonicalValue": true,
"downStreamDefaultValue": true
}
]
},
To:
{
"source": "Reltio",
"values": [
{
"code": "GB",
"value": "GB-United Kingdom",
"enabled": true,
"canonicalValue": true,
"downStreamDefaultValue": true
}
]
},
Comments
Please sign in to leave a comment.