我们如何将 OpportunityContactRole 与另一个自定义对象同步

发布于 2025-01-01 20:28:25 字数 411 浏览 0 评论 0原文

我有机会有一个相关的列表联系人角色,还有另一个名为 Project 的自定义对象,它有另一个名为 Keycontacts 的相关列表。

我需要将 opps 与正在发生的事件同步。但我还需要将联系人角色 (OpportunityContactRole) 与 Keycontacts 同步。 我刚刚发现 OpportunityContactRole 上不允许使用触发器。

opp 和 OpportunityContactRole 与 oppid 相关 Project 和 Keycontacts 通过 projectid 关联

Project 和 Opp 通过 oppid 关联。项目有查找 opp id 的功能。

我们如何在不使用 OpportunityContactRole 上的触发器的情况下同步这两个对象。

有什么指点吗?

I have opportunity which has a related list contact roles and there is another custom object called Project which has another related list called Keycontacts.

I need to sync opps with events which is happening fine. But I also need to sync contact roles (OpportunityContactRole) with Keycontacts.
I just found that Triggers are not allowed on OpportunityContactRole.

Opp and OpportunityContactRole are related with oppid
Project and Keycontacts are related by projectid

Project and Opp are related with oppid. Project have lookup for opp ids.

How could we sync these 2 objects without using trigger on OpportunityContactRole .

Any pointers?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鲸落 2025-01-08 20:28:25

当触发器不可行时,可以选择每晚同步表的过程。

创建一个在业务机会联系人角色上运行的 batch 类并将其同步到关键联系人表。然后实现可调度接口,以便您可以调度它以预定的时间间隔运行。

When triggers aren't an option a nightly process to sync the tables is an option.

Create a batch class that runs over the opportunity contact role and syncs it to the key contacts table. Then implement the schedulable interface so that you can schedule it to run at a predefined intervals.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文