Hello community,
On the first site of my app, I create this collection by clicking a button as follows:
ClearCollect (
col_KEA;
{
User: lb_log_1.Text;
GB: lb_log_2.Text;
VKB: lb_log_3.Text;
Email: lb_log_4.Text
}
) ;;
Navigate (scr_site_2)
On page 2 now I have input fields.
Now I enter values ​​in these input fields. If I now click on a button, I would like the data from the input fields to be added to this collection as columns.
I thought it would go like this:
AddColumns (col_KEA;
{
Company name: inp_01_01_Firmierung.Text;
Street: inp_01_02_Strasse_Hausnr.Text;
ZIP: inp_01_03_PLZ.Text;
Location: inp_01_04_Ort.Text;
Tel: inp_01_05_Tel.Text;
Mobile: inp_01_06_Mobil.Text;
Fax: inp_01_07_Fax.Text
}
)
But that's wrong.
What am I doing wrong or what is the right way?
The goal should be that I only have one data record in the collection, but at the end this one data record has about 50 columns. And this data record is then written to a SharePoint list at the very end.
Thank you for your help.