Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Nr.

Task

Details

1

Activate anonymization task in the database

iTsense.Moving.Backend.Services.DmcoreService.CoreIdentity.Task.AnonymizationTask, iTsense.Moving.Backend.Services.DmcoreService

bf8bbfc01a8341b68e53e25141487a49

2

enable setting_setting_value

Code Block
SELECT * FROM moving_appcustomer_900000.setting_setting where name_key like '%Module.DM.IdentityManagement.Setting.EnableAnonymization%'

copy setting module_guid and the setting id, then enable the bool_value in

Code Block
SELECT * FROM moving_appcustomer_900000.setting_setting_value;

where the module_guid and setting_id match.

3

Set a default value for the attributes

Code Block
SELECT * FROM moving_appcustomer_900000.servicedmcore_core_identity_type_attribute_mapping;

serialized_anonymization_default

ATTENTION: When a drop-down-value attribute is anonymized, make sure the default drop-down-value exists! Otherwise Errors like No attribute drop down definition found with id [..], attribute id [..] might result.
If default is null, the first drop-down-value will be set.

4

Test anonymization

  • Delete a CoreIdentity

  • Check the Attributes of that CoreIdentity in the database and see if they are anonymized.

...