SYSTEM Parameter Example


Scenario1 - Making one system eligible.

Code -

----+----1----+----2----+----3----+----4----+----5----+
//MTHEXMP1 JOB (META007),'PAWAN Y',SYSTEM=MTHSYS1

Explaining Example -

The systems MTHSYS1 is eligible for processing the job.

Scenario2 - Making two systems eligible.

Code -

----+----1----+----2----+----3----+----4----+----5----+
//MTHEXMP1 JOB (META007),'PAWAN Y',SYSTEM=(MTHSYS1,MTHSYS2)

Explaining Example -

The systems MTHSYS1 and MTHSYS2 are eligible for processing the job.

Scenario3 - Making any system eligible.

Code -

----+----1----+----2----+----3----+----4----+----5----+
//MTHEXMP2 JOB (META007),'PAWAN Y',SYSTEM=*

Explaining Example -

Any system that submitted the job is eligible for processing the job.

Scenario4 - Making specific system and submitted system eligible.

Code -

----+----1----+----2----+----3----+----4----+----5----+
//MTHEXMP2 JOB (META007),'PAWAN Y',SYSTEM=(MTHSYS1,*,MTHSYS2)

Explaining Example -

The systems MTHSYS1, MTHSYS2 and the system that submitted the job is eligible for processing the job.

Scenario5 - Making specific systems not eligible.

Code -

----+----1----+----2----+----3----+----4----+----5----+
//MTHEXMP3 JOB (META007),'PAWAN Y',SYSTEM=(-MTHSYS1,MTHSYS2)

Explaining Example -

The systems MTHSYS1 and MTHSYS2 are not eligible for processing the job.

Scenario6 - Making any system eligible.

Code -

----+----1----+----2----+----3----+----4----+----5----+
//MTHEXMP3 JOB (META007),'PAWAN Y',SYSAFF=ANY

Explaining Example -

Any system that satisfies the job's requirements are eligible to process the job.