this is my jcl:
//*
//REPLACE EXEC PGM=IKJEFT01
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
EDIT 'PRIVATE.PROCLIB(MYMEM)' DATA NONUM ASIS
TOP
CHANGE * 999 /=GOODBOY/=GOODGIRL/
TOP
LIST * 999
END SAVE
/*
//*
----------------------------------------
this is result:
END SAVE
DATA SET 'PRIVATE.PROCLIB(MYMEM)' ALREADY IN USE, TRY LATER+
DATA SET IS ALLOCATED TO ANOTHER USER OR JOB
END
----------------
in fact, i can see the PSD is modified by LIST * 999 during executing.but save fail
I am sure there is no session taking up the PDS, and I can modify it by 3.4 edit successfully.
what should i do?