CHANGE PROCESS Command Examples

The following CHANGE PROCESS command places the Processes named PAYROLL and BILLING in the hold queue:

CH PROC  WHERE ( -
				 PNAME=(PAYROLL, BILLING)) -
				 HOLD=Y

In the following example, the Process named PAYROLL is changed so that the new destination node is DALLAS1 and the Process executes every Friday:

CH PROC  WHERE (PNAME=PAYROLL) -
				 DEST=DALLAS1 -
				 RETAIN=Y -
				 STARTT=(FR)

In the following example, the Process called PAYROLL with the Process number of 60584 has the RETAIN status changed so that the Process is deleted after execution:

CH PROC  WHERE (PNUM=60584, PNAME=PAYROLL) -
				 RELEASE -
				 RETAIN=N