Hello guys,
I would like to safe multiple Selections of a combobox into a sharepoint list and retrieve them back in a combobox.
I think I know how it would work but I don't know how to achieve this.
I have a Combobox (ComboBox1) with the Items: 'rh_datenverarbeitung' (a dataverse Table)
I would like to patch to the sharepoint List 'Verfahrensverzeichniss' to the column 'Zwecke'
Theoretically I should patch them like combined with a , or a & .
Later I want to retrieve the items as default selected in the other combobox (ComboBox2) to eventually edit the selection.
But how can I achieve that.
the code next is the code I have actually to store and retrieve only one item
Patch(
Verfahrensverzeichniss,
Defaults(Verfahrensverzeichniss),
{
ZweckederDatenverarbeitung: Zweck_Datver.Selected.rh_datenverarbeitung
}
);
{
rh_datenverarbeitung:
LookUp(
Verfahrensverzeichniss,
ID = selectedId
).ZweckederDatenverarbeitung
}