I have a function and one of it\'s parameter is a table (T_ITEMS).
Item of tables is of type/structure Z_ITEM with two fields: Value, Quantity;
How can I add
Resolved.
IRfcStructure articol = repo.GetStructureMetadata("Z_ITEMS") as IRfcStructure;
Replaced by
RfcStructureMetadata am = repo.GetStructureMetadata( "Z_ITEMS" ); IRfcStructure articol = am.CreateStructure();