How to Disable (Grey Out) the System Name on the InfoView Logon Page

The steps described in this article detail how to disable (grey out) the System Name displayed on the InfoView logon page. Doing so will ensure that users can only navigate to a particular environment (e.g. Development) through a chosen application server, as well as removing the possibility of users accidentally typing in an incorrect system name.

Note: These steps apply to Business Objects XI Release 2.

File to be modified:
_logon.jsp

Directory:
D:\Program Files\Business Objects\Tomcat\webapps\businessobjects\enterprise115\desktoplaunch\InfoView\logon

Servers:
Web Application Servers

Steps:

  1. Stop Apache Tomcat
  2. Find the code below (within _logon.jsp):
  3. <td align=”left”>

    <c:choose>
    <c:when test=”${logonForm.afInstalled}”>
    <%– if af is in
    stalled disable the CMS edit box –%>
    <html:text disabled=”true” styleClass=”textfield” property=”cms” style=”width:200px” styleId=”apsTextEdit” onkeydown=”keydownfn(event)”/>
    </c:when>
    <c:otherwise>
    <html:text styleClass=”textfield” property=”cms” style=”width:200px” styleId=”apsTextEdit”/>
    </c:otherwise>
    </c:choose>
    </td>

  4. Insert disabled=”true” into the section shown below:
  5. <td align=”left”>
    <c:choose>
    <c:when test=”${logonForm.afInstalled}”>
    <%– if af is installed disable the CMS edit box –%>
    <html:text disabled=”true” styleClass=”textfield” property=”cms” style=”width:200px” styleId=”apsTextEdit”/>
    </c:when>
    <c:otherwise>
    <html:text
    disabled=”true” styleClass=”textfield” property=”cms” style=”width:200px” styleId=”apsTextEdit” onkeydown=”keydownfn(event)”/>
    </c:otherwise>
    </c:choose>
    </td>

  6. Save _logon.jsp
  7. Restart the Apache Tomcat.
Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.