[IMP] data cleaning: content improvements
closes odoo/documentation#12055 Signed-off-by: Samuel Lieber (sali) <sali@odoo.com> Co-authored-by: dikd-odoo <dikd@odoo.com>
This commit is contained in:
parent
20a9faef80
commit
a762cabbb3
@ -2,99 +2,96 @@
|
|||||||
Data Cleaning
|
Data Cleaning
|
||||||
=============
|
=============
|
||||||
|
|
||||||
The Odoo *Data Cleaning* app keeps the database neat and organized throughout the use of its
|
The Odoo **Data Cleaning** app maintains data integrity and consistency with the following features:
|
||||||
provided features:
|
|
||||||
|
|
||||||
- :ref:`Deduplicates <data_cleaning/deduplication>`: merges or removes duplicate entries to ensure
|
- :ref:`Deduplicates <data_cleaning/deduplication>`: merges or removes duplicate entries to ensure
|
||||||
data is unique.
|
data is unique.
|
||||||
- :ref:`Recycles <data_cleaning/recycle>`: identifies outdated records to either archive or delete
|
- :ref:`Recycles <data_cleaning/recycle>`: identifies outdated records to either archive or delete
|
||||||
them.
|
them.
|
||||||
- :ref:`Merges <data_cleaning/merge-action-manager>`: combines multiple similar entries into one
|
|
||||||
streamlined record.
|
|
||||||
- :ref:`Formats <data_cleaning/field-cleaning>`: standardizes text data by finding and replacing it
|
- :ref:`Formats <data_cleaning/field-cleaning>`: standardizes text data by finding and replacing it
|
||||||
according to specified needs.
|
according to specified needs.
|
||||||
|
|
||||||
Through customizable automated rules (or manual praxis), individual records and accompanying text
|
Customizable rules ensure text data stays up-to-date, streamlined, consistently formatted, and
|
||||||
data in the database will remain up-to-date and consistently formatted, tailored to company
|
aligned with company-specific formatting requirements.
|
||||||
specifications.
|
|
||||||
|
|
||||||
.. _data_cleaning/install-modules:
|
.. _data_cleaning/install-modules:
|
||||||
|
|
||||||
Install modules
|
Install modules
|
||||||
===============
|
===============
|
||||||
|
|
||||||
The *Data Cleaning* application consists of several modules. :ref:`Install <general/install>` the
|
The **Data Cleaning** application consists of several modules. :ref:`Install <general/install>` the
|
||||||
following to access all available features:
|
following to access all available features:
|
||||||
|
|
||||||
.. list-table::
|
.. list-table::
|
||||||
:header-rows: 1
|
:header-rows: 1
|
||||||
:widths: 25 25 50
|
:widths: 40 60
|
||||||
|
|
||||||
* - Name
|
* - | Name
|
||||||
- Technical name
|
| `Technical name`
|
||||||
- Description
|
- Description
|
||||||
* - :guilabel:`Data Recycle`
|
* - | :guilabel:`Data Recycle`
|
||||||
- `data_recycle`
|
| `data_recycle`
|
||||||
- Base module to enable the recycle feature, available on Odoo Community edition.
|
- Base module to enable the recycle feature, available on :ref:`Odoo Community edition
|
||||||
* - :guilabel:`Data Cleaning`
|
<install/editions>`.
|
||||||
- `data_cleaning`
|
* - | :guilabel:`Data Cleaning`
|
||||||
|
| `data_cleaning`
|
||||||
- Enables field cleaning feature to format text data across multiple records, available
|
- Enables field cleaning feature to format text data across multiple records, available
|
||||||
**only** on Odoo Enterprise edition.
|
**only** on :ref:`Odoo Enterprise edition <install/editions>`.
|
||||||
* - :guilabel:`Data Cleaning (merge)`
|
* - | :guilabel:`Data Cleaning (merge)`
|
||||||
- `data_merge`
|
| `data_merge`
|
||||||
- Enables the deduplication feature to find similar (or duplicate) records, and merge them,
|
- Enables the deduplication feature to find similar (or duplicate) records, and merge them,
|
||||||
available **only** on Odoo Enterprise edition.
|
available **only** on :ref:`Odoo Enterprise edition <install/editions>`.
|
||||||
|
|
||||||
.. spoiler:: Additionally, several app-specific modules are available
|
.. spoiler:: Additionally, several app-specific modules are available
|
||||||
|
|
||||||
.. list-table::
|
.. list-table::
|
||||||
:widths: 25 25 50
|
:widths: 40 60
|
||||||
|
|
||||||
* - :guilabel:`CRM Deduplication`
|
* - | :guilabel:`CRM Deduplication`
|
||||||
- `data_merge_crm`
|
| `data_merge_crm`
|
||||||
- Enables the deduplication feature on the *CRM* app, and uses the :doc:`CRM default merging
|
- Enables the deduplication feature on the **CRM** app, and uses the :doc:`CRM default
|
||||||
feature <../sales/crm/pipeline/merge_similar>`.
|
merging feature <../sales/crm/pipeline/merge_similar>`.
|
||||||
* - :guilabel:`Helpdesk Merge action`
|
* - | :guilabel:`Helpdesk Merge action`
|
||||||
- `data_merge_helpdesk`
|
| `data_merge_helpdesk`
|
||||||
- Enables the merge feature for the *Helpdesk* app.
|
- Enables the merge feature for the **Helpdesk** app.
|
||||||
* - :guilabel:`Project Merge action`
|
* - | :guilabel:`Project Merge action`
|
||||||
- `data_merge_project`
|
| `data_merge_project`
|
||||||
- Enables the merge feature for the *Projects* app.
|
- Enables the merge feature for the **Projects** app.
|
||||||
* - :guilabel:`UTM Deduplication`
|
* - | :guilabel:`UTM Deduplication`
|
||||||
- `data_merge_utm`
|
| `data_merge_utm`
|
||||||
- Enables the merge feature for the *UTM Tracker* app.
|
- Enables the merge feature for the **UTM Tracker** app.
|
||||||
* - :guilabel:`WMS Accounting Merge`
|
* - | :guilabel:`WMS Accounting Merge`
|
||||||
- `data_merge_stock_account`
|
| `data_merge_stock_account`
|
||||||
- Creates a warning in cases of products merging that may affect inventory valuation, if the
|
- Creates a warning in cases of products merging that may affect inventory valuation, if the
|
||||||
*Inventory* app is installed.
|
**Inventory** app is installed.
|
||||||
|
|
||||||
.. _data_cleaning/deduplication:
|
.. _data_cleaning/deduplication:
|
||||||
|
|
||||||
Deduplication
|
Deduplication
|
||||||
=============
|
=============
|
||||||
|
|
||||||
On the :guilabel:`Duplicates` dashboard (:menuselection:`Data Cleaning app --> Deduplication`), Odoo
|
The *Duplicates* dashboard groups similar records to be :ref:`merged <data_cleaning/merge-records>`
|
||||||
suggests groups of similar records to be :ref:`merged <data_cleaning/merge-records>` by matching
|
by matching conditions within the records set by the :ref:`deduplication rules
|
||||||
conditions within the records set by the :ref:`deduplication rules
|
|
||||||
<data_cleaning/deduplication-rules>`.
|
<data_cleaning/deduplication-rules>`.
|
||||||
|
|
||||||
|
Navigate to this dashboard by going to :menuselection:`Data Cleaning app --> Deduplication`.
|
||||||
|
|
||||||
.. image:: data_cleaning/data-cleaning-duplicates.png
|
.. image:: data_cleaning/data-cleaning-duplicates.png
|
||||||
:align: center
|
|
||||||
:alt: Deduplication dashboard in the Data Cleaning application.
|
:alt: Deduplication dashboard in the Data Cleaning application.
|
||||||
|
|
||||||
The :guilabel:`RULE` sidebar lists each of the active deduplication rules, and displays the total
|
The :guilabel:`RULE` sidebar lists each of the active deduplication rules, and displays the total
|
||||||
number of duplicates detected beside each rule.
|
number of duplicates detected beside each rule.
|
||||||
|
|
||||||
By default, the :guilabel:`All` rule is selected. Displayed records are grouped by their rule, with
|
By default, the :guilabel:`All` rule is selected. Records are grouped by their rule, with a
|
||||||
a :guilabel:`Similarity` rating (out of 100%) in the list view, with the following columns:
|
:guilabel:`Similarity` rating (out of 100%), with the following columns:
|
||||||
|
|
||||||
- :guilabel:`Created On`: the date and time the original record was created.
|
- :guilabel:`Created On`: the date and time the original record was created.
|
||||||
- :guilabel:`Name`: the name or title of the original record.
|
- :guilabel:`Name`: the name or title of the original record.
|
||||||
- :guilabel:`Field Values`: the original record's values for the fields used to detect duplicates.
|
- :guilabel:`Field Values`: the original record's values for the fields used to detect duplicates.
|
||||||
- :guilabel:`Used In`: lists other models referencing the original record.
|
- :guilabel:`Used In`: lists other models referencing the original record.
|
||||||
- :guilabel:`ID`: the original record's unique ID.
|
- :guilabel:`ID`: the original record's unique ID.
|
||||||
- :guilabel:`Is Master`: the duplicates are merged into the *master* record. There can be **one**
|
- :guilabel:`Is Master`: the duplicates are merged into the *master* record. There can only be
|
||||||
master record in a grouping of similar records.
|
**one** master record in a grouping of similar records.
|
||||||
|
|
||||||
Select a specific rule in the :guilabel:`RULE` sidebar to filter the duplicate records.
|
Select a specific rule in the :guilabel:`RULE` sidebar to filter the duplicate records.
|
||||||
|
|
||||||
@ -112,38 +109,36 @@ Next, click the :guilabel:`Merge` button at the top of the similar records group
|
|||||||
:guilabel:`Ok` to confirm the merge.
|
:guilabel:`Ok` to confirm the merge.
|
||||||
|
|
||||||
Once a record is merged, a message is logged in the chatter of the master record, describing the
|
Once a record is merged, a message is logged in the chatter of the master record, describing the
|
||||||
merge. Certain records, like *Project* tasks, are logged in the chatter with a link to the old
|
merge. Certain records, like **Project** tasks, are logged in the chatter with a link to the old
|
||||||
record for a convenient reference.
|
record as a convenient reference of the merge.
|
||||||
|
|
||||||
.. tip::
|
.. tip::
|
||||||
Discard groupings by clicking the :guilabel:`DISCARD` button. Upon doing so, the grouping is
|
Discard groupings by clicking the :guilabel:`DISCARD` button. Upon doing so, the grouping is
|
||||||
hidden from the list and archived.
|
hidden from the list and archived.
|
||||||
|
|
||||||
View discarded groupings by selecting the :guilabel:`Discarded` filter from the :ref:`Search...
|
View discarded groupings by selecting the :guilabel:`Discarded` filter from the :ref:`search bar
|
||||||
<search/filters>` bar.
|
<search/filters>`.
|
||||||
|
|
||||||
.. _data_cleaning/deduplication-rules:
|
.. _data_cleaning/deduplication-rules:
|
||||||
|
|
||||||
Deduplication rules
|
Deduplication rules
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
The :guilabel:`Deduplication Rules` page (:menuselection:`Data Cleaning app --> Configuration -->
|
The *Deduplication Rules* set the conditions for how records are detected as duplicates.
|
||||||
Rules: Deduplication`) is where the conditions for records to be detected as duplicates can be set.
|
|
||||||
|
|
||||||
These rules can be configured for each model in the database, and with varying levels of
|
These rules can be configured for each model in the database, and with varying levels of
|
||||||
specificity.
|
specificity. To get started, navigate to :menuselection:`Data Cleaning app --> Configuration -->
|
||||||
|
Deduplication`.
|
||||||
|
|
||||||
.. tip::
|
.. tip::
|
||||||
The deduplication rules run once every day, by default, as part of a scheduled action chron
|
The deduplication rules run once every day, by default, as part of a scheduled action cron
|
||||||
(*Data Merge: Find Duplicate Records*). However, each rule can be :ref:`ran manually
|
(*Data Merge: Find Duplicate Records*). However, each rule can be :ref:`ran manually
|
||||||
<data_cleaning/run-deduplication-rule>` anytime.
|
<data_cleaning/run-deduplication-rule>` anytime.
|
||||||
|
|
||||||
Modify a deduplication rule
|
Modify a deduplication rule
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Select a default rule to edit, or create a new rule by clicking on the :guilabel:`New` button, on
|
Select a default rule to edit, or create a new rule by clicking on the :guilabel:`New` button.
|
||||||
the :guilabel:`Deduplication Rules` page (:menuselection:`Data Cleaning app --> Configuration -->
|
|
||||||
Rules: Deduplication`).
|
|
||||||
|
|
||||||
First, choose a :guilabel:`Model` for this rule to target. Selecting a model updates the rule title
|
First, choose a :guilabel:`Model` for this rule to target. Selecting a model updates the rule title
|
||||||
to the chosen model.
|
to the chosen model.
|
||||||
@ -178,8 +173,7 @@ clicking :guilabel:`Add a line`, under the :guilabel:`Unique ID Field` column.
|
|||||||
casing and language-specific accent differences.
|
casing and language-specific accent differences.
|
||||||
|
|
||||||
.. important::
|
.. important::
|
||||||
The rule does **not** capture duplicates without at least one deduplication rule set in the
|
At least one :guilabel:`Deduplication Rules` must be set for the rule to capture duplicates.
|
||||||
:guilabel:`Deduplication Rules` field.
|
|
||||||
|
|
||||||
.. tip::
|
.. tip::
|
||||||
A few more fields are available for an advanced configuration.
|
A few more fields are available for an advanced configuration.
|
||||||
@ -199,38 +193,38 @@ Manually run a deduplication rule
|
|||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
To manually run a specific deduplication rule at any time, navigate to :menuselection:`Data Cleaning
|
To manually run a specific deduplication rule at any time, navigate to :menuselection:`Data Cleaning
|
||||||
app --> Configuration --> Rules: Deduplication`, and select the rule to run.
|
app --> Configuration --> Deduplication`, and select the rule to run.
|
||||||
|
|
||||||
Then, on the rule form, select the :guilabel:`Deduplicate` button on the top-left. Upon doing so,
|
Then, on the rule form, select the :guilabel:`Deduplicate` button on the top-left. Upon doing so,
|
||||||
the :icon:`fa-clone` :guilabel:`Duplicates` smart button displays the number of duplicates captured.
|
the :icon:`fa-clone` :guilabel:`Duplicates` smart button displays the number of duplicates captured.
|
||||||
|
|
||||||
Click on the :icon:`fa-clone` :guilabel:`Duplicates` smart button to manage these records.
|
Click on the :icon:`fa-clone` :guilabel:`Duplicates` smart button to :ref:`manage these records
|
||||||
|
<data_cleaning/merge-records>`.
|
||||||
|
|
||||||
.. _data_cleaning/recycle:
|
.. _data_cleaning/recycle:
|
||||||
|
|
||||||
Recycle records
|
Recycle records
|
||||||
===============
|
===============
|
||||||
|
|
||||||
Use the *Recycle Records* feature to rid the database of old and outdated records.
|
Use the *recycle records* feature to rid the database of old and outdated records.
|
||||||
|
|
||||||
On the :guilabel:`Field Recycle Records` dashboard (:menuselection:`Data Cleaning app --> Recycle
|
The *Field Recycle Records* dashboard displays records that can be archived or deleted, by matching
|
||||||
Records`), Odoo detects records that can be archived or deleted, by matching conditions within the
|
conditions within the records set by the :ref:`recycle record's rules <data_cleaning/recylce-rule>`.
|
||||||
records set by the :ref:`recycle record's rules <data_cleaning/recylce-rule>`.
|
|
||||||
|
Navigate to this dashboard by going to :menuselection:`Data Cleaning app --> Recycle Records`.
|
||||||
|
|
||||||
.. image:: data_cleaning/data-cleaning-recycle.png
|
.. image:: data_cleaning/data-cleaning-recycle.png
|
||||||
:align: center
|
|
||||||
:alt: Field Recycle Records dashboard in the Data Cleaning application.
|
:alt: Field Recycle Records dashboard in the Data Cleaning application.
|
||||||
|
|
||||||
The :guilabel:`RECYCLE RULES` sidebar lists each of the active recycle record rules, and displays
|
The :guilabel:`RECYCLE RULES` sidebar lists each of the active recycle record rules.
|
||||||
the total number of records detected beside each rule.
|
|
||||||
|
|
||||||
By default, the :guilabel:`All` option is selected. Records are displayed in the list view, with the
|
By default, the :guilabel:`All` option is selected. Records are displayed with the following
|
||||||
following columns:
|
columns:
|
||||||
|
|
||||||
- :guilabel:`Record ID`: the ID of the original record.
|
- :guilabel:`Record ID`: the ID of the original record.
|
||||||
- :guilabel:`Record Name`: the name or title of the original record.
|
- :guilabel:`Record Name`: the name or title of the original record.
|
||||||
|
|
||||||
Select a specific rule in the :guilabel:`RECYCLE RULES` sidebar to filter the duplicate records.
|
Select a specific rule in the :guilabel:`RECYCLE RULES` sidebar to filter the records.
|
||||||
|
|
||||||
To recycle records, click the :icon:`fa-check` :guilabel:`Validate` button on the row of the record.
|
To recycle records, click the :icon:`fa-check` :guilabel:`Validate` button on the row of the record.
|
||||||
|
|
||||||
@ -249,16 +243,16 @@ archived or deleted from the database.
|
|||||||
Recycle record rules
|
Recycle record rules
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
The :guilabel:`Recycle Records Rules` page (:menuselection:`Data Cleaning app --> Configuration -->
|
The *Recycle Records Rules* set the conditions for how records are recycled.
|
||||||
Rules: Recycle Records`) is where the conditions for records to be recycled can be set.
|
|
||||||
|
|
||||||
These rules can be configured for each model in the database, and with varying levels of
|
These rules can be configured for each model in the database, and with varying levels of
|
||||||
specificity.
|
specificity. To get started, navigate to :menuselection:`Data Cleaning app --> Configuration -->
|
||||||
|
Recycle Records`.
|
||||||
|
|
||||||
.. tip::
|
.. tip::
|
||||||
The recycle rules run once a day, by default, as part of a scheduled action chron (*Data
|
Recycle rules run once a day, by default, as part of a scheduled action cron (*Data Recycle:
|
||||||
Recycle: Clean Records*). However, each rule can be :ref:`run manually
|
Clean Records*). However, each rule can be :ref:`run manually <data-cleaning/run-recycle-rule>`
|
||||||
<data-cleaning/run-recycle-rule>` anytime.
|
anytime.
|
||||||
|
|
||||||
By default, no recycle record rules exist. Click the :guilabel:`New` button to create a new rule.
|
By default, no recycle record rules exist. Click the :guilabel:`New` button to create a new rule.
|
||||||
|
|
||||||
@ -306,7 +300,6 @@ With the rule's configuration complete, either close the rule form, or :ref:`run
|
|||||||
- :guilabel:`Include Archived`: :icon:`fa-check-square`
|
- :guilabel:`Include Archived`: :icon:`fa-check-square`
|
||||||
|
|
||||||
.. image:: data_cleaning/data-cleaning-recycle-rule.png
|
.. image:: data_cleaning/data-cleaning-recycle-rule.png
|
||||||
:align: center
|
|
||||||
:alt: Recycle records rule form for a lead/opportunity.
|
:alt: Recycle records rule form for a lead/opportunity.
|
||||||
|
|
||||||
.. _data-cleaning/run-recycle-rule:
|
.. _data-cleaning/run-recycle-rule:
|
||||||
@ -315,12 +308,13 @@ Manually run a recycle rule
|
|||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
To manually run a specific recycle rule at any time, navigate to :menuselection:`Data Cleaning app
|
To manually run a specific recycle rule at any time, navigate to :menuselection:`Data Cleaning app
|
||||||
--> Configuration --> Rules: Recycle Records`, and select the rule to run.
|
--> Configuration --> Recycle Records`, and select the rule to run.
|
||||||
|
|
||||||
Then, on the rule form, click the :guilabel:`Run Now` button on the top-left. Upon doing so, the
|
Then, on the rule form, click the :guilabel:`Run Now` button on the top-left. Upon doing so, the
|
||||||
:icon:`fa-bars` :guilabel:`Records` smart button displays the number of records captured.
|
:icon:`fa-bars` :guilabel:`Records` smart button displays the number of records captured.
|
||||||
|
|
||||||
Click the :icon:`fa-bars` :guilabel:`Records` smart button to manage these records.
|
Click the :icon:`fa-bars` :guilabel:`Records` smart button to :ref:`manage these records
|
||||||
|
<data_cleaning/recycle>`.
|
||||||
|
|
||||||
.. _data_cleaning/field-cleaning:
|
.. _data_cleaning/field-cleaning:
|
||||||
|
|
||||||
@ -330,17 +324,17 @@ Field cleaning
|
|||||||
Use the field cleaning feature to maintain consistent formatting of names, phone numbers, IDs and
|
Use the field cleaning feature to maintain consistent formatting of names, phone numbers, IDs and
|
||||||
other fields throughout a database.
|
other fields throughout a database.
|
||||||
|
|
||||||
On the :guilabel:`Field Cleaning Records` dashboard (:menuselection:`Data Cleaning app --> Field
|
The *Field Cleaning Records* dashboard displays formatting changes to data in fields of a record,
|
||||||
Cleaning`), Odoo suggests formatting changes to data in fields of a record, to follow a convention
|
to follow a convention set by the field cleaning rules.
|
||||||
set by the field cleaning rules.
|
|
||||||
|
Navigate to this dashboard by going to :menuselection:`Data Cleaning app --> Field Cleaning`.
|
||||||
|
|
||||||
.. image:: data_cleaning/data-cleaning-field.png
|
.. image:: data_cleaning/data-cleaning-field.png
|
||||||
:alt: Field Cleaning Records dashboard in the Data Cleaning application.
|
:alt: Field Cleaning Records dashboard in the Data Cleaning application.
|
||||||
|
|
||||||
The :guilabel:`CLEANING RULES` sidebar lists each of the active cleaning rules, and displays the
|
The :guilabel:`CLEANING RULES` sidebar lists each of the active cleaning rules.
|
||||||
total number of records detected beside each rule.
|
|
||||||
|
|
||||||
By default, the :guilabel:`All` records are listed, with the following columns:
|
By default, the :guilabel:`All` rule is selected. Records are listed with the following columns:
|
||||||
|
|
||||||
- :guilabel:`Record ID`: the ID of the original record.
|
- :guilabel:`Record ID`: the ID of the original record.
|
||||||
- :guilabel:`Record Name`: the name or title of the original record.
|
- :guilabel:`Record Name`: the name or title of the original record.
|
||||||
@ -366,14 +360,14 @@ Upon doing so, the record is formatted and/or cleaned.
|
|||||||
Field cleaning rules
|
Field cleaning rules
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
The :guilabel:`Field Cleaning Rules` page (:menuselection:`Data Cleaning app --> Configuration -->
|
The *Field Cleaning Rules* set the conditions for fields to be cleaned and/or formatted.
|
||||||
Field Cleaning`) is where the conditions for fields to be cleaned and formatted can be set.
|
|
||||||
|
|
||||||
These rules can be configured for each model in the database, and with varying levels of
|
These rules can be configured for each model in the database, and with varying levels of
|
||||||
specificity.
|
specificity. To get started, navigate to :menuselection:`Data Cleaning app --> Configuration -->
|
||||||
|
Field Cleaning`.
|
||||||
|
|
||||||
.. tip::
|
.. tip::
|
||||||
The field cleaning rules run once every day, by default, as part of a scheduled action chron
|
The field cleaning rules run once every day, by default, as part of a scheduled action cron
|
||||||
(*Data Cleaning: Clean Records*). However, each rule can be :ref:`ran manually
|
(*Data Cleaning: Clean Records*). However, each rule can be :ref:`ran manually
|
||||||
<data-cleaning/run-field-cleaning-rule>` anytime.
|
<data-cleaning/run-field-cleaning-rule>` anytime.
|
||||||
|
|
||||||
@ -459,13 +453,31 @@ Cleaning app --> Configuration --> Field Cleaning`, and select the rule to run.
|
|||||||
Then, on the rule form, select the :guilabel:`Clean` button on the top-left. Upon doing so, the
|
Then, on the rule form, select the :guilabel:`Clean` button on the top-left. Upon doing so, the
|
||||||
:icon:`fa-bars` :guilabel:`Records` smart button displays the number of records captured.
|
:icon:`fa-bars` :guilabel:`Records` smart button displays the number of records captured.
|
||||||
|
|
||||||
Click on the :icon:`fa-bars` :guilabel:`Records` smart button to manage these records.
|
Click on the :icon:`fa-bars` :guilabel:`Records` smart button to :ref:`manage these records
|
||||||
|
<data_cleaning/field-cleaning>`.
|
||||||
|
|
||||||
.. _data_cleaning/merge-action-manager:
|
.. _data_cleaning/merge-action-manager:
|
||||||
|
|
||||||
Merge action manager
|
Merge action manager
|
||||||
====================
|
====================
|
||||||
|
|
||||||
The :guilabel:`Merge Action Manager` (:menuselection:`Data Cleaning app --> Configuration --> Merge
|
The *Merge Action Manager* enables or disables the *Merge* action available in the *Actions* menu
|
||||||
Action Manager`) enables or disables the *Merge* action available in the *Actions* menu for models
|
for models in the database.
|
||||||
in the database.
|
|
||||||
|
Enable :ref:`developer-mode` and navigate to :menuselection:`Data Cleaning app --> Configuration -->
|
||||||
|
Merge Action Manager`.
|
||||||
|
|
||||||
|
Models are listed with the following columns:
|
||||||
|
|
||||||
|
- :guilabel:`Model`: technical name of the model.
|
||||||
|
- :guilabel:`Model Description`: display name of the model.
|
||||||
|
- :guilabel:`Type`: whether the model is of the *Base Object* or *Custom Object* type.
|
||||||
|
- :guilabel:`Transient Model`: the model handles temporary data that does not need to be stored
|
||||||
|
long-term in the database.
|
||||||
|
- :guilabel:`Can Be Merged`: enables the *Merge* action for the model.
|
||||||
|
|
||||||
|
To view which models are enabled by default, use the :ref:`search bar <search/filters>` to filter
|
||||||
|
models that :guilabel:`Can Be Merged`.
|
||||||
|
|
||||||
|
.. seealso::
|
||||||
|
:doc:`../essentials/contacts/merge`
|
||||||
|
Loading…
Reference in New Issue
Block a user