Announcement

Collapse
No announcement yet.

[USER] signals on many to one relationship

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • [USER] signals on many to one relationship

    Hi Everyone,

    I'm trying to catch a @relate and @unrelate signals in two workflows on the entity User, on a many to one relationship with Account.

    The User is the accountmanager of Account. Each account has one account manager (User). A User can have multiple accounts.

    I use signals quite a lot, they always trigger.

    However none of the signals trigger, the @relate.accountmanager and @unrelate.accountmanager on the Account, nor the @relate.account1 and @unrelate.account1 on the User.

    I'm sure I have the right link names.

    Is there a way I can debug this?

  • #2
    Hi Maarten,

    relate signals work only with many-to-many relationship. You can catch a record update and then check whether the link is changed.

    Comment

    Working...
    X