Each parmlib member has different syntax rules - That is why there is probably not a general parm checker.
I have not looked a z/OSMF to see if it helps with these members. The best I do is use the HILITE function in ISPF to see if there is anything obvious, like missing commands or parenthesis mismatches. You can also use ISPF 3.14 to compare a previous working parmlib member with the new one you have altered. This can be run in batch. Use the panel to create the process then select at the bottom Run in Batch. Create a staging PARMLIB dataset called SYS1.STAGE.PARMLIB Then run the batch job against SYS1.PARMLIB vs. SYS1.STAGE.PARMLIB That will do a decent job if you have the options setup correctly. //SUPERC EXEC PGM=ISRSUPC, // PARM=(DELTAL,LINECMP, // 'LOCS ALLMEMS', // '') //NEWDD DD DSN=SYS1.PARMLIB, // DISP=SHR //OLDDD DD DSN=SYS1.STAGE.PARMLIB, <-- if uncataloged, use volser // DISP=SHR,UNIT=SYSALLDA,VOLUME=SER=MYSRES //OUTDD DD SYSOUT=(*) Lizette > -----Original Message----- > From: IBM Mainframe Discussion List [mailto:[email protected]] On > Behalf Of Nathan Astle > Sent: Sunday, September 27, 2015 6:42 AM > To: [email protected] > Subject: Re: Parmlib syntax check macro > > LPALSTXX PROGXX > > On Sunday 27 September 2015, Lizette Koehler <[email protected]> > wrote: > > > I am not aware of any parmlib checkers. > > > > Some members I use the HILITE function for REXX to try and observe > > what might be incorrect. > > > > What member or members are you interested in? > > > > Lizette > > > > > > > -----Original Message----- > > > From: IBM Mainframe Discussion List [mailto:[email protected] > > <javascript:;>] On > > > Behalf Of Nathan Astle > > > Sent: Sunday, September 27, 2015 1:29 AM > > > To: [email protected] <javascript:;> > > > Subject: Parmlib syntax check macro > > > > > > Hi > > > > > > Is there anyone on the list who are using parmlib syntax checker ? > > > Especially a isredit macro freeware ? > > > > > > Is there someone who can share the macro ? > > > > > > Nathan > > > > ---------------------------------------------------------------------- > > For IBM-MAIN subscribe / signoff / archive access instructions, send > > email to [email protected] <javascript:;> with the message: > > INFO IBM-MAIN > > > > ---------------------------------------------------------------------- > For IBM-MAIN subscribe / signoff / archive access instructions, send email to > [email protected] with the message: INFO IBM-MAIN ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
