Hi,
I have jcl in mfe project where all dataset is ascii, when in a jcl I have output file with this line:
//*MFE: %CHARSET=ASCII
the dataset is cataloged ascii.
But when I use IDCAMS with DEFINE CLUSTER, the dataset is allocated EBCDC, and next step of jcl give me error charset mismach
"JCLAM0183S(12) - Character set mismatch. Copied without conversion. "
Can I allocate with idcams utility directly in ascii format?
thenks
bye
//DELDEF1 EXEC PGM=IDCAMS
//SYSOUT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
DELETE M4.VSAM.FTMETA CLUSTER PURGE
DEFINE CLUSTER ( -
NAME(M4.VSAM.FTMETA) -
INDEXED -
KEYS (56 0) -
NOREUSE -
OWNER (PME) -
CYL (10 5) -
RECORDSIZE (56 27994) -
SHAREOPTIONS (2 3) -
SPEED FSPC (3 3)) -
DATA ( -
NAME(M4.VSAM.FTMETA.DATA ) -
) -
INDEX ( -
NAME(M4.VSAM.FTMETA.INDEX) -
)
#EnterpriseDeveloper