SYSVIEW Performance Management

 View Only
Expand all | Collapse all

Is it possible to export the information contained in the CTRANLOG screen?

  • 1.  Is it possible to export the information contained in the CTRANLOG screen?

    Posted Jan 10, 2019 07:00 AM

    I need the information for each transaction executed in a CICS. I'm trying to build a JCL based on REPORT WRITER, but I wanted to know if you have a simpler way to export this information, as I have to show this information as soon as possible.



  • 2.  Re: Is it possible to export the information contained in the CTRANLOG screen?
    Best Answer

    Broadcom Employee
    Posted Jan 10, 2019 07:40 AM

    Hi Francisco,

     

    besides the Report Writer there is also another batch interface with CA Sysview. 

     

    Check the manual at this url :

    Use the Batch Interface - CA SYSVIEW® Performance Management - 15.0 - CA Technologies Documentation 

     

    At the SYSIN DD statement in the JCL you can specify :

     

    //STEP1 EXEC PGM=GSVXBAT,PARM='LINECNT=66,SHOWINP=NO'
    //SYSPRINT DD SYSOUT=*,DCB=(LRECL=81,BLKSIZE=8100,RECFM=FBA)
    //SYSIN DD *
    COMMAND=(CTRANLOG)                1. ISSUE CTRANLOG COMMAND
    COMMAND=(SELECT TASK# EQ 2311)    2. FILTER ON TASK#
    DATA=(1,S),                       3. SELECT TASK INFORMATION LINE AND.. X
    DATA=(2,S),DATA=(3,S)             4. SELECT NEXT TWO TASKS
    COMMAND=RETURN                    5. RETURN FOR CTRANLOG SCREEN
    COMMAND=RETURN                    6. RETURN FOR CTRANLOG SCREEN
    COMMAND=RETURN                    7. RETURN FOR CTRANLOG SCREEN
    SCROLL
    COMMAND=(END)                      END THE BATCH SESSION
    /*

     

    See above sample with even a selection of a task# included... 

     

    Best regards,

    Hennie Hermans

    CA Technologies, A BROADCOM Company