Server Guide

Examples

Example 1

Loads a program and assigns the ENTRY result to x and the FLENGTH result to y.

| result x y |
result := CICS load
               program: 'CILOADD1';
               set;
               exec.
x := result entry.
y := result flength.

Example 2

Loads a program with the HOLD parameter.

| result |
 
result := CICS load
               program: 'CILOADD2';
               set;
               hold;
               exec.


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]