IBM0569S
ONCODE=oncode-value The assigned EVENT variable was already active and was used with entry entry-name.

Explanation

An active event variable was specified as the target of an event variable assignment.
DCL (E,E1) EVENT;
CALL P EVENT(E);
E=E1;
P:  PROC;
END;
ONCODEs associated with this message are:
  • 3906 - event assignment
  • 3907 - event variable is active

System action

The ERROR condition is raised.

Programmer response

Either use another inactive event variable, or include a WAIT statement to ensure that this statement is not run until the active event is complete.

Symbolic Feedback Code

IBM0HP