You need to sign in to do that
Don't have an account?
Tejas Wadke 5
Creating multiple child records from parent record
Hello,
I have a number field in Contact Object(Parent).
I want to create multiple records in Case Object(child) based on the value in number field in Contact Object.
Thanks,
Tejas
I have a number field in Contact Object(Parent).
I want to create multiple records in Case Object(child) based on the value in number field in Contact Object.
Thanks,
Tejas
You can create a trigger on Contact object like this:
For example the field you are using for count is "test_field__c"
This will solve your issue. Please mark as best answer if it helps. Thanks
All Answers
You need to create a Trigger after an update or insert Contact.
See more about trigger:
https://developer.salesforce.com/trailhead/module/apex_triggers
If this answer help you please mark as the best
Marcilio
You can create a trigger on Contact object like this:
For example the field you are using for count is "test_field__c"
This will solve your issue. Please mark as best answer if it helps. Thanks