Skip to main content
September 4, 2023
Question

Read-only grid does not change until I start "full sync" manually

  • September 4, 2023
  • 4 replies
  • 0 views

Hi! I have a summary view with a read-only grid (from Record 1). When I run my process model, I make a query (type "UPDATE" and "SET") to change the status of one of the fields, and I need the read-only grid to update

After I run the process model, the value of the variable in my Record Type (Data Preview) changes succesfully...

But it does not change in my read-only grid (based on this record I have shown in the last image). To make it "update", I have to go to "Sync Options" --> Start Full Sync manually. After doing this, the read only grid updates. Y tried to use the refresh button of the read only grid but doesn´t work, only full sync

What can be happening? Thanks a lot!

    4 replies

    harshj0001
    September 4, 2023

    Hello, are you using chaning in the process model ?

    September 4, 2023

    Sure! I have checked it

    harshj0001
    September 4, 2023

    Update a local variable on success of startprocess.

     eg : 

    a!startProcess(
    onSuccess: {
    a!save(
    local!variable, not(
    or(
    local!variable
    )
    )
    )
    }
    )


    Use refresh variable for refreshing the data which you are using for grid.
    local!data : a!refreshVariable(
        value: "grid Data",
        refreshOnVarChange: local!variable
      )


    This should work.

    stefanhelzle0001
    Brainy
    September 4, 2023

    Do not use the "Query Database" smart service!!!