Friday, January 17, 2020

Cascade Delete Property

The Cascade Delete property is used to determines whether a child record is deleted when the parent record is deleted.


  • Delete: Child records are deleted along with the parent.
  • Clear: The foreign key reference is removed if the parent record is deleted, but the child records remain in place. Value in the foreign key column is cleared. 
  • None: No records are deleted and the foreign key column is also not cleared. This is the default setting of the Cascade Delete property.

No comments:

Post a Comment

Updating parent BC depending on the status of child BC using configuration

Parent BC: Service Request Child BC: Action Requirement: When all the Actions corresponding to an SR are closed the SR status should be “Clo...