Actions
Task #2865
closedThe report "Identities and their account changes on a system" fails or doesn't include deleted identities
Start date:
06/28/2021
Due date:
% Done:
100%
Estimated time:
Owner:
Description
Tested on 2.2.1 with core 11.0
Identities and their account changes on a system (identity-account-changes-report):
Identities and their account changes on a system (identity-account-changes-report):
- if the identity was deleted together with its accounts, then the report fails to generate completely (entity_identifier is empty)
- if the account was deleted first and the identity afterwards, then the report doesn't include the identity; it's visible only as a difference in the count of the processed items
Updated by Tomáš Doischer about 3 years ago
- Assignee set to Tomáš Doischer
- Target version set to 271
Updated by Tomáš Doischer about 3 years ago
- Status changed from New to In Progress
Updated by Roman Kučera about 3 years ago
If you want to check how many rows has null in "entity identifier" column you can use following SQL
select count(*) from sys_provisioning_archive where entity_identifier is null;
After that at your own responsibility you can delete these rows
delete from sys_provisioning_archive where entity_identifier is null;
After that the report will be generated without any issue.
Updated by Tomáš Doischer about 3 years ago
The same issue will arise in 'identity-password-changes-report'.
Updated by Tomáš Doischer about 3 years ago
- Status changed from In Progress to Needs feedback
- % Done changed from 0 to 80
Updated by Tomáš Doischer about 3 years ago
- Target version changed from 271 to 2.3.0
Updated by Tomáš Doischer about 3 years ago
- Status changed from Needs feedback to Resolved
- % Done changed from 80 to 100
Released.
Updated by Tomáš Doischer about 3 years ago
- Status changed from Resolved to Closed
Actions