regarding the task report and expression rule for the data from the task report.

Certified Associate Developer

hey hi  all,

 I am facing an issue with the expression rule that extract the data subset from the task report which in turn, I need to showcase the tasks for the user action to perform the tasks but i unable to fetch the right data from the expression rule   

from above code snippets and snap shot i want extract only "REVIEW PROCUREMENT REQUEST" which is dynamic display name but it show the node          name in the expression rule even though it takes it show the display in the task report.

thanks in advance!!!                                           

   

a!queryProcessAnalytics(
  report:cons!ES_PROCESSREPORT_CONS,
  contextProcessModels: cons!ES_PROCESSMODEL_CONS,
  query: a!query(
    pagingInfo: a!pagingInfo(startIndex: 1, batchSize: - 1),
    logicalExpression: a!queryLogicalExpression(
      operator: "AND_ALL",
      filters: {
        a!queryFilter(
          field: "c0",
          operator: "starts with",
          value: "REVIEW"
        ),
        a!queryFilter(
          field: "c2",
          operator: "starts with",
          value: "PROCUREMENT"
        ),
        
      }
    )
  )
).data
                                                                                                                                                                                     

  Discussion posts and replies are publicly visible