Announcement

Collapse
No announcement yet.

Formula in Conditional Intermediate Event (Catching)

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

  • Formula in Conditional Intermediate Event (Catching)

    Hi there, I'm trying to use a formula on a Conditional Intermediate Event node in a workflow.
    I've not found any documentation about that.

    What I'm trying to do is to advance if a created record has changed status to "done".

    This is my formula but I don't understand what the formula should return

    ifThenElse(bpm\createdEntity\attribute("dfe3rfas3" ,"status"), true, false)

    Can you help me?

    Thanks in advance

  • #2
    Here you have documentation of Intermediate Events: https://docs.espocrm.com/administrat...mediate-events

    Comment


    • #3
      Code:
      bpm\createdEntity\attribute('dfe3rfas3', 'status') == 'Done'
      This should be enough. This expression is evaluated to TRUE if status of the record is 'Done'.

      Comment

      Working...
      X