System information
Identity Manager Technical Deployment Overview
Page 110 Identity Manager 7.1 Update 1 • Release Notes
You can also resize table columns by clicking and dragging the right border of the column
header. If you mouse over the right border of the column header, the cursor will change to
a horizontal resize arrow. Left-click and drag the cursor will resize the column. (Resizing
ends when you release the mouse button.)
• Customers who want to use custom JavaScript functions specifically in the end user
navigation bar (tabs) must reference that form using
endUserNavigation
. For example,
document.forms['endUserNavigation'].elements
. (ID-13769)
• The System Configuration object now contains the
security.delegation.historyLength
attribute, which controls the number of previous delegations that are recorded.
• The Access Review Dashboard and Access Review Detail Report both show instances of
reviews that are recorded in the audit logs. Without database maintenance, the audit logs
are never trimmed, and the list of reviews grows. Identity Manager provides the ability to
limit the reviews shown to a certain age range. To change this limit, you must customize
compliance/dashboard.jsp
(for the dashboard) and
sample/auditortasks.xml
(for the
Details report). (The default is to show only reviews that are less than 2 years old.)
To restrict the reviews included in the Access Review Dashboard, customize
compliance/dashboard.jsp
as follows:
a. Open
compliance/dashboard.jsp
in either the Identity Manager IDE or editor of your
choice:
b. Change the line:
form.setOption("maxAge", "2y");
to
form.setOption("maxAge",
"6M");
to limit the list to reviews run in the last 6 months. The qualifiers are:
◗ m - minute
◗ h - hour
◗ d - day
◗ w - week
◗ M - month
◗ y - year
To show all reviews that still exist in the audit logs, comment out this line.
To restrict the reviews included in the Access Review Detail Report,
a. Open sample/auditortasks.xml in either the IDE or editor of your choice.
b. Change the following line as indicated:
<s>maxAge</s>
<s>2y</s>