I have configured an Escalation on a User Input Task which sends the Initiator o

I have configured an Escalation on a User Input Task which sends the Initiator of process an email with a direct link to the Task. I am using the "Get Process Task ID" Plugin (forum.appian.com/.../e-153754) to find the Task ID. I have noticed for a "Basic User", they receive the alert email but the link to the task is missing. For the Administrator (me), I receive the alert email and the direct link to the Task is present. The link takes me directly to the Task as desired.

Since the basic user cannot see the link, I believe this issue has to do with permissions. However, on the rules which generate the Task Link, permissions appear to be set up properly.

On the "Escalations" tab under the "What action should be taken?", I have the "Send Alert" option selected. For my Alert Message, I am calling a rule within a rule to build the dynamic link. (This works perfectly but only for Administrators).

Rule #1: getproce...

OriginalPostID-202759

OriginalPostID-202759

  Discussion posts and replies are publicly visible

Parents
  • ...sstaskid(ri!processed, ri!taskName, true)

    Rule #2: (ri!taskID is the taskID returned from Rule #1 above).
    {=if(
    isnull(ri!taskID),
    null,
    concat(
    cons!SERVER_AND_PORT,
    "/suite/tempo/tasks/task/",
    ri!taskID
    )
    )}

    I have verified that both rules above are set up properly as far as permissions go. The basic users are members of the group which has editor permissions on these rules. Also, the cons!SERVER_AND_PORT has permissions as all users are "editors".

    Is there anything obvious which I am missing?
Reply
  • ...sstaskid(ri!processed, ri!taskName, true)

    Rule #2: (ri!taskID is the taskID returned from Rule #1 above).
    {=if(
    isnull(ri!taskID),
    null,
    concat(
    cons!SERVER_AND_PORT,
    "/suite/tempo/tasks/task/",
    ri!taskID
    )
    )}

    I have verified that both rules above are set up properly as far as permissions go. The basic users are members of the group which has editor permissions on these rules. Also, the cons!SERVER_AND_PORT has permissions as all users are "editors".

    Is there anything obvious which I am missing?
Children
No Data