在 salesforce 中批量上传主从对象输入数据格式
我有 2 个自定义对象 Person 和 Address。人员是主控,地址是细节。我已将个人地址定义为主详细信息关系。
如何定义 csv 中的数据以进行批量上传(使用参考批量上传 java 代码)?是否有任何参考 XML 文件可供我用来查看如何在 Salesforce 中定义批量上传的主详细信息
谢谢 萨米尔
I have 2 custom objects Person and Address. Person is master and Address is the detail. I have defined Address in Person as master detail relationship.
How do i define data in csv for bulk upload (using reference bulk upload java code)? Is there any reference XML files which i can use to see how master detail is defined for bulk upload in Salesforce
Thank you
Sameer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您知道如何映射,那么您需要做的就是首先上传父对象的记录。然后,您可以获取父记录的 ID,并在加载子记录之前使用相当于 VLOOKUP 的方法将 ID 放入子记录的相应查找 (MD) 字段中。
Assuming you know how to mapping works then what you need to do is first upload the records for the parent object. You can then obtain the IDs for the parent records, and use a method equivalent to a VLOOKUP to put the ID's into the appropriate lookup (MD) field on the child records before you load them.