Formula in Conditional Intermediate Event (Catching)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • marco.piccardo
    Junior Member
    • Feb 2021
    • 8

    #1

    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
  • emillod
    Active Community Member
    • Apr 2017
    • 1562

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

    Comment

    • yuri
      EspoCRM product developer
      • Mar 2014
      • 9639

      #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...