|
所在平台: Udemy |
课程主页: https://www.udemy.com/course/salesforce-load-and-query-data-from-external-systems/
课程评论:没有评论
**Coursera 课程总结:Salesforce 集成入门指南** 本课程旨在帮助初学者全面了解 Salesforce 的核心结构和数据集成方法。 **课程内容概览:** * **Salesforce 基础结构:** 深入理解 Salesforce 中的 Objects (对象)、Apps (应用) 和 Tabs (标签页) 的结构。 * **自定义对象与字段:** 学习如何创建自定义对象、字段,并建立它们之间的关系,从而构建个性化的 Salesforce 数据模型。 * **创建自定义应用:** 掌握如何创建自己的应用,并将自定义对象整合其中,以清晰地展示和管理数据。 * **标签页的使用:** 了解如何创建标签页,并将其添加到应用中,以实现更友好的数据访问和导航。 * **数据存储与操作:** 深入探讨数据在 Salesforce 对象中的存储方式,以及如何插入和检索数据。 * **外部系统数据集成:** * **同步集成:** 了解如何利用 Salesforce API 进行单条记录的同步数据加载。 * **异步集成 (Bulk API):** 掌握使用 Bulk API 实现大规模数据(成千上万条记录)的批量异步加载。 * **数据加载状态查询:** 学习如何通过 API 查询批量数据加载的状态,并理解获取状态时需要考虑的延迟问题。 本课程将为您打下坚实的 Salesforce 基础,并为您理解和实践各种数据集成场景提供有力的指导。 **注:** 本课程syllabus部分未提供详细信息。
In this course, you will understand the structure of the Objects, Apps, and Tabs. You will know how to create Custom objects and create fields and their relationships. Create your own app to display your objects in that app. Create tabs that can be added to your app and its displays like tabs. Once you are clear with the Salesforce objects, the next step is to understand how the data is stored in this object. How the data can be inserted into this object? How the data can be retrieved from this object?The scope of this course is to know, what are the options available for external system to load data into salesforce object. Depends on the business requirement data load can be loaded synchronously or asynchronously. In case of synchronous call, single record is inserted into SFDC, and salesforce provides API for this. If it is asynchrous, most probably we use Bulk API call to SFDC and SFDC has this API ready. In this, file containing multiple records, it can be thousands of records in a file, is passed to SFDC by using BULK API provided by SFDC. Once the data is passed to SFDC, it is the job of Salesforce to read that record and insert in to the object. The SFDC takes its own time and load the data. If you call the SFDC with the API that gives the status of the data load, you will get the how many records processed and failed. But you need to set some sleep time before calling the Salesforce API to get the status because SFDC takes time to load data based on the number of records in the file.