Hi all,
I have implemented a RFC Server connection but when I read table content this is empty.
This is the code:
' Implementation of Server Methods
' Implementation of remote function module SD_RFC_CUSTOMER_GET
Protected Overrides Sub Sd_Rfc_Customer_Get( _
ByVal Kunnr As String, ByVal Name1 As String, ByRef Customer_T As RFCCUSTTable)
' TODO: add your server code here
Dim customer As RFCCUST
For Each customer In Customer_T
Console.WriteLine(customer.Kunnr)
Next
End Sub
For Kunnr and Name1 the value are correct but for Customer_T there is not any value.
Any suggestion?
Thanks in advance,
Michele.