Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

An object that can be passed to pjs.call() to pass by value.

Example

Code Block
titleCall an IBM i Program with By-Value Parameter
  const input = 123;
  pjs.call('mypgm', pjs.parm(input, { type: 'packed decimal', length: 7, decimals: 2 }));