This code can get the RFC Function Metadata,but Metadata contains some Rfctable,How can I get the Rfctable parameters ,
With the same input parameters, the results returned by calling RFC with SapNwRfc are inconsistent with those returned by directly calling RFC in SAP. Therefore, I would like to know whether the structure of the RFC returned by SapNwRfc is different from that of direct access in SAP.
var functionMetadata = connection.GetFunctionMetadata("SOME_SAP_RFC");
var functionName = functionMetadata.GetName();
var parameterCount = functionMetadata.Parameters.Count;
foreach (var parameterMetadata in functionMetadata.Parameters)
{
var parameterName = parameterMetadata.Name;
var parameterType = parameterMetadata.Type;
}
This code can get the RFC Function Metadata,but Metadata contains some Rfctable,How can I get the Rfctable parameters ,
With the same input parameters, the results returned by calling RFC with SapNwRfc are inconsistent with those returned by directly calling RFC in SAP. Therefore, I would like to know whether the structure of the RFC returned by SapNwRfc is different from that of direct access in SAP.
var functionMetadata = connection.GetFunctionMetadata("SOME_SAP_RFC");
var functionName = functionMetadata.GetName();
var parameterCount = functionMetadata.Parameters.Count;
foreach (var parameterMetadata in functionMetadata.Parameters)
{
var parameterName = parameterMetadata.Name;
var parameterType = parameterMetadata.Type;
}