Memorex LOCK - VERSION 2-24 Especificaciones Pagina 273

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 489
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 272
Processing with COBOL II
Chapter 7. Running Jobs With BIM-EPIC 7-53
Processing with COBOL II
BIM-EPIC requires that COBOL II programs are compiled with the Library Management
Feature (the RES CBL option) in order to function properly.
In some instances, you may have COBOL II software which was not compiled with the
Library Management Feature active, and you have no access to the source code. To run these
programs with BIM-EPIC, special JCL is required.
No special entries are required.
For all controlled disk datasets: Pre-open each dataset with the TSIDASS OPEN function.
For all uncontrolled disk datasets: The proper volume serial number must be specified on the
EXTENT statement, and you must make an assignment to the proper device with a VSE
ASSGN statement.
For all tape datasets: Assign the dataset to a tape drive with a VSE ASSGN statement or with
the TSIDASS ASSGN function.
The following example processes a controlled input disk dataset. The dataset is pre-opened
with TSIDASS.
// DLBL DISKIN, 'TEST.INPUT.DISK, (L)'
// EXEC TSIDASS
OPEN DISKIN,SYS020,INPUT
/*
// EXEC PROGA
The following example processes an uncontrolled input disk dataset. VSE ASSGN and
EXTENT statements are used to satisfy the COBOL II pre-open process.
// ASSGN SYS020,154
// DLBL DISKIN,'TEST.INPUT.DISK'
// EXTENT SYS020,VOL154,1,0,15,75
// EXEC PROGA
The following example processes a controlled tape dataset. The TSIDASS ASSGN function
is used to satisfy the COBOL II pre-open process.
// DLBL TAPEIN,'TEST.TAPE',,,,,,64
// EXEC TSIDASS
ASSGN SYS011
/*
// EXEC PROGA
Description
DSN Catalog
JCL Requirements
Examples
Vista de pagina 272
1 2 ... 268 269 270 271 272 273 274 275 276 277 278 ... 488 489

Comentarios a estos manuales

Sin comentarios