1

We can edit a JCL file in ISPF when we open a file in edit mode. Is is possible to edit a file in view mode ?

dsolimano
  • 8,272
  • 3
  • 45
  • 61
Goyal
  • 11
  • 2

1 Answers1

6

View is basically Edit with out the save command.

You can still use Replace command to over right a dataset/member with what you are editing (provided you have access and you are viewing an actual Dataset). You may need to put c9999 in the line-number on the first line of the File.

Alternatively you could:

  1. Use the Cut command (put c9999 in the line-number on the first line)
  2. enter the edit command
  3. delete the contents
  4. do a paste
  5. save and exit
  6. exit view

Why not simply edit the JCL in the first place ???

Bruce Martin
  • 9,845
  • 1
  • 24
  • 36