z/OS ISPF Edit and Edit Macros
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


CHANGE_COUNTS—Query Change Counts

z/OS ISPF Edit and Edit Macros
SC19-3621-00

The CHANGE_COUNTS assignment statement retrieves values set by the most recently processed CHANGE command and places these values in variables.

Syntax

Read syntax diagramSkip visual syntax diagram
Assignment statement syntax

>>-ISREDIT--(var1,var2)-- = --CHANGE_COUNTS--------------------><

var1
The name of a variable to contain the number of strings changed. It must be an 8-character value that is left-padded with zeros.
var2
The name of a variable to contain the number of strings that could not be changed. It also must be an 8-character value that is left-padded with zeros.

Return codes

0
Normal completion
20
Severe error

Examples

To put the number of changes resulting from the most recent CHANGE command into the variable &CHGED:
ISREDIT (CHGED) = CHANGE_COUNTS
To put the number of change errors into variable &ERRS:
ISREDIT (,ERRS) = CHANGE_COUNTS
To put the number of changes and change errors into variables &CHG and &ERR:
ISREDIT (CHG,ERR) = CHANGE_COUNTS

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014