Skip to main content
kiaras1915
May 18, 2023
Question

Update feed-style record list

  • May 18, 2023
  • 6 replies
  • 0 views

Hello everyone!

I had created a record type who gets data from a process model. Inside that I want the date to be shown as feed-style record list.

But with the last updated Appian version, the  =a!list does not work anymore. 

It does not work when I call the record rf!record, also does not work when I call the record  rv!record as the documentation suggested.

The only way that I can manage is to query data with a!queryRecordType. 

Since I query data into an expression first, there it shows correctly: 21 different items. Meanwhile the record who use the same expression, shows only the first item, 21 times. 

Any suggestions how to fix it? Or does exist another way to create a!listViewItem in the latest Appian Version?

Thanks in advance

6 replies

peter.lewis
Employee
May 18, 2023

I'm not able to reproduce your issue - could you post your expression that you're using for the list view item?

kiaras1915
May 19, 2023

This is how it was in the beginning:

This is how I have modify now:

peter.lewis
Employee
May 19, 2023

What happens if you try to reference the fields with rv!record directly? For instance, I would suggest trying something like this:

a!listViewItem(
  title: "ID: " & rv!record[recordType!rtGasConfigurazioneServizio.gasProcessID] & 
  if(
    rv!record[recordType!rtGasConfigurazioneServizio.gasConfigurazioneServizio.tipConfigurazione="updChannel"],
    " - Variazione configurazione: ",
    " - Nuova configurazione: "
  ) &
  ...
)