I was asked this question and thought it deserved a broader audience.
Using ISPF Edit the CREATE command can create another member or dataset.
How can I create multiple members using the ISPF EDit CREATE command?
I was asked this question and thought it deserved a broader audience.
Using ISPF Edit the CREATE command can create another member or dataset.
How can I create multiple members using the ISPF EDit CREATE command?
Copyright © 2021 Jogjafile Inc.
ISPF Edit Create can only create one member or dataset or file at a time.
But you can create an ISPF Edit Macro, which becomes and ISPF Edit command, to do this:
This is sample code to generate 3 new members based on the contents of the member being generated:
The 1st line in the macro tells ISPF Edit that it is written in rexx.
The 2nd line sets up the environment to the ISPF Edit environment.
The 3rd line tells ISPF Edit that this is an Edit Macro.
The 4th to 6th lines using the ISPF Edit Create command to create members A, B, and C copying from the 1st record (.zfirst) to the last record (.zlast).
hope this helps