Announcement

Collapse
No announcement yet.

delete records

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

  • delete records

    hello
    How can I delete records via workflow?
    I have not found an action, Or does it work with formula?
    I would be very happy to receive a suggestion.​
    peter

  • #2
    Hi peterberlin

    you can delete any record using formula on the workflow, e.g delete current contact target record would be done using a Script task with code below:

    Code:
    record\update('Contact', id, 'deleted', true);
    This could be applied to any other entities.

    Hope this helps.

    Thanks

    Comment


    • #3
      Many THANKS,

      Comment

      Working...
      X