Reputation: 1
I am trying to print the contents of a ca-datacom sequential file by using IDCAMS/REPRO, but was getting the below error.
IDC3300I ERROR OPENING TEST001
IDC3318I ** INVALID DATA SET SPECIFICATION
IDC0005I NUMBER OF RECORDS PROCESSED WAS 0
IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12
Below is z/vse job, could any one help
* $$ JOB JNM=TESTING,USER='TEST ',CLASS=0,PRI=3,DISP=D
* $$ PRT CLASS=L
* $$ LST CLASS=L
// JOB TEST
* $$ SLI J.UCATT1
// DLBL TEST001,'TEST.DAT',1,SD
// EXTENT SYS067,TEST02,,,1,70
// EXEC IDCAMS,SIZE=AUTO
PRINT INFILE (TEST001) CHAR
/*
/&
* $$ EOJ
Can any one please help, Also can any one provide me a sample job to copy sequential file to VSAM file by IDCAMS/REPRO in z/vse with file parameters. i know how IDCAMS work in Z/OS but not sure hoe to do it in z/vse
Upvotes: -1
Views: 899
Reputation: 1
You mention that you are "trying to print the contents of a ca-datacom sequential file", but CA Datacom does not reside in sequential files. If you are trying to print data from CA Datacom tables then that can be achieved using either CA DataQuery or the DBSQLPR program in CA Datacom/SQL. If your site does not have either of those optional components, then you could use the CA Datacom Reporting Facility (also known as DataReporter or DRREPORT) which is delivered as part of the CA Datacom/DB base products in both z/VSE and z/OS.
Upvotes: 0