In the Enterprise Server (ES) configuration, you enable JCL support by setting the ES_SSTM_ssss environment variable to a fully qualified path to the JCL used to initialize the SSTM environment. In the environment variable,ssss is CICS or IMS, depending on the environment that you want to initialise.
ES_SSTM_CICS=c:\es\sstm\jcl\sstmcics.jcl
ES_SSTM_IMS=c:\es\sstm\jcl\sstmims.jcl
The default program attributes used for the SSTM are a mainframe dialect, AMODE(31) program with a character set derived from the value of the environment variable MF_CHARSET. If this variable is not set, then a value of ASCII is used. You can tailor the attributes to suit your requirements by creating a simple 'no-op' program and compiling it with the attributes you require. The program is not run, but the attributes are used, and are shown in the JESYSMSG output log for the job; for example:
JCLCM0199I Program MFJBR14 is COBOL VSC2 ASCII Big-Endian AMODE31
//SSTMJCL JOB 'CICS JOB',MSGCLASS=A //CICS EXEC PGM=NOTUSED //SYSOUT DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SHAREDD1 DD DSN=SHARED.ACROSS.SEPS1,DISP=(MOD,CATLG) //LOCALDD1 DD DSN=&&SEPLOCAL,DISP=NEW //JOBSUB DD SYSOUT=(*,INTRDR)