Hello everyone,
I am trying to build some nested collections:
=============================
ClearCollect(
colEintritt,
{
colCheckliste: {
colStandardsoftware: {
Standardsoftware: galStandardSoftware.Selected.lbl_Office365_2.Text,
angefordert: galStandardSoftware.Selected.Checkbox1.Value,
installiert: galStandardSoftware.Selected.Checkbox1_1.Value
},
colOptionaleSoftware: {
optSoftware: galOptionaleSoftware.Selected.lbl_Office_Project.Text,
angefordert: galOptionaleSoftware.Selected.Checkbox1_22.Value,
installiert: galOptionaleSoftware.Selected.Checkbox1_23.Value
},
colBerechtigungen: {
Laufwerke: txt_Laufwerke.Text,
angefordert: galBerechtigungen.Selected.Checkbox1_32.Value,
installiert: galBerechtigungen.Selected.Checkbox1_33.Value
}
},
Mitarbeiter: DataCardValue2.Selected.DisplayName,
Computername: DataCardValue3.Text,
Ticketnummer: DataCardValue4.Text
}
)
=============================
With the above, it works with only one row (record) being showed.
How can I add multiple rows in the 3rd Level Collection ?



With the method I know, it does not work:

Any respone would be appreciated. I can't go further because of this.
Thank you in advance !