The only Peoplecode events you should be using

本文聚焦于在PeopleTools中高效利用代码事件,推荐95%代码应部署在组件级而非记录级,详细介绍了关键事件如ComponentPostBuild、ComponentSavePostChange等,并指明了避免使用的事件,旨在提高开发效率。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

The only Peoplecode events you should be using

When designing pages and components in PeopleTools, there are many different peoplecode events that you can use. In fact, there are too many options. We write alot of PeopleCode and here is our opinion of where 95% of your code should be. You generally want to place 99% of your code at the component level and not at the record level.

PeopleCode events to use

  • Component PostBuild
    • For code you need to trigger once when the component loads.
  • Component SavePostChange
    • For updating other records and sending notifications after the transaction has committed.
  • Component Record FieldChange
    • For record field change peoplecode. Add it at the component level always not at the record level. If you need the same behavior across components, then create a function.
  • Component Record RowInit
    • For logic you need to trigger when a row is loaded from the database. Add it at the component level always not at the record level. If you need the same behavior across components, then create a function.
  • Component Record SaveEdit
    • For enforcing valid fields and such. Notice we do not add it at the component record.field level. We have every piece of validation logic in one event so it is easier to modify later.

PeopleCode Events to avoid

These are the events where you generally do not want to place any code.

Addtional Reading
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值