Task is not Opening

Certified Associate Developer

a!gridColumn(
  label: "Task Name",
  sortField: "c0",
  value: a!linkField(
    links: a!processTaskLink(label: fv!row.c0, task: fv!identifier)
  )
)

Tasks active only when I am trying open the tasks from the site. I am getting below error. Could anyone give suggestions.

Thanks in Advance

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Associate Developer
    in reply to Stefan Helzle

    a!queryProcessAnalytics(
            report: cons!RF_PROCESS_REPORT,
            contextProcessModels: cons!RF_PROCESS_MODEL,
            query: a!query(
              pagingInfo: fv!pagingInfo
            )
          )

    In the grid field when I am using above code It is working as expected. Below one throwing the error

    a!queryProcessAnalytics(
      report: cons!RF_PROCESS_REPORT,
      contextProcessModels: cons!RF_PROCESS_MODEL,
      query: a!query(
        pagingInfo: a!pagingInfo(startIndex: 1, batchSize: - 1)
      )
    ).data

Children