销售人员数据库集成

发布于 2024-10-10 08:27:39 字数 248 浏览 0 评论 0原文

我正在寻找创建从 salesforce 到 sql 2000 数据库的连接。我需要能够将数据从 salesforce 传输到 sql 2000 以及从 sql 2000 传输回 salesforce。我想要做的一个例子是,如果用户在 salesforce 中创建一个新的日历事件,我希望能够将该事件发送到我的 sql 2000 数据库,以便我可以创建会议记录。然后我想将唯一的id从sql传递回salesforce,以便两个系统中的记录连接起来。

我如何创建该连接?

I am looking to create a connection from salesforce to a sql 2000 database. I need to be able to transfer data from salesforce to sql 2000 and from sql 2000 back to salesforce. An example of what I want to do is if a user creates a new calendar event in salesforce I want to be able to send that event to my sql 2000 database so that I can create a meeting record. Then I want to pass back the unique id from sql to salesforce so that the records in both systems will be connected.

How do I create that connection?

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

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

发布评论

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

评论(1

请恋爱 2024-10-17 08:27:40

如果您想自己构建它,则可以使用复制 API(请参阅 getUpdated/getDeleted API 调用)轮询 salesforce.com 中的数据更改和/或使用出站消息传递来获取工作流触发的数据更改的 HTTP 通知。创建/更新/删除 API 调用可用于将数据推送到 salesforce.com。您可能需要首先阅读 Web 服务 api 文档 首先。

如果您不想构建它,则有许多应用程序可以执行此操作,包括 ForceAmp 和 Relational Junction,请参阅 AppExchange 了解更多想法。

If you want to build it yourself, then you can use the replication api (see the getUpdated/getDeleted API calls) to poll for data changes in salesforce.com and/or use outbound messaging to get HTTP notifications of data changes triggered by workflow. The create/update/delete api calls can be used to push data into salesforce.com. You'll probably want to start by reading the web services api docs first.

If you don't want to build it, then there a number of applications available to do this, including ForceAmp and Relational Junction, see the AppExchange for more ideas.

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