Versions Compared

Key

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

...

Code Block
languagejavascript
// Define parametersParameters
pjs.define("customerId", { type: "char", length: 8, initValue: "10000123" });
pjs.define("mode", { type: "char", length: 10, initValue: "DISPLAY" });
 
// Call Program
pjs.call("CUST01R", customerId, mode);

...