IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Issue with repro


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
arvind.m

Active User


Joined: 28 Aug 2008
Posts: 205
Location: Hyderabad

PostPosted: Fri Nov 13, 2009 11:51 am
Reply with quote

Hi

i was trying to do Repro as below:
Code:

//JS10     EXEC PGM=IDCAMS,REGION=4M                     
//DD01     DD  *                                         
CPC II                                                   
//DD01O    DD  DISP=(,CATLG,DELETE),                     
//             DSN=DPSDSNG.AP.LOADPARM,                 
//             UNIT=3390,SPACE=(TRK,1,RLSE)             
//*                                                     
//*                                                     
//DD02     DD  DISP=SHR,DSN=DPSDSNG.XXX.TEST(+0)             
//DD02O    DD  DISP=(,CATLG,DELETE),                     
//             DSN=DPSDSNG.XXX.TEST,                     
//             UNIT=3390,SPACE=(TRK,(3900,900),RLSE)     
//SYSOUT   DD  SYSOUT=*                                 
//SYSLIST  DD  SYSOUT=*                                 
//SYSTOTAL DD  SYSOUT=*                                 
//SYSPRINT DD  SYSOUT=*                                 
//SYSIN    DD  *                                         
  REPRO INFILE(DD01) OUTFILE(DD01O)                     
  REPRO INFILE(DD02) OUTFILE(DD02O)                     
//* 

and i am getting the cond code of 12


Code:

IDCAMS  SYSTEM SERVICES                                           T
                                                                   
  REPRO INFILE(DD01) OUTFILE(DD01O)                               
IDC3300I  ERROR OPENING DPSDSNG.AP.LOADPARM                       
IDC3321I ** OPEN/CLOSE/EOV ABEND EXIT TAKEN                       
IDC0005I NUMBER OF RECORDS PROCESSED WAS 0                         
IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12                 
                                                                   
  REPRO INFILE(DD02) OUTFILE(DD02O)                               
IDC3300I  ERROR OPENING DPSDSNG.AP.TEST                           
IDC3321I ** OPEN/CLOSE/EOV ABEND EXIT TAKEN                       
IDC0005I NUMBER OF RECORDS PROCESSED WAS 0                         
IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12                 
                                                                   
IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 12


can anyone help with this issue.

thanks,
Back to top
View user's profile Send private message
arvind.m

Active User


Joined: 28 Aug 2008
Posts: 205
Location: Hyderabad

PostPosted: Fri Nov 13, 2009 11:52 am
Reply with quote

Code:

IDC3321I ** OPEN/CLOSE/EOV ABEND EXIT TAKEN                                 
                                                                             
Explanation:  The OPEN/CLOSE/EOV SVC routines detected an error, and an     
ABEND message has been written to the system output data set.               
                                                                             
System Action:  The system ends the command.                                 
                                                                             
Application Programmer Response:  Check the write-to-programmer (WTP)       
message written by the OPEN/CLOSE routine.  Correct the error. Submit the   
job again.                                                                   
                                                                             
System Programmer Response:  If the error recurs and the program is not in   
error, look at the messages in the job log for more information. Search     
problem reporting data bases for a fix for the problem. If no fix exists,   
contact the IBM Support Center. Provide the JCL and the SYSOUT output for   
the job.                                                                     
                                                                             
Source: DFSMSdfp           
                           
Detecting Module:  IDCIO02
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Fri Nov 13, 2009 12:25 pm
Reply with quote

1) You have not specified any RECFM LRECL data for the output datasets

2) DD2O you are using the GDG base, should it not have GDG base(+1)
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts Issue after ISPF copy to Linklist Lib... TSO/ISPF 1
No new posts Facing ABM3 issue! CICS 3
No new posts Panvalet - 9 Character name - Issue c... CA Products 6
No new posts Issue with EXEC CICS QUERY SECURITY c... CICS 6
Search our Forums:

Back to Top