Hi All,
Can Anyone suggest me how to get the information about the migrated datasets without recalling the datasets to SYSDA?
The fact you're getting a RACF error on your HLIST indicates, to me, that most likely you did not provide a fully-qualified data set name. If your user id is ABCD and you want the output in HLIST.OUTPUT.DATA, you must specify ODS(ABCD.HLIST.OUTPUT.DATA) -- if you gave ODS(HLIST.OUTPUT.DATA), the system will attempt to catalog a data set under the HLIST high level qualifier and that can easily cause a RACF error.3.25.3.8 OUTDATASET | SYSOUT | TERMINAL: Specifying the Location of Output for the List
Explanation: OUTDATASET | SYSOUT | TERMINAL are mutually exclusive, optional parameters specifying the output location for the list.
OUTDATASET(dsname) specifies the name of the data set where DFSMShsm is to write the output data. For dsname, substitute the fully qualified name of the data set to receive the LIST command output.
If the data set does not exist, DFSMShsm dynamically allocates and catalogs an output data set with the following characteristics:
Data set name specified (dsname)
Record format of fixed-blocked with ANSI control characters (FBA)
Logical record length of 121
Data set is system reblockable
Primary allocation of 20 tracks (see third note)
Secondary allocation of 50 tracks (see third note)
Unit of SYSALLDA (see third note)
If the data set already exists, DFSMShsm will use the data set. The data set must have the following characteristics:
The data set must be cataloged and on DASD.
The data set record format must be FBA, and the logical record length must be 121.
The data set must be system reblockable.
The user chooses the primary space allocation.
DFSMShsm uses a secondary space allocation of 50 tracks, if DFSMShsm needs additional extents after the primary space allocation. (See third note.)
If the data set does not contain data, DFSMShsm starts writing output data at the beginning of the data set.
If the data set contains data, DFSMShsm writes the output data after the existing data.
Return to All other Mainframe Topics