The Table Parameter Classes 

The table parameter classes are wrapper classes of table parameters of BAPI methods. These classes offer functions to operate at the row-level, without functions to access individual fields of the rows. To access fields within any row, the classes of this category offer functions to access a proxy object of any given row, and that row proxy object is then used for accessing the individual fields.

See an example of a table parameter proxy class in the Java BAPI HTML Reference (in Com.sap.bapi.purchasereqitem.jbobapiebantable.html).

Construction

jbo<reference_structure_type>Table

The application program has no need to construct objects of this class

Operations

appendRow

Appends a row to the table parameter.

createEmptyRow

Returns a table row proxy object for an empty row.

deleteAllRows

Deletes all rows from the table parameter.

deleteRow

Deletes specified row.

getRow

Returns a table row proxy object for the specified row.

getRowCount

Returns the number of rows in the embedded table parameter.

insertRow

Inserts a row to the table parameter at the given indexed position.

updateRow

Updates an existing row in the table parameter at the given indexed position.