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)
There is additional info in the CICS doc for the DEFINE PROFILE SCRNSIZE parm in IBM's DFHA4 Attributes documentation.