If you have defined a console entry in your CSD as CONSNAME(INTERNAL), you can submit commands to your CICS® region by using JCL.
Your JCL should use the MVS™ MODIFY command and the job name, or task ID, of the CICS region you are addressing, followed by the CICS commands. The normal rules of JCL apply.
The following sample job shows how you might submit commands in this way.
//IEFBR14 JOB (accounting information),CLASS=A,MSGCLASS=A,MSGLEVEL=1,...,...
//*
//* Sample JOB to submit CICS commands using CONSNAME(INTERNAL)
//*
//IEFBR EXEC PGM=IEFBR14
// F CICSRUN,'CEMT INQ TER'
// F CICSRUN,'CEMT INQ TAS'
// F CICSRUN,'CEMT SET TER(L77C) ACQ'
//