Chesson's PeopleSoft Blog

Focus on Oracle Application

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年1月12日

摘要: · 创建Session· 获取CI对象 ·填充create keys· 创建一个CI实例· 填充所需字段·保存CI&Session = GetSession();&CI = &Session.GetcompIntfc(CompIntfc.INTERFACE_NAME)&CI.KEY_FILED_NAME = ‘NEW’If not &CI.Create () ThenElsePopulate other fieldsEnd-if;Populate the other fieldsIf not & 阅读全文
posted @ 2012-01-12 21:33 chesson 阅读(340) 评论(0) 推荐(0) 编辑

2011年7月11日

摘要: 可以在UltraEdit(我用的版本是ue17.00.0.1025)中为SQR配置代码着色,首先在UltraEdit中找到高级-->配置-->编辑器现实-->语法高亮,如下图:看到“文档的完整目录名称”里指定的目录,然后在该目录下建立sqr.uew空文件,将如下代码copy到文件中,保存即可:--BEGIN FILE--/L10"SQR" Nocase Line Comment = ! Block Comment On = ! Block Comment Off = ! String Chars = ' File Extensions = SQR 阅读全文
posted @ 2011-07-11 21:22 chesson 阅读(735) 评论(0) 推荐(0) 编辑

2011年4月24日

摘要: Field Change PeopleCode is for recalculating field values based on changes made to other fields. For instance, suppose you have 2 fields, rate and quantity and there is another field which shows total cost. Whenever a value is changed in either of the two fields, rate and quantity, the total cost wi 阅读全文
posted @ 2011-04-24 23:58 chesson 阅读(252) 评论(0) 推荐(0) 编辑

2011年4月16日

摘要: appserv — home to the Application Server and Process Scheduler Server; location of psadmin where you start, stop, and manage those serversbin — location of all the binary programs such as Application Designer (pside.exe), Data Mover (psdmtx.exe), and so on; also location of SQR (sqrw.exe)cblbina — l 阅读全文
posted @ 2011-04-16 15:51 chesson 阅读(409) 评论(0) 推荐(0) 编辑

摘要: ProjectsPSPROJECTDEFN — Project header tablePSPROJECTITEM — Definitions in the projectFieldsPSDBFIELD — Fields in the systemPSXLATITEM — Translate ValuesRecordsPSRECDEFN — Record header tablePSRECFIELD — Fields in the record (subrecords not expanded)PSRECFIELDALL — Fields in the record (subrecords e 阅读全文
posted @ 2011-04-16 14:48 chesson 阅读(325) 评论(0) 推荐(0) 编辑

2011年4月15日

摘要: 统计最近一周内入职的员工,并在主页提醒:Pagelet:1.建立好Query:CSN_NEW_EMPL_QRY:其中红色方框内的标准必须添上,否则会出现冗余数据,因为只是根据部门ID会找到很多部门描述,主要原因是很多SetID都复用了该DeptID,所以要确定具体的SetID。运行结果如下:2.新建一个Pagelet向导,路径:PeopleTools>门户网站>Pagelet>Pagelet 向导 点击“内容”,进入个性化内容页面:勾选“新入职员工提醒”,保存,然后重新登录系统,就可以首页看到该Pagelet了。 阅读全文
posted @ 2011-04-15 17:13 chesson 阅读(810) 评论(0) 推荐(0) 编辑

摘要: 在使用PT8.50或在8.51时,你可能遇到过Rich-text编辑框。该插件使你能够格式化文本,添加颜色、链接、图片等等。下面是效果图:如果页面中只有这么一个字段,该文本框就会有足够的空间来容纳其中的tools bars了,但是通常页面中会有许多字段,因而留给该表示该文本框的字段的所需的空间就少了,于是需要根据业务需求对文本框中的工具条目进行瘦身或者适当的扩展。简单的实现方式如下:在Long Edit Box的Page Field 属性上有“Options”选项,勾选“Enable Rich Text”,在第一个下拉框选择可用的配置(她们都是HTML对象)。第二个下拉框“Image Loca 阅读全文
posted @ 2011-04-15 15:37 chesson 阅读(477) 评论(0) 推荐(1) 编辑