Create User Command to limit CICS Regions
search cancel

Create User Command to limit CICS Regions

book

Article ID: 144096

calendar_today

Updated On:

Products

SYSVIEW Performance Management NXBRIDGE - SYSVIEW/ENDEVOR

Issue/Introduction

I have tried to create a User command that will limit CICSLIST output from specified LPARS.

 

I have this so far, but it doesn't work properly :-

 

CMD     CICSLIST XSD +

       ;SELECT XSSYSTEM = ESYS or +

       ;SELECT XSSYSTEM = ZSYS or +

       ;SELECT XSSYSTEM = DSYS

 

Can you help in determining where I am going wrong.

 

 

Environment

Release : 16.0

Component : SYSVIEW

Cause

The syntax that was coded had a few extra SELECTs and semi-colons. 

The semi-colon is a command delimiter, so the command being passed to SYSVIEW was "SELECT XSS = ESYS OR" which would be a syntax error.

Resolution

DEFINE CICSEZD

MINLEN *

CMD CICSLIST XSD +

;SELECT XSS = ESYS OR XSS = ZSYS OR XSS = DSYS

Or create a Command Group containing only the SYSTEMS for which they intend to gather CICSLIST information from.