Hi I have 1 to many relationship between Group (level1) and Assignee (level 2)..
I want to update update and save the the name in Assignee.Name.
I have been using these one below and it did not work
a!forEach( items: {"John Doe 1" , "Jane Doe 1", "Sam Doe 1"}, expression: {
a!save(ri!group [recordtype!group.relationship.Assignee.Name][fv!index],fv!item),
} )
but it was not saved or overridden the Name Field.
i'm looking to save the output like this.
could you please help?
Discussion posts and replies are publicly visible
"a!save()" won't do anything in an a!forEach statement. It must be used in the saveInto parameter of a user-interactable field.
It is just that I cannot index the second level.
It save it as first level.
I have this
saveInto:{
a!forEach(items: {"John Doe 1" , "Jane Doe 1", "Sam Doe 1"},expression: {
})
}