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:
- Stop Apache Tomcat
- Find the code below (within _logon.jsp):
- Insert disabled=”true” into the section shown below:
- Save _logon.jsp
- Restart the Apache Tomcat.
<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” onkeydown=”keydownfn(event)”/>
</c:when>
<c:otherwise>
<html:text styleClass=”textfield” property=”cms” style=”width:200px” styleId=”apsTextEdit”/>
</c:otherwise>
</c:choose>
</td>
<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>


