This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4d51a71
commit 07ca6f8
Showing
2 changed files
with
513 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
Author: Andrew Mattingly: <[email protected]> | ||
Copyright IBM Corp. 2018 | ||
|
||
This is an "IPA crawler" which can find out where an initialization parameter is set. Load it into your SYS1.SAXREXEC and give it a whirl. | ||
It takes the name of a IEASYSxx parameter (or the corresponding PARMLIB member prefix) as a parameter, and reports the value detected at | ||
initialization, where it was set, and where to find the referenced PARMLIB datasets, if the value is a suffix or list of suffices. It | ||
also takes some "special parameters" for the "early stuff": LOAD, IODF, {IEASYS|SYS|SYSPARM},{IEASYM|SYM} and NUCLST. | ||
|
||
For example: | ||
|
||
``` | ||
@WHERE LOAD | ||
LOAD = AL | ||
SYS1.IPLPARM(LOADAL) | ||
@WHERE IODF | ||
IODF = 99 | ||
SYS1.IODF99 | ||
@WHERE SYS | ||
SYSPARM = AL | ||
ADCD.Z21S.PARMLIB(IEASYSAL) | ||
@WHERE IEASYM | ||
IEASYM = 00 | ||
ADCD.Z21S.PARMLIB(IEASYM00) | ||
@WHERE NUCLST | ||
NUCLST = 00 | ||
SYS1.IPLPARM(NUCLST00) | ||
@WHERE OMVS | ||
OMVS = (00,BP,IZ,CI,DB,IM,WA) | ||
Source: IEASYSAL | ||
ADCD.Z21S.PARMLIB(BPXPRM00) | ||
ADCD.Z21S.PARMLIB(BPXPRMBP) | ||
ADCD.Z21S.PARMLIB(BPXPRMIZ) | ||
ADCD.Z21S.PARMLIB(BPXPRMCI) | ||
ADCD.Z21S.PARMLIB(BPXPRMDB) | ||
ADCD.Z21S.PARMLIB(BPXPRMIM) | ||
ADCD.Z21S.PARMLIB(BPXPRMWA) | ||
@WHERE SQA | ||
SQA = (15,128) | ||
Source: IEASYSAL | ||
@WHERE VATLST | ||
VAL = DB | ||
Source: IEASYSAL | ||
ADCD.Z21S.PARMLIB(VATLSTDB) | ||
``` | ||
|
||
This REXX is somewhat imperfect - it doesn't cope with all the nuances of z/OS parameter configuration (but catches most of them). | ||
|
Oops, something went wrong.