Previous Topic: Coding the KEY Control Statement for a Pointed StartNext Topic: Example—KSDS Pointed Start


Coding the ADR Control Statement for a Pointed Start

To access entry-sequenced files at a specific place in the file, code the following control statements:

Pointed Start for z/VSE

For z/VSE, assign the external file name VSAMCTRL for the control statements:

//VSAMCTRL DD *
 ADR H hexadecimal-position-qx

Pointed Start for z/OS

For z/OS, read the control statement(s) in from SYSIPT:

5-step JCL:
     // ASSGN SYSIPT,X'device'
     // EXEC CULL,SIZE=300K
      ADR H hexadecimal-position-qx

1-step JCL:
     // EXEC CULPRIT,SIZE=300K
        CULPRIT PARAMETERS
     /*
      ADR H hexadecimal-position-qx
     /*

The size specification must be small enough to allow space allocation for VSAM modules in the GETVIS area.

Notes