Previous Topic: 7.2.4 Record Identifiers and JCL – Network Data

Next Topic: 7.2.6 JCL - Error Recording Data

7.2.5 Record Identifiers and JCL - VSE/POWER Data


The POWER SELECT File displays when PF key 4 (Create/Edit
Select File) is entered from the VSE/POWER Data Parameters
panel.  Figure 7-4i is a sample of the XEDIT panel of the
POWER SELECT file showing the distributed defaults.

+----------------------------------------------------------------------------+
|                    VSE/POWER Data Select File Edit                         |
|                                                                            |
|  * * * Top of File * * *                                                   |
|  *                                                                         |
|  * VSE/POWER ACCOUNT SELECT/EXCLUDE OVERRIDE TABLE                         |
|  *                                                                         |
|  * FORMAT:                                                                 |
|  *  MODE TYPE TYPE ....                                                    |
|  *                                                                         |
|  * WHERE:                                                                  |
|  * MODE = SELECT OR EXCLUDE                                                |
|  * TYPE = RECORD TYPE CODE (* = ALL)                                       |
|  *                                                                         |
|  * EXAMPLE:                                                                |
|  *                                                                         |
|    SELECT  *                       ! (THE DEFAULT)                         |
|    EXCLUDE C X                     ! NOT INTERESTED SPOOL ACCESS           |
|  * * * End of File * * *                                                   |
|                  PF1: Help              PF4: Syntax Check File             |
+----------------------------------------------------------------------------+


 Figure 7-4i. VSE/POWER Data Select File Edit Panel


Record identifiers for POWER data are one character long.

To specify all POWER records, code an asterisk (*) as the
record type.

See Figure 3-5, VSE/POWER Data Selection Report, for a list
of the available record types.

EXAMPLE:  Retain only reader, list, punch, and execution
          data.

    EXCLUDE *             ! initially drop all record types
    INCLUDE R L P E       ! then select the desired records
    UNKNOWN EXCLUDE       ! drop all unrecognized records


VSE/POWER DATA JCL

When you use PF key 5 to Create/Edit the JCL from the
VSE/POWER Data Parameters panel, the following screen is
displayed.


+-----------------------------------------------------------------------------+
|                                                                             |
|                   VSE/POWER Data Transfer JCL Edit                          |
|                                                                             |
|                         Press PF1 for HELP                                  |
|                                                                             |
| * * * Top of File * * *                                                     |
| //jobname  JOB  ...                                                         |
| //*                                                                         |
| //REPORT   OUTPUT DEST=node.userid,JESDS=ALL                                |
| //POWER    EXEC PGM=VMTRCV                                                  |
| //STEPLIB  DD   DISP=SHR,DSN=sharedprefix.MICS.LOAD                         |
| //PRINT    DD   SYSOUT=*,OUTPUT=*.REPORT,                                   |
| //             DCB=(LRECL=81,BLKSIZE=6075)                                  |
| //OUTPUT   DD   DISP=(MOD,CATLG),SPACE=(CYL,(15,15),RLSE),                  |
| //             UNIT=SYSDA,DSN=prefix.VSE.POWER.DATA,                        |
| //             DCB=(BLKSIZE=23440,RECFM=VB)                                 |
| //INPUT    DD   DATA,DLM='++'                                               |
| ++                                                                          |
| //                                                                          |
| * * * End of File * * *                                                     |
|                                                                             |
+-----------------------------------------------------------------------------+

 Figure 7-4j. VSE/POWER Data JCL Edit Panel