As mentioned earlier, it is not possible at present to select only a single JCL-type member by name for a backup process, and therefore, you should backup all members of a particular Group, or just backup all groups. Here is a sample jobstep to do this:
//*
//JCL JCLLIB ORDER=(Your-CA-Datacom.CUSPROC)
//*
//DQLIBMT EXEC PGM=DQLIBRMT,REGION=0M
// INCLUDE MEMBER=B15STLIB
// INCLUDE MEMBER=B15DDOUT
//DQBKPFIL DD DISP=(,CATLG,DELETE),DSN=Your-BACKUP-File-Name,
// UNIT=3390,MGMTCLAS=TSO,STORCLAS=TSO,
// SPACE=(CYL,(10,1),RLSE)
//SYSIN DD *
SIGN/ON DATACOM-INSTALL PASSWORD NEWUSER
REPORT....TITLE=DIRECTORY (NB: Replace periods with spaces)
BACKUP....GROUPS=ALL (NB: Replace periods with spaces)
/*
Then, on the target system, to restore the single member, you would use something like this jobstep. Be sure to replace
uuuuuuuuuu with the CA Dataquery user that is the owner of the member, and
mmmmmmmmmm with the actual member name to be loaded:
//*
//JCL JCLLIB ORDER=(Your-CA-Datacom.CUSPROC)
//*
//DQLIBMT EXEC PGM=DQLIBRMT,REGION=0M
// INCLUDE MEMBER=B15STLIB
// INCLUDE MEMBER=B15DDOUT
//DQBKPFIL DD DISP=SHR,DSN=Your-BACKUP-File-Name
//SYSIN DD *
SIGN/ON DATACOM-INSTALL PASSWORD NEWUSER
RESTORE...NAME=uuuuuuuuuu,MEMBER=mmmmmmmmmm (NB: Replace periods with spaces)
REPORT....TITLE=DIRECTORY (NB: Replace periods with spaces)
/*
After the Restore has completed, be sure to review the DIRECTORY Report to see that your member is now there.