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

EMPTY FILE - JOB ABENDS


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

New User


Joined: 22 Apr 2008
Posts: 42
Location: coimbatore

PostPosted: Fri Jul 25, 2014 1:42 am
Reply with quote

The input file is empty and the job abends.I want to give a different rc and doesnt want by job to abend.

Can someone help me

IDCAMS SYSTEM SERVICES

PRINT INFILE(INDD) COUNT(1)
IDCAMS SYSTEM SERVICES
LISTING OF DATA SET -TSOCDAV.SPS261DP.R030.NEWACTY
IDC11462I REQUESTED RANGE END BEYOND END OF DATA SET.
IDC0005I NUMBER OF RECORDS PROCESSED WAS 0
IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 4
IDCAMS SYSTEM SERVICES

IF LASTCC NE 0 THEN SET LASTCC=1

IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 4

Thanks!!
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Fri Jul 25, 2014 1:48 am
Reply with quote

There's nothing obvious that would cause the job to abend (unless, like so many software engineers, you are misusing "abend" to mean "unexpected result"). Show the JCL enclosed in Code tags.
Back to top
View user's profile Send private message
d_sarlie

New User


Joined: 22 Apr 2008
Posts: 42
Location: coimbatore

PostPosted: Fri Jul 25, 2014 2:02 am
Reply with quote

Sysin:

PRINT INFILE(INDD) COUNT(1)
IF LASTCC NE 0 THEN SET LASTCC=1

JCL:


//R030G EXEC PGM=CONDCODE,PARM=IDCAMS,COND=(0,NE)
//SYSPRINT DD SYSOUT=*
//INDD DD DSN=JUY.UI,
// DISP=SHR
//SYSIN DD DSN=XXX.HJ(MY),
// DISP=SHR
//SYSOUT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=A
//CEEDUMP DD SYSOUT=A
//
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Fri Jul 25, 2014 2:18 am
Reply with quote

Sample to set the rc = 2 for Empty File:

Code:
//STEP010I EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//IN         DD DISP=SHR,DSN=MY DATASET
//SYSIN    DD *
  PRINT INFILE(IN) COUNT(1)
  IF LASTCC = 4 THEN
    DO
       SET MAXCC = 2
    END
Back to top
View user's profile Send private message
steve-myers

Active Member


Joined: 30 Nov 2013
Posts: 917
Location: The Universe

PostPosted: Fri Jul 25, 2014 7:08 am
Reply with quote

You are actually running a program called CONDCODE. It appears CONDCODE runs the program specified in the PARM as a subroutine. When the program returns to CONDCODE, and the return code is non-zero, CONDCODE ABENDs. You can cure the ABEND by running IDCAMS directly (e.g., EXEC PGM=IDCAMS).
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 Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top