Error in Calling an RFC Returning a Field and Table with Purchase Orders #321
Unanswered
fitzgeraldtorres
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I need help calling an RFC that returns a field and a table with purchase order records, but the function throws an error indicating that the type arguments cannot be inferred from the usage. I’m attaching my function and the error code. Thank you in advance for your help.
public async Task TraePedidoCompraAsync(BuyDocumentRequestDto request)
{
var sapSettings = _configuration.GetSection("SapSettings").Get();
var settings = new Dictionary<string, string>
{
{"ashost", sapSettings.AppServerHost},
{"sysnr", sapSettings.SystemNumber},
{"client", sapSettings.Client},
{"user", sapSettings.User},
{"passwd", sapSettings.Password},
{"lang", sapSettings.Language}
};
}
Beta Was this translation helpful? Give feedback.
All reactions