Purpose
Updates an existing row in the table parameter at the given indexed position.
Syntax
void insertRow(int index, jbo<RefStructType>TableRow tableRow);
Parameters
index
: an integer indicating the position where the new row is to be inserted.tableRow: a table row proxy object. This object is of type jbo<RefStructType>TableRow where <RefStructType> is the ABAP reference structure type defined in R/3 transaction SE11.
Return Value
None.
Exceptions
Throw JRfcRemoteException.
Description
The index must be valid. That is, smaller than the total number of rows in the embedded table parameter.
Related Information
The Table Row Classes