You need to sign in to do that
Don't have an account?

load data for a child object
How will you load data for a child object?
Thanks
SFDC_Learner
You need to sign in to do that
Don't have an account?
How will you load data for a child object?
Thanks
SFDC_Learner
If in a Master-detail relationship, you first need to insert all master records.
Then run a report to get all the Inserted Master record Id's and export them your machine.
Now to insert detail object records, you need to associate them with Master Record ID.
A possible approcah would be use VLOOkUP function in Excel to populate the Id's.
Once you have the ID's populated then you can insert Detail records using data loader.
Don't forget to give Kudos if this post/reply helps you