Chapter 4. Utility Functions 261
1st ed., 6/30/04 - 312579601
JCL Examples
The following example shows JCL for moving a single volume from a panel to another
panel within the same LSM.
The example JCL moves a volume from LSM 00:01, Panel 08, Row 05, Column 02 to the
same LSM (00:01) to Panel 09.
JCL for Moving a Single Volume within the Same LSM
The example JCL moves volumes 000345, 000357, 000367, and 000360 to LSM 00:02,
Panel 06.
Move Several Volumes From an LSM to Another LSM
Output Description
• Typical outputs resulting from the execution of the MOVe utility include:
• a listing of input commands with appropriate messages when syntax errors occur
• messages associated with error conditions resulting from an unsuccessful attempt to
execute unselect processing
• messages indicating actions occurring during processing (see Figure 16 on page 262)
• an updated control data set indicating the volume is moved
• a condition code indicating successful or unsuccessful volume movement (see Figure
16).
/JOB jobname SLUADMIN
/PARM MIXED
/FILE SYSPRINT DEV PRNT CLASS A
/FILE SLSIN *
MOVE FLSM(00:01) PANEL(00) ROW(05) COLUMN(02) TLSM(00:01) TPANEL(09)
/JOB jobname SLUADMIN
/PARM MIXED
/FILE SYSPRINT DEV PRNT CLASS A
/FILE SLSIN *
MOVE VOLUME(000345 000357 000367 000360) TLSM(00:02) TPANEL(06)
Move