CICS transaction SYSV changing 132x60 display resolution size
search cancel

CICS transaction SYSV changing 132x60 display resolution size

book

Article ID: 136907

calendar_today

Updated On:

Products

SYSVIEW Performance Management

Issue/Introduction

Is it possible to change the resolution/screen size in the CICS transaction from 80x24 to a higher one?
 

Resolution

Yes this is possible.  

 

It is really nothing specific to SYSVIEW, it should be similar for any CICS transaction.  

 

Portion of CNM4BSAM(CICSCSD) which is used at install time to add SYSVIEW tranid/program definitions to CICS:

 

* The transaction definition for SYSV specifies the PROFILE *

* GSVXALTS. This profile allows the SYSV transaction to run *

* as the alternate screen size. *

* *

* If you do not want the SYSV transaction to run as an *

* alternate screensize, remove the "PROFILE(GSVXALTS)" *

* parameter. *

* *

* Multiple transactions can be defined to run the GSVXCICS *

* program. One for primary and one for alternate screen sizes. *

* *

*=====================================================================*

*

* Define Profiles

*

  DEFINE PROFILE(GSVXALTS)

         SCRNSIZE(ALTERNATE)

         UCTRAN(NO)

         GROUP(SYSVIEW)

*

* Define transactions

*

  DEFINE TRANSACTION(SYSV)

         ALIAS(sysv)

         PROGRAM(GSVXCICS)

         PRIORITY(250)

         SPURGE(YES)

         TPURGE(YES)

         RUNAWAY(0)

         TASKDATAKEY(CICS)

         TASKDATALOC(BELOW)

         PROFILE(GSVXALTS)

         GROUP(SYSVIEW)                                                

 

 

Additional Information

There is additional info in the CICS doc for the DEFINE PROFILE SCRNSIZE parm in IBM's DFHA4 Attributes documentation.