Thank you all,,

Actually all I needed to know is if we have COBOL installed as an MVS newbe if did nor know how to list ALL software products installed. in VSE it's Simple

// EXEC MSHP,SIZE=456k

RETR

/*

/&


And it'done.

we do not have the COBOL compiler  (Does MVS come with COBOL run time mods pre-installed?)

but we have COBOL runtime? (that is what I am trying to find out and if so what version?)


we are running ZOS 1..23


On 6/17/2021 2:18 PM, Seymour J Metz wrote:
Does the OP know what the relevant zones are? Has the installation configured 
z/OSMF to have the relevant global zones? The mechanics are easy once the 
requirements are laid out in detail.

BTW, should the SMP documentation point to, e.g., z/OSMF, for things that SMP 
itself doesn't automate, or would that add too much clutter?


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3

________________________________________
From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Kurt Quackenbush [ku...@us.ibm.com]
Sent: Thursday, June 17, 2021 10:24 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SMPE

On 6/16/2021 11:56 AM, CarlosM wrote:
Would anyone have the JCL/statements necessary to produce a SMPE report
of ALL installed products?
To be sure we're using the same terminology, a "PRODUCT" to SMP/E is a
collection of FEATUREs, and each FEATURE is a collection of FMIDs.  A
PRODUCT is identified by its Product ID and VRM.  For example, z/OS V2.4
has product ID "5650-ZOS" and VRM "2.4.0", which has a bunch of
FEATUREs, like the z/OS Base, and that FEATURE has lots of FMIDs, like
HBB77C0.  Is that the kind of "product" information you're looking for?

Its easy to get a list of FMIDs which are installed in a particular
target zone.  Like this:

//SMPE     EXEC PGM=GIMSMP
//SMPCSI   DD DISP=SHR,DSN=globalZoneCsiName
//SMPOUT   DD SYSOUT=*
//SMPLIST  DD SYSOUT=*
//SMPCNTL  DD *
    SET BDY(targetZoneName).
      LIST FUNCTIONS.
/*

There is no simple SMP/E LIST command to precisely display the installed
PRODUCTs.  You can list the PRODUCTs which have been received, like
this, but not which have been installed into a particular target zone.

//SMPE     EXEC PGM=GIMSMP
//SMPCSI   DD DISP=SHR,DSN=globalZoneCsiName
//SMPOUT   DD SYSOUT=*
//SMPLIST  DD SYSOUT=*
//SMPCNTL  DD *
    SET BDY(GLOBAL).
      LIST PRODUCT FEATURE.
/*

A better approach is to use z/OSMF Software Management.  The Products
page displays exactly which Products, Features, and FMIDs are installed.

Kurt Quackenbush -- IBM, SMP/E Development
Chuck Norris never uses CHECK when he applies PTFs.

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Reply via email to