RE: Record Share Cascade for new Child Records
Hi Jyotika,
Yes, this is an expected behaviour. The cascading relationship works when you perform an action on the parent record and not on child record.
There is no OOB functionality which you can use to automatically share the new records. You need to build something custom. I think the following should work for you-
1. Plugin which triggers on create.
2. Within the plugin, You get the order entity from the target parameter.
3. Then you retrieve the parent account of the order.
4. Then retrieve all the users & teams you get the parent account.
5. Share the order with the above users & team.
You can refer the following SDK sample-
msdn.microsoft.com/.../hh547423.aspx
You can read more about shring here-
msdn.microsoft.com/.../gg334673.aspx
Hope this helps.