How to create multiple PDS members under ISPF from the current member?

205 Views Asked by At

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?

1

There are 1 best solutions below

2
On

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:

/* rexx */                
address isredit           
'macro'                   
'create a .zfirst .zlast' 
'create b .zfirst .zlast' 
'create c .zfirst .zlast' 
  1. Put this macro into a member in a library in your SYSEXEC or SYSPROC allocation.
  2. Then edit the member you want copies of
  3. And enter the Edit macro name in the command line

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