This method is used for passing parameters by value with pjs.call().
Parameters1.
- Value - The value to pass.
...
- Config - A configuration object of the format used by pjs.define().
Or (alternative use)...
- Field name - A String containing the name of a Profound.js field.
Return Value
An object that can be passed to pjs.call() to pass by value.
ExampleExamples
Code Block | ||
---|---|---|
| ||
const input = 123; pjs.call('"mypgm'", pjs.parm(input, { type: '"packed decimal'", length: 7, decimals: 2 })); |
Code Block | ||
---|---|---|
| ||
pjs.define("input", {type: "packed decimal", length: 7, decimals: 2, initValue: 123}); pjs.call("mypgm", pjs.parm("input")); |
RPG Equivalent
PARM