I have a Transation showing the following parameters using /DIS TRAN XYZ
TRAN = XYZ
CLS = 16
ENQCT = 0
QCT = 0
LCT = 10
PLCT = 5
CP = 5
NP = 5
LP = 7
SEGSZ = 0
SEGNO = 1000
PARLM = 4
RC = 0
#1:
I think PLCT has just to do with how many msg which can be processed in single scheduling of the program no matter how many messages are pending in the queue.
question is how PARLIM and LCT are interlinked. As shown above LCT is 10 and PARLIM is 4. In case I got 12 messages then as per PARLIM it will be scheduled in 3 different regions each having 4 messages then what will happen to Priority ?
As total number of messages is 12 hence will the prioirty will change to LP (7) or is it region dependent and will remain as NP (5) as in each region the number of messages is 4 ?
#2:
which parameter specifies the max number of messages that can be queued which are pending for processing. I remember in my last project where we send messages to Tran queue of BMP program which was supposed to be a daily job but after some time we got abend and then we have to ask to increase the count of the BMP program transation queue.