PRTY parameter is not honored.

JES2/3, JCL, utilities.
Post Reply
CobolPlus
New Member
Posts: 3
Joined: Mon Sep 14, 2015 6:30 pm

PRTY parameter is not honored.

Post by CobolPlus »

Hi,

I have codee PRTY=10 in my JCL:

Code: Select all

//TESTJOB1 JOB (@),'TEST Job-1',CLASS=A,MSGCLASS=X,  
//            NOTIFY=&SYSUID,PRTY=10                                
But at the run time, the value got overridden. In JESYSMSG it shows like this:

Code: Select all

DTM1459I 2015.259 09:44:33 JOB TESTJOB1 REQUEUED TO CLASS=A PRIORITY=1    
How to get coeded PRTY into effect?
User avatar
Robert Sample
Global Moderator
Global Moderator
Posts: 1895
Joined: Fri Jun 28, 2013 1:22 am
Location: Dubuque Iowa
United States of America

Re: PRTY parameter is not honored.

Post by Robert Sample »

Depending upon your site, the general answer is that you let the priority be managed by the system and don't code PRTY -- ever. Whether or not your site allows the PRTY option and how it impacts job execution are questions that can only be answered by someone working AT YOUR SITE. Hence, you need to contact your coworkers, your team leader, your managers, or your site support group to get an answer to your question.
CobolPlus
New Member
Posts: 3
Joined: Mon Sep 14, 2015 6:30 pm

Re: PRTY parameter is not honored.

Post by CobolPlus »

Thanks Robert. It looks that PRTY is not allowed to be coded in the JCLs. I am trying to check with the support group.
User avatar
Robert Sample
Global Moderator
Global Moderator
Posts: 1895
Joined: Fri Jun 28, 2013 1:22 am
Location: Dubuque Iowa
United States of America

Re: PRTY parameter is not honored.

Post by Robert Sample »

That (PRTY not allowed) is pretty common these days. Workload Manager (WLM) is the product that handles prioritization of work and has removed the need for PRTY.
Gerhard_Adam
Registered Member
Posts: 14
Joined: Thu Nov 26, 2015 10:51 am

Re: PRTY parameter is not honored.

Post by Gerhard_Adam »

A clarification regarding PRTY. This parameter has nothing to do with job execution nor WLM. The PRTY parameter determines whether or not a job's position on the input queue should be placed ahead of others already in the queue. PRTY has nothing to do with the job's execution since that will be established by the assigned service class.
CobolPlus
New Member
Posts: 3
Joined: Mon Sep 14, 2015 6:30 pm

Re: PRTY parameter is not honored.

Post by CobolPlus »

Gerhard_Adam wrote:A clarification regarding PRTY. This parameter has nothing to do with job execution nor WLM. The PRTY parameter determines whether or not a job's position on the input queue should be placed ahead of others already in the queue. PRTY has nothing to do with the job's execution since that will be established by the assigned service class.
I am sorry but are you trying to say that what Robert has said was not correct? I think I have got it wrong but if you can clarify, it'll help me... :oops:
Workload Manager (WLM) is the product that handles prioritization of work and has removed the need for PRTY.
Post Reply

Create an account or sign in to join the discussion

You need to be a member in order to post a reply

Create an account

Not a member? register to join our community
Members can start their own topics & subscribe to topics
It’s free and only takes a minute

Register

Sign in

Return to “JCL - Job Control Language.”