IEB1070W
JCL FOR DD ddname REQUESTS DIRECTORY BLOCKS WITH A SEQUENTIAL DATA SET. (JFCDSORG= X'jcl_org' JFCBDQTY=dir_blocks)

Explanation

There is a conflict between parameters in the JCL. The SPACE parameter specifies directory blocks, which implies that the data set is partitioned. DSORG=PS also appears in the JCL and indicates that the data set is sequential.

Parameters like DSORG=PS can be added to your JCL even though you did not code them. SMS ACS routines, Data Classes, the JCL SPACE, LIKE and DCB parameters can all implicitly add to JCL.

Message inserts and meanings:
ddname
DD name identifying the data set.
jcl_org
value of the DSORG field in the JCL.
dir_blocks
number of directory blocks specified in the JCL.

The severity is 0.

System action

The data set is processed as an unload (sequential) data set.

User response

Remove the conflicting DSORG=PS parameter or the directory quantity from the SPACE parameter. If DSORG=PS does not appear in the JCL or on the TSO ALLOCATE or ATTRIB command and the data set is partitioned then add DSORG=PO to the JCL or DSORG(PO) to the TSO command.

Source

DFSMSdfp