Refresh Summary View

Hi,

I have some refresh problems with a Summary View.
The View is composed of a dashboard (Record Type A) and a read-only grid (Record Type B). In the dashboard, there is a Customer Record Field (field C) aggregating Record Type B.
When I try to add a new record in the grid, the grid updates itself (so chaining should be ok), but field C doesn't unless I force manually the updating.
Any suggestions?

  Discussion posts and replies are publicly visible

Parents Reply
  • Yes, I used the following query to retrieve Field C. This query is declared in the context of the record action to start the Summary View.
    Where and how can I change its refresh behavior?

    index(
      a!queryRecordType(
        recordType: 'recordType!{147c9155-5209-48c9-8a14-b747d24333a8}BDNG Organismo',
        pagingInfo: a!pagingInfo(startIndex: 1, batchSize: 1),
        filters: a!queryFilter(
          field: BDNG Organismo.id,
          operator: "=",
          value: ri!id
        )
      ).data,
      1,
      cast(
        BDNG Organismo,
        null
      )
    )

Children