Unify and manage your data

Enable DCR edit mode in the UI

Learn how to enable in-flight editing of submitted Data Change Requests by updating your UI configuration settings.

Prerequisites:

  • You must have permissions to edit tenant-level configuration.
  • You must understand the structure of your UI configuration model.
  1. Open your UI configuration file
    • If using the new configuration format, set the following property
      
      {
        "properties": {
          "workflow": {
            "reviewDCR": true
          }
        }
      }
                

      This enables the Review DCR button in the workflow right panel.

    • If using the legacy plugin format, add this configuration block
      
      {
        "point": "com.reltio.plugins.ui.configuration",
        "id": "com.reltio.plugins.workflow.configuration",
        "enabled": true,
        "reviewDCR": true
      }
                

      This configuration has the same effect as the modern config, enabling the edit mode.

  2. Enable the feature only for specific entity types

    You can scope the reviewDCR flag at the entity type level if needed.

    
    {
      "uri": "configuration/entityTypes/HCP",
      "reviewDCR": true
    }
              

When the feature is enabled, you will see the Review DCR button on eligible workflow tasks. Selecting the button opens the full-screen DCR editing dialog.