Copy a parsed text

Issue #213 resolved
FatimaM created an issue

In transition we use post function copy a parsed text to remember the value of Assignee to custom field Developer.Now we should add one condition if Assignee is in Role Developer then make this post function.how to reach this?

Comments (4)

  1. Fidel Castro Armario repo owner

    Hi Fatima,

    Use "Copy a parsed text to a field" post-function with the following configuration:

    • Target field: Developer
    • Parsing mode: Advanced
    • Text to be parsed:
    isInRole(%{00003}, "Developer") ? %{00003} : ""
    

    Note that:

    • %{00003} is field code for "Asignee".
    • "Developer" is the name of a project role.

    You can also implement it using "Set a field as a function of other fields" post-function with the following configuration:

    • Field to be checked...: it doesn't matter
    • Target field: Developer
    • Setting rules:
    [isInRole(%{00003}, "Developer")]%{00003}
    
  2. Log in to comment