Formula in Conditional Intermediate Event (Catching)

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

    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
    • 1405

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

    Comment

    • yuri
      Member
      • Mar 2014
      • 8440

      #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'.
      If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

      Comment

      Working...