Any way to select certain volume ranges with the TLMS-CA1 conversion?
search cancel

Any way to select certain volume ranges with the TLMS-CA1 conversion?

book

Article ID: 106328

calendar_today

Updated On:

Products

TLMS Tape Management

Issue/Introduction

Looking for a certain range for the conversion.

Environment

z/OS CA TLMS

Resolution

Within the following JCL: CAI.TLMS.AATLJCL(TLMJCA12), locate the following code:
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! THE FOLLOWING MAY BE USED TO BYPASS A CERTAIN VOLUME RANGE !
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!IF VOLSER > '199999' AND VOLSER < '100000'
! GOTO START
!ENDIF
Update the volser range and un-comment the code. Would look like this:
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! THE FOLLOWING MAY BE USED TO BYPASS A CERTAIN VOLUME RANGE
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
IF VOLSER > '199999' AND VOLSER < '100000'
GOTO START ENDIF
*
 If the volser is greater than 199999 and less than 100000, skip the volser and process next volume.