The RfcTableParameter object manages all information needed for actually using a table in an RFC function call. (The table corresponds to the Table parameter in the RfcCall and RfcReceive RFC functions.)
Available information on RfcTableParameter objects:
PropertiesThe following example describes the code necessary for packing a Table object into the RfcCall. This code is used internally by the
function control.
Dim oParameter as Object
Dim Table as RFC_TABLE
Dim RfcRc as short
Dim hRfc as long
Set oParameter = oTable.RfcParameter
Table.Name = oParameter.Name
Table.Length = oParameter.NameLength
Table.Type = oParameter.Type
Table.itab = oParameter.TableHandle
RfcRc = RfcCall (hRFc, "MYRFCFUNCTION", 0, 0, Table)