How to retrieve rows from entity data type

Certified Associate Developer

I have a data with following format-

[entity: somevalue , data:[id:1,name:a],[id=2,name:b]

Now i need to pass data part in loop. As it has 2 occurrences for data so loop should run two times. And for each occurrence it should pas only relevant data.

1st occurrence-  [entity: somevalue , data:[id:1,name:a]

2nd occurrence-  [entity: somevalue , data:[id=2,name:b]

As data is type of array so not able to do indexing here.

Any suggestion.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Associate Developer
    in reply to Chris

    in my process, Process variable is entitydata type and contains entity value and data (multiple).

    Now if i configure the above way then getting-

    a!localVariables(
    local!data: ri!entityDataPV,

    a!forEach(
    items: local!data.data,
    expression: {

    fv!item
    }
    )
    )

    Cannot index "data" because it is an array type (List of variant). Only fields with scalar types can be indexed from an array

Children