Resolved Issues and Bug Fixes
Read more about resolved issues and bug fixes in this release.
Language versions
Portuguese language support
We have added a workaround for customers who have added the Portuguese language to Omada Identity. If you have previously added the Portuguese language to Omada Identity, do not update the database with the Portuguese language. This workaround is required to ensure that Portuguese is not updated in the database. Execute the following SQL query:
IF NOT EXISTS (
SELECT 1
FROM tblCustomerSetting
WHERE [Key] = 'ExecutedSystemUpdateActions'
AND (ValueStr LIKE 'AddPortugueseLanguageSupport,%' OR ValueStr LIKE '%,AddPortugueseLanguageSupport,%' OR ValueStr LIKE '%,AddPortugueseLanguageSupport')
)
BEGIN
UPDATE tblCustomerSetting
SET ValueStr = ValueStr + ',AddPortugueseLanguageSupport'
WHERE [Key] = 'ExecutedSystemUpdateActions'
END
Access Approvals
Approval task is auto-completed when it is reassigned
We have fixed a bug in the Access request approval flow that caused an approval step to be auto-completed in some cases where the approval was reassigned to a different user.
INC-281357
Encountering a 404 error on the Approval task page
We have fixed a bug where users were encountering a 404 error when clicking on Approval task links in email notifications.
INC-283097
Survey escalation not working as intended - sending unnecessary emails
We have fixed a bug in the new approval UI that caused emails to be sent to survey assignees who had already completed their questions when the approval survey was configured with an escalation event definition.
INC-284546
Access Request
Request flow can not handle UTF-8
We have fixed a bug in which the descriptions of the resource assignments were not decoded in the UI.
INC-281826
Cannot reliably copy text out of a DataGrid cell
It was not possible to copy text from DataGrid cells. This is now fixed, and you can copy any text by selecting the cell within the grid.
New Access request - Not visible account types which are available for identity
We have fixed a bug that prevented the selection of account types for identities in the new Access request. Now, it is possible to select account types that the resource can handle.
Personal account is auto-selected for identities without personal accounts
We have fixed a bug in the Access request that prevented selecting account types defined for a resource. If the resource folder didn't have any account types, the default account type was returned.
INC-282110
Problem when viewing resource info containing Booleans after updating
We have fixed an issue that was causing errors when opening details form for identities or resources. This problem occurred if any Boolean was present on the data object.
INC-285330
New Access request is slow to submit
We have fixed a bug where submitting via the new Access request UI was very slow. The submission speed decreased as the number of resources increased.
INC-274268
Request process not possible to hide from Home page for specific user groups
We have fixed an issue in the request process in the new UI. Now, the Request access and Extend access cards are hidden from the home page in case the user doesn't have the Create permission for those processes. In addition, we have hidden the Request access and Extend access cards in the Add shortcut dialog from the Edit mode of the home page.
Enterprise Server
OIM_RoPECRACSV.aspx view fails if target is not screen but CSV
We have fixed an issue with the OIM_RoPECRACSV.aspx view. Now, when you try to export the data in the CSV or PDF format, and do not select at least one of the required criteria, there is a new warning saying: The export needs at least one of the criteria selected.
INC-279599
Browser search in XML editor scopes to viewport only
We have improved the XML input fields in the ES portal to allow searching (CTRL + F) in the whole field instead of the viewport only.
INC-282341
RefPath expression not working for empty string
We have fixed an issue with RefPath: previously, it only accepted string parameters that contained at least 1 character. Now, we have reduced it to 0 so that it also supports empty strings.
SR-282934
Event definitions page not showing context dots
We have fixed an issue with the event definition screen, where the code method log option was not displayed for a user with proper access.
INC-283158, INC-283132
Expression filter (on view) works differently if right side value or property compared by "like"
There was an issue with the Like operator in event definition filter expressions. We have now fixed it: there is a warning stating that we do not support the Like operator and property on the left and right side of an expression.
INC-282890
Logging Framework with async targets don't discard on error
We have implemented a change that will prevent the Log Request Queue for asynchronous loggers to grow and cause OutOfMemory issues. By default, we now use the configuration for AsyncTargetWrapper, that is, QueueLimit 10000 and OverflowAction Discard. This default configuration means that if the log request queue exceeds 10,000 items, then log items will be discarded until there is space in the queue again when items in the queue are written to the target. The configuration also disables logging below warning level after the target has started discarding log entries.
INC-282996
Performance issue - failed data imports
We have fixed an issue with object type logging that occured when the EnableSystemEventLogging customer settings was enabled and the data object did not have a previous version.
INC-285755
PropertyAccessModifier is ignored with the Modern UI My identity form
We have fixed an issue where Authoritative Source Policies were not applied in the new UI, which made managers unable to edit forms (for example, My identity form), as the forms were displayed in the read-only mode.
INC-284424
Issues in the new Identity form
There was an issue with the reference property hidden field causing the new Identity form to fail on sending. There was also a bug in which the set property with Boolean values displayed on checkboxes group caused an error in the form. We have now fixed both.
INC-284507
File attachments no longer copied from process to data object
There was an issue with file attachments not being copied from processes to data objects. Now, the CreateDataObjectFromTemplate2 code method respects the copy attachments copy rule configuration.
INC-284068
Update actions removed and SQL script revised
As part of the maintenance of the product code, we have revised the ES database script dbcr.sql and removed a number of update actions (schema updates and migrations). Only update actions added prior to version 14.0.16 are affected.