How to get status Id of for each task status

Certified Lead Developer

Hi Guys,

I want to identify for each status ( "Not Active", "Active", "Completed", "Cancelled", "Paused", "Paused by Exception" and "Processes with Errors"). I got only one paused by exception status Id is 8. The same way need all the status id. Please share your details.

Thanks,

Pradeep Sridharan

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    https://docs.appian.com/suite/help/23.2/task-report-pattern.html

    Here they are in order (1st item = 0 etc.):

    /* Maps the "c5" / "Status" field values to status names */
      local!taskStatuses: {
        a!map(name: "Assigned",               icon: "user-o",             color: "#666666"),
        a!map(name: "Accepted",               icon: "user-check",         color: "ACCENT"),
        a!map(name: "Completed",              icon: "check-circle",       color: "POSITIVE"),
        a!map(name: "Not Started",            icon: "circle-o-large",     color: "#666666"),
        a!map(name: "Cancelled",              icon: "stop-circle",        color: "#fdb858"),
        a!map(name: "Paused",                 icon: "pause-circle",       color: "#666666"),
        a!map(name: "Aborted",                icon: "question-circle",    color: "#666666"),
        a!map(name: "Cancelled By Exception", icon: "minus-circle",       color: "#fdb858"),
        a!map(name: "Cancelled By Exception", icon: "times-circle",       color: "NEGATIVE"),
        a!map(name: "Submitted",              icon: "share",              color: "ACCENT"),
        a!map(name: "Running",                icon: "spinner",            color: "ACCENT"),
        a!map(name: "Error",                  icon: "exclamation-circle", color: "NEGATIVE")
      },

Reply
  • 0
    Certified Lead Developer

    https://docs.appian.com/suite/help/23.2/task-report-pattern.html

    Here they are in order (1st item = 0 etc.):

    /* Maps the "c5" / "Status" field values to status names */
      local!taskStatuses: {
        a!map(name: "Assigned",               icon: "user-o",             color: "#666666"),
        a!map(name: "Accepted",               icon: "user-check",         color: "ACCENT"),
        a!map(name: "Completed",              icon: "check-circle",       color: "POSITIVE"),
        a!map(name: "Not Started",            icon: "circle-o-large",     color: "#666666"),
        a!map(name: "Cancelled",              icon: "stop-circle",        color: "#fdb858"),
        a!map(name: "Paused",                 icon: "pause-circle",       color: "#666666"),
        a!map(name: "Aborted",                icon: "question-circle",    color: "#666666"),
        a!map(name: "Cancelled By Exception", icon: "minus-circle",       color: "#fdb858"),
        a!map(name: "Cancelled By Exception", icon: "times-circle",       color: "NEGATIVE"),
        a!map(name: "Submitted",              icon: "share",              color: "ACCENT"),
        a!map(name: "Running",                icon: "spinner",            color: "ACCENT"),
        a!map(name: "Error",                  icon: "exclamation-circle", color: "NEGATIVE")
      },

Children