I have two entities related one-to-one. I want that, when I delete a record from entity 1, the related record from entity 2 is also related.
I could do this:
but my problem is that the formula is not executed when I delete a record (with the GUI), any idea on how to do it?
I could do this:
Code:
record\update(ENTITY2, ID, 'deleted', true);
Comment