Out of Band option on filter does not show in iManager

  • 7016746
  • 07-Aug-2015
  • 07-Aug-2015

Environment

NetIQ Identity Manager iManager Plug-ins

Situation

The option for out of band requests does not show up under the filter.
This only happens if you have a check comparing the version number for displaying the option.

Resolution

Here is a workaround.  It removes the check comparing the version number for displaying the option.
Edit
/var/opt/novell/iManager/nps/portal/modules/DirXMLFilter/skins/default/devices/default/AttributeInfo_inc.jsp
and
/var/opt/novell/iManager/nps/portal/modules/DirXMLFilter/skins/default/devices/default/FilterPage.jsp
search for IDMVERSION
Comment out the If statement
From
<% if(Double.parseDouble((request.getAttribute("IDMVERSION")).toString())>=450.0){ %>
to
<% /* if(Double.parseDouble((request.getAttribute("IDMVERSION")).toString())>=450.0){ */ %>
and a bit further down
from
<% } %>
to
<%/* } */ %>