Re: Is there a field that would reflect LPAR soft-capping?;

2021-11-22 Thread Paul Gilmartin
On Mon, 22 Nov 2021 11:08:51 -0500, Phil Smith III wrote: >And just to close the loop: > I would have used a relatively moron-proof subroutine: Show Field: say left( arg( 1 ), 9 )'=' value( arg( 1 ) ) return >QVSVER = 2 >CECMODEL = 785 >CECMSUS = 10012 >CECSTAT = 1 >CECTYPE = 3906

Re: Is there a field that would reflect LPAR soft-capping?;

2021-11-22 Thread Phil Smith III
And just to close the loop: QVSVER = 2 CECMODEL = 785 CECMSUS = 10012 CECSTAT = 1 CECTYPE = 3906 CECVALID = 1 IMGVALID = 1 LPARID = 1 LPARMSUS = 5183 LPARNAME = ZM01 QVSFLAGS = E0 VER2 = Looks a lot more plausible! Thanks again.

Re: Is there a field that would reflect LPAR soft-capping?;

2021-11-21 Thread Phil Smith III
Steve Horein suggested: >To me, it appears your variable names and values are not lining up, like >your CECMODEL variable reflects your CECMSUS value, etc. >Hopefully that helps? Doh. All I did was take the code you posted and add a bunch of SAY statements at the end, but in doing so I

Re: Is there a field that would reflect LPAR soft-capping?

2021-11-20 Thread Roger Lowe
On Fri, 19 Nov 2021 10:46:39 -0800, Charles Mills wrote: >I am thinking about coding an STC that would "do something" if LPAR >soft-capping kicked in. Is there a field somewhere in z/OS that gives the >MSU capacity of the LPAR *and that would change to reflect the effect of >soft-capping*? >

Re: Is there a field that would reflect LPAR soft-capping?;

2021-11-20 Thread Steve Horein
I do see IRAQVS was expanded between z/OS 2.3 and 2.4: https://www.ibm.com/docs/en/zos/2.3.0?topic=information-iraqvs-mapping https://www.ibm.com/docs/en/zos/2.4.0?topic=information-iraqvs-mapping However, I still get expected results when run on a 2.4 system. I get to do some fun things in

Re: Is there a field that would reflect LPAR soft-capping?;

2021-11-20 Thread Charles Mills
@LISTSERV.UA.EDU] On Behalf Of Phil Smith III Sent: Saturday, November 20, 2021 7:58 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Is there a field that would reflect LPAR soft-capping?; Steve Horein provided some nice Rexx that talks to WLM about this, but I don't quite grok the output. When I run

Re: Is there a field that would reflect LPAR soft-capping?;

2021-11-20 Thread Phil Smith III
Steve Horein provided some nice Rexx that talks to WLM about this, but I don't quite grok the output. When I run it and just display the various variables, I get: QVSVER = 2 QVSFLAGS = 1 IMGVALID = CECSTAT = 3906 CECMODEL = 10012 LPARNAME = 1 LPARMSUS = E0 CECVALID = 1 VER2 = 1

Re: Is there a field that would reflect LPAR soft-capping?

2021-11-20 Thread Charles Mills
e, but I do not know that it is available. Charles -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Peter Sylvester Sent: Saturday, November 20, 2021 1:01 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Is there a field that would reflect LPAR soft-cappin

Re: Is there a field that would reflect LPAR soft-capping?

2021-11-20 Thread Peter Sylvester
On 19/11/2021 21:45, Charles Mills wrote: I will build a quick and dirty Rexx to display those two fields on demand and see what I learn. You may find one in the archives if this list, 13 years ago. https://bit.listserv.ibm-main.narkive.com/KljbHTxQ/how-to-check-current-msus-usage Best

Re: Is there a field that would reflect LPAR soft-capping?

2021-11-19 Thread Charles Mills
value (despite what the doc says). > > Charles > > > -Original Message- > From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On > Behalf Of Charles Mills > Sent: Friday, November 19, 2021 12:45 PM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re

Re: Is there a field that would reflect LPAR soft-capping?

2021-11-19 Thread Steve Horein
> > Charles > > > -Original Message- > From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On > Behalf Of Charles Mills > Sent: Friday, November 19, 2021 12:45 PM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: Is there a field that would refl

Re: Is there a field that would reflect LPAR soft-capping?

2021-11-19 Thread Charles Mills
] On Behalf Of Charles Mills Sent: Friday, November 19, 2021 12:45 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Is there a field that would reflect LPAR soft-capping? I will build a quick and dirty Rexx to display those two fields on demand and see what I learn. Thanks again! Charles

Re: Is there a field that would reflect LPAR soft-capping?

2021-11-19 Thread Charles Mills
-MAIN@LISTSERV.UA.EDU Subject: Re: Is there a field that would reflect LPAR soft-capping? Charles I think the RCTIMGWU field is what you are looking for, in short it's defined as Image defined MSU's - as the softcap is changed that value is updated, I'm not 100% sure that's what your asking

Re: Is there a field that would reflect LPAR soft-capping?

2021-11-19 Thread Carmen Vitullo
ssion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Carmen Vitullo Sent: Friday, November 19, 2021 10:56 AM To:IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Is there a field that would reflect LPAR soft-capping? we used part of Mark Zelden's IPLINFO Rexx on MSU usage, the field we use is RCTLACS I'd

Re: Is there a field that would reflect LPAR soft-capping?

2021-11-19 Thread Charles Mills
AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Is there a field that would reflect LPAR soft-capping? we used part of Mark Zelden's IPLINFO Rexx on MSU usage, the field we use is RCTLACS I'd think you would need the defined MSU's (RCTIMGWU) also and compare the fields? Check Marks IPLINF

Re: Is there a field that would reflect LPAR soft-capping?

2021-11-19 Thread Carmen Vitullo
we used part of Mark Zelden's IPLINFO Rexx  on MSU usage, the field we use is   RCTLACS I'd think you would need the defined MSU's (RCTIMGWU)  also and compare the fields? Check Marks IPLINFO, I think that would have everything you'd need. of course there are other tools from other vendors

Is there a field that would reflect LPAR soft-capping?

2021-11-19 Thread Charles Mills
I am thinking about coding an STC that would "do something" if LPAR soft-capping kicked in. Is there a field somewhere in z/OS that gives the MSU capacity of the LPAR *and that would change to reflect the effect of soft-capping*? This is for internal use, so I would be willing to bear the risks