I want to go into a collection where i store some scanned barcodes and read out (the only column in it).
Indipendet how much are in the collection i want to create a new forms submission to a SP list for every line in the collection.
Every Value of the Collection Rows sould be combined with Strings variables wich I get from an form input and than pass it all in a SP list record.
Works all fine but it wont give me the value from the collection (first line in forall loop).
Probably because the "Value"Variable from the ForAll Loop gives back a single line table? I tryed to make it with concat but it didnt work.
Name of the Collection: colBarcodes
Name of the Column in Collection: Value
On a Button OnSelect i got this code:
Set(varDataAbteilung; DataCardValueAbteilung.Text);;
Set(varDataEtage; DataCardValueEtage.Text);;
Set(varDataRaum; DataCardValueRaum.Text);;
Set(varDataNutzer; DataCardValueNutzer.Text);;
Set(varDataKST; DataCardValueKST.Text);;
ForAll(colBarcodes;
DataCardValueSYSID.Text = Concat(colBarcodes, Value);;
DataCardValueAbteilung.Text = varDataAbteilung;;
DataCardValueEtage.Text = varDataEtage;;
DataCardValueRaum.Text = varDataRaum;;
DataCardValueNutzer.Text = varDataNutzer;;
DataCardValueKST.Text = varDataKST;;
SubmitForm(Form_Erfassen))