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

Reply via email to