SAP / node-rfc

Asynchronous, non-blocking SAP NW RFC SDK bindings for Node.js
Apache License 2.0
252 stars 74 forks source link

Retrieve export parameter on RFC FM #91

Closed davidacb closed 5 years ago

davidacb commented 5 years ago

Hello,

Is there a way when executing an RFC FM through node-rfc to retrieve back the export parameter of the RFC FM?

Kind regards, David Barreiro

bsrdjan commented 5 years ago

They should be normally returned, unless the "filter" option set to 1, filtering them out:

const rfcClient = require('node-rfc').Client;

const client = new rfcClient(abapSystem, {
    filter: 1
});