Remote Procedure Calls
The Remote Procedure Call, shortly RPC, is a function call, which executes a call to fetch additional data inside a module. A user cannot select it or invoke it from other modules.
RPCs have specific output rules, so take a look at RPC Types before the implementation.
Limits
As we can't wait for the RPC's output to infinity, there are limits.
Name
Total limit of...
Value
Max Execution Timeout
... seconds
40
Best Practices
Since we can't wait forever for the RPC's response, when the parameters of the module are loading, there are some best practices you should know.
Name
Recommended limit of ...
Value
Request Count
... calls performed by RPC
3
Record Count
... paginated records
3 * number of objects per page
Last updated