I use following code for open an new Form to input an ValueTable:
| Code |
|---|
ParametersFilter = New Structure;
ParametersFilter.Insert("Position", Item.CurrentData.LineNumber);
FoundData = Object.StueckListe.FindRows(ParametersFilter);
P = New Structure("Liste", FoundData);
OpenForm("Document.Auftraege.Form.FormStueckliste", P); |
After the command OpenForm
i get the error:
"Fehler beim Typenanzeigen: Anzeige für den Typ "FormDataCollectionItem" nicht vorhanden"
the error only come if the FoundData has rows.
can anybody help?

