Bug Appian 18.2 SaveInto doesen't accept array

Hi all,

In previous Appian Version 17.2 is possible to insert an array in the saveInto Expression of a field (See below Sail)

 

saveInto: {
ri!gridSelection,
if(
rule!APN_isEmpty(ri!gridSelection.selected),
a!save(
ri!titoliSelezionati,
{}
),
a!forEach(
items: {ri!gridSelection.selected},
expression:
if(
rule!APN_isBlank(wherecontains(tostring(fv!item), ri!titoliSelezionati.idCodBene)),
{
a!save(
ri!titoliSelezionati,
append(
ri!titoliSelezionati,
ri!data[wherecontains(tostring(fv!item), ri!data.idCodBene)]
)
),
a!save(
ri!titoliSelezionati.vendita,
"Parziale"
),
{}
},
a!save(etc..)
)
)
}

 

now in 18.2 doesen't accept the array of a save in the a!forEach expression and it is necessary to use the a!flatten function to avoid the error.

 

Does anyone has experienced this bug? Is a Bug? There will be an hotfixes in future relaese?

 

Thanks

  Discussion posts and replies are publicly visible