Epicor function

Hi,

I have an Epicor Functions with 2 internals functions. The first function have 12 responses parameters. The second function call the first function but I always received the following message on the “Check Syntax”: “No overload for method “Function1” takes 12 arguments”

The call from function2: this.ThisLib.Function1(out tmp1, out tmp2, etc…)

Regards
Al

the response parameters will be in the response body, and the request parameters go in the payload body as well (for typical REST client calls)

Example internal library request/response:

Calling from the “external” library:

image