Error in Grid using Process analytics as Data

Certified Senior Developer
Hello,

I have a grid using a Process Analytics Report as the source of data. I get the following message:
Expression Evaluation error in rule 'Rule Name' at function a!gridField [line 45] Type Validation Null.

I'm not sure what is causing this issue, since looking at the report the data looks perfectly normal.

Any thoughts? Your help is appreciated.

OriginalPostID-266095

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    @issamd850 I agree with @rudrakshakammarig , @reginaldm377 also try using index() rather than data.key because if you use that, and if there is no data for the key, you can expect the same error.

    So do the following

    1) Cross check with the spelling
    2) use index() wherever possible rather than datasubset.key as
    index(local!datasubset, "c0", {})
    3) Cross check whether the field value which we are trying to retrieve(like c0, c1, c2, ...), is getting return from QueryProcess or not
Reply
  • 0
    Certified Lead Developer
    @issamd850 I agree with @rudrakshakammarig , @reginaldm377 also try using index() rather than data.key because if you use that, and if there is no data for the key, you can expect the same error.

    So do the following

    1) Cross check with the spelling
    2) use index() wherever possible rather than datasubset.key as
    index(local!datasubset, "c0", {})
    3) Cross check whether the field value which we are trying to retrieve(like c0, c1, c2, ...), is getting return from QueryProcess or not
Children
No Data