IEB1068W
JCL FOR DD ddname WILL PROCESS THE DATA SET AS SEQUENTIAL BUT THE LABEL SAYS IT IS PARTITIONED. (DS1DSORG= X'label_org' JFCDSORG= X'jcl_org')

Explanation

There is a conflict between the JCL and the data set label. The JCL supplied DSORG=PS overrides the DSORG=PO in the label.

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

Message inserts and meanings:
ddname
DD name identifying the data set.
label_org
value of the DSORG field in the data set label.
jcl_org
value of the DSORG field in the JCL.

The severity is 4.

System action

The existing data set will be converted from partitioned to sequential and all members in the partitioned data set will be lost. An unload data set will be created in its place.

User response

Determine where the the DSORG=PS is coming from. Look at the label of data sets referenced by the LIKE or DCB parameter, and use ISMF to look at the definition of any Data Class assigned to the data set.

A conflict like this can either be removed at its source or you may override the conflict by coding DSORG=PO on the DD statement or in the TSO ALLOCATE or ATTRIB command.

Source

DFSMSdfp