On Thu, 31 May 2007 14:59:41 -0500, Peter Ten Eyck
<[EMAIL PROTECTED]> wrote:

>The following job gets the following result? Dynamic allocation error?
>
>The job ...
>
>//TSIDCEXP JOB CLASS=S
>// EXEC PGM=IDCAMS
>//IN5 DD DISP=SHR,DSN=SYS1.DFSMS.SCDS,
>// UNIT=DISK,VOL=SER=Z14CT1
>//OUT5 DD DISP=(,KEEP),DSN=TECH.SYS1.DFSMS.SCDS.BKUP,
>// UNIT=DISK,VOL=SER=Z17ISV,DCB=BLKSIZE=27998,SPACE=(TRK,
>100,5),RLSE)
>//SYSPRINT DD SYSOUT=*
>//SYSIN DD *
> EXPORT INFILE(IN5) OFILE(OUT5) TEMP
>/*
>//
>
>The result...
>
>  EXPORT INFILE(IN5) OFILE(OUT5) TEMP
> IKJ56228I DATA SET INFILE NOT IN CATALOG OR CATALOG CAN NOT BE
>ACCESSED
> IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12
>
> IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS
>12
>
>The message...
>
>   IKJ56228I DATA SET dsname NOT IN CATALOG or CATALOG CANNOT BE
>ACCESSED
>
>Explanation: DISP=OLD was specified. The dynamic allocation error code is
>1708, 5708, or 5710. For a description of the dynamic allocation return,
>informational, and error codes, refer to z/OS MVS Programming: Authorized
>Assembler Services Guide.
>
>Some details...
>
>SYS1.DFSMS.SCDS is cataloged in the master catalog CATALOG.ZOS.V14CT1
>on Z14CT1
>

Is CATALOG.ZOS.V14CT1 the master catalog of the system you are running
this from?  If so, why use UNIT and VOLSER?  If not, then that is your 
problem since you can't access an uncataloged VSAM data set by
using unit and volser.  However, you can define an SSA and use
DEFINE PATH to access the data set via alias.  Or if you are on a 
system that supports JOBCAT/STEPCAT still, you can try that.

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group:  G-ITO
mailto:[EMAIL PROTECTED]
z/OS and OS390 expert at http://searchDataCenter.com/ateExperts/
Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to