Datacom

 View Only

Tech Tip: CA Datacom/DB - CA Sysview - Using LMID command in batch

  • 1.  Tech Tip: CA Datacom/DB - CA Sysview - Using LMID command in batch

    Broadcom Employee
    Posted May 02, 2017 08:48 AM

    Tech Tip from Umberto Comotti, Principal Support Engineer for May 2, 2017

     

    A previous discussion (Tech Tip: CA Datacom/DB - CA Sysview - LMID command) on this Community space explained how to use the CA Sysview LMID online command in order to determine the maintenance levels (RMID) for all the modules on a load library.

    The same result can be achieved in batch, using a JCL like the following one:
    //GSVXBAT1 EXEC PGM=GSVXBAT,PARM='LINECNT=66,SHOWINP=YES'
    //SYSPRINT DD SYSOUT=*
    //SYSIN DD *
    COMMAND=(LISTDIR CA.DB140.CABDLOAD,,,M)
    SCROLL
    COMMAND=(LISTDIR CA.DB150.CABDLOAD,,,M)
    SCROLL
    COMMAND=END
    /*

     

    This job will generate a report containing detailed info about the load modules on the libraries; among them, the Release and the FixLevel (i.e. RMID) for each CSECT on each module.