+ 1 for the suggestion to use z/OSMF to list products installed, once the CSI's are defined to the software management it queries the CSI and list all the currently installed products

Carmen

On 6/17/2021 9:24 AM, Kurt Quackenbush wrote:
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


--
*Carmen Vitullo*

/“I am not bound to win, but I am bound to be true. I am not bound to succeed, but I am bound to live up to what light I have.” ― Abraham Lincoln/


----------------------------------------------------------------------
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