Add items to IRfcTable

前端 未结 1 947
面向向阳花
面向向阳花 2021-01-03 13:45

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

相关标签:
1条回答
  • 2021-01-03 14:37

    Resolved.

    IRfcStructure articol = repo.GetStructureMetadata("Z_ITEMS") as IRfcStructure;
    

    Replaced by

    RfcStructureMetadata am = repo.GetStructureMetadata( "Z_ITEMS" );
    IRfcStructure articol = am.CreateStructure();
    
    0 讨论(0)
提交回复
热议问题