Problem:
I want to de-activate an Exit for testing purposes. I entered:
cha exits sevpost(exitname)
However the exit was still active.
Resolution:
This sequence should de-activate the Exit (in this example, the SEVPOPST Exit):
ACF
SET CONTROL(GSO)
CHANGE EXITS SEVPOST()
F ACF2,REFRESH(EXITS)
END
There is no need to remove the program from LPA.
If you want to re-activate the Exit after your test, issue the following commands:
ACF
SET CONTROL(GSO)
CHANGE EXITS SEVPOST(xxxxxxxx)
F ACF2,REFRESH(EXITS)
END