ERP Integrator V2 - Online Help
ERP Integrator V2
Questions / Feedback?

TableRow Event

This event fires for each row received in a table.

Syntax

[VB.NET]
Public Event OnTableRow As OnTableRowHandler
[C#]
public event OnTableRowHandler OnTableRow;

public delegate void OnTableRowHandler(object sender, SapclientTableRowEventArgs e);

class SapclientTableRowEventArgs : EventArgs {
  string TableName {get;}
  string RowData {get;}  byte[] RowDataB {get;}
}

Remarks

The TableRow event allows you to see each row of a table exactly as it is returned from the R/3 system. As the table is read from memory this event fires with the name of the table, the binary row data, and the length of the row. This event is useful if you do not wish the component to parse returned tables itself, and do not want to use the table, row, and column properties to access the table data. In this manner you can receive the raw row data and parse it yourself, without the overhead of the component parsing it for you.

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 2.0.6240.0