更改设置PeopleSoft LOGO

在peoplesoft中更改公司自己的LOGO

有两种情况:

1.更改登录页面的logo

也可以定制化登录页面,让其显得更符合公司的需求

2.更改内容页面的logo

这里就是每个页面上面的header

我的方法就是直接替换掉原有的图片

1.登录图片更改

%PS_CFG_HOME%\webserv\FS91DMO\applications\peoplesoft\PORTAL.war\FS91DMO\images

该路径下有个文件叫做OPSE_logo.gif,尺寸为322*96,该图片展示于登录页面和会话过期页面.

2.每个页面顶部的图片更改

登录application designer找到下面两个image的定义

PT_ORACLELOGO_SWAN  PT_HEADERBG_SWAN

更新两个图片,尺寸分别为115*45 和 2*45.

3.想要设置生效,正常做法是 stop your Webserver, purge the cache, retsart your webserver

但是操作略显麻烦,可以直接清除下面路径的图片,清空浏览器的缓存,重新登录,查看效果.

在下面的路径下会生成一系列的cache图片

%PS_CFG_HOME%\webserv\FS91DMO\applications\peoplesoft\PORTAL.war\FS91DMO\cache

下面是引用其他人的方法

PeopleTools 8.52, FSCM 91

1> For the logo on the login page

Place your image under /apps/psoft/hrms9/webserv/peoplesoft/applications/peoplesoft/PORTAL/DMOHRMS9/images (depending where you’ve installed the webserver)  Then open the file  /apps/psoft/hrms9/webserv/peoplesoft/applications/peoplesoft/PORTAL/WEB-INF/psftdocs/DMOHRMS9/signin.html  and replace the line

      src="<%=psCtxPath%><%=psHome%>/images/OPSE_logo.gif" width="322" height="96"></td>

by

      src="<%=psCtxPath%><%=psHome%>/images/your_new_file.gif" width="322" height="96"></td>

2> For the other pages, there’s two ways to change the logo on the top left of the page

2.1> Go into App Designer, create a new image (upload your), and save.  Then open the Application package PT_BRANDING, then BrandingBase, replace NEW_PS_LOGO and PT_ORACLELOGO_SWAN  by the name of your image previously saved.  Save the modificatin, stop your Webserver, purge the cache, retsart your webserver.

NEW_PS_LOGO is for PT8.4x and from PT8.50 PT_ORACLELOGO_SWAN is used.

2.2> Go into App Designer, replate image PT_ORACLELOGO_SWAN with your company logo, and modify the compnay logo div – #pthdr2logoswan inside the style sheet PSHDR2_SWAN to use proper size and refer to your own image:

/* company logo div */  #pthdr2logoswan {  float:%AlignStart;  137px;  height:29px;             margin:0;  background: url(%Image(PT_APOLLOLOGO_SWAN)) no-repeat;  }

3> For some special pages, like Removal Confirmation page and Search Result page, the width and height of the logo is hardcoded to as following:

<td><H1 ALIGN="left" class="logoh1"><img src="%BIND(:1)" width="115" height="45" alt="Oracle logo"></H1></td>

If your company logo doesn’t fit to this size, you need to customize below HTML objects from App Designer:

PORTAL_UNI_HEADER_NNS_SWAN and PORTAL_UNI_HEADER_NNS_SWAN

原文地址:https://www.cnblogs.com/kgb250/p/2693390.html