您的位置:首页 > 运维架构

.Peoplesoft: How to configure the component’s pagebar via a script?

2012-07-18 23:17 429 查看
.Peoplesoft: How to configure the component’s pagebar via a script?The Peoplesoft-pagebar can contain the following hyperlinks:According to customer’s standards, each page should show (only) the ‘Help’ hyperlink, which can be configured via the component properties
(yellow marked) as shown in the screenshot below. How to establish what components do not meet this standard?It turned out that all yellow marked properties together make up the (bitmap) value of Peoplesoft systemtable-field PSPNLGRPDEFN.SHOWTBAR (eg. 63 in
case of screenshot above). For your convenience, i added an Excel-sheet which will calculate the value for this systemtable-field based on your input.Now it’s easy to establish what components do not meet the standard, i used the following script:SELECT *FROM
PSPNLGRPDEFN pgWHERE showtbar NOT IN (56, 57) AND EXISTS ( SELECT 'y' FROM PSAUTHITEM a WHERE a.baritemname = pg.pnlgrpname AND EXISTS ( SELECT 'y' FROM PSROLECLASS rc WHERE rc.classid = a.classid AND EXISTS (SELECT 'y' FROM PSROLEUSER ru WHERE ru.rolename
= rc.rolename)))ORDER BY pg.pnlgrpnameNext step could be creating an update-script to set PSPNLGRPDEFN.SHOWTBAR (for selected components) to a desired value.I hope you can use this to your advantage.(PeopleTools release 8.47.08, Oracle 9i Enterprise Edition
Release 9.2.0.6.0 – 64bit Production) Viewed 1650 times by 551 visitors
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: