My requirement is to take a backup of all contents under my qualifier
say --> XXXXXXXX.COB.**
Like --> TEMP.XXXXXXXX.COB.**
Tried to do it with ADRDSSU
//STEP1 EXEC PGM=ADRDSSU
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
COPY DATASET(INCLUDE(XXXXXXXX.COB.**)) -
RENAMEU(TEMP)
/*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
COPY DATASET(INCLUDE(XXXXXXXX.COB.**)) -
RENAMEU(TEMP)
/*
While doing that first qualifier alone gets renamed. I need to change first qualifiers with "TEMP.XXXXXXXX".
Any one can help me in achieving this? Do we have any other utility to do this?