SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

JES2/3, JCL, utilities.
Post Reply
Aarohi Saxena
Registered Member
Posts: 18
Joined: Sun Mar 02, 2014 1:11 am

SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

Post by Aarohi Saxena »

Hi,

I am executing SRCHFOR in batch but I'm continuously getting the following error:

Code: Select all

SYSTEM COMPLETION CODE=106  REASON CODE=0000000C

Code: Select all

//SEARCH  EXEC PGM=ISRSUPC,            
//            PARM=(SRCHCMP,           
//            'ANYC')                  
//NEWDD  DD DSN=PROD....PROCLIB,    
//          DISP=SHR                   
//OUTDD  DD DSN=....SEARCH.OUT,     
//          DISP=(,CATLG,DELETE),      
//          SPACE=(CYL,(100,100),RLSE) 
//SYSIN  DD *                          
I thought it was space issue as JESMSGLG was shoing

Code: Select all

FAILED BECAUSE INSUFFICIENT STORAGE WAS AVAILABLE.
But upon increasing the the SPACE from SPACE=(CYL,(1,1),RLSE) to SPACE=(CYL,(10,10),RLSE) to SPACE=(CYL,(100,100),RLSE), it still abends with same error. Can someone help please?
nicc
Global Moderator
Global Moderator
Posts: 691
Joined: Wed Apr 23, 2014 8:45 pm

Re: SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

Post by nicc »

Why not look up the system code in the manual? The message has nothing to do with space but storage.
Regards
Nic
enrico-sorichetti
Global Moderator
Global Moderator
Posts: 826
Joined: Wed Sep 11, 2013 3:57 pm

Re: SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

Post by enrico-sorichetti »

googling with SYSTEM COMPLETION CODE 106 REASON CODE 0000000C
returned 1500 hits and the first one ( at least for my browser preferences ) pointed to the relevant IBM manual

if You are not able to search Yourself for such basic information a career shift should be considered 8-)
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort 8-)
Aarohi Saxena
Registered Member
Posts: 18
Joined: Sun Mar 02, 2014 1:11 am

Re: SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

Post by Aarohi Saxena »

Hi Enrico,

I did search for it and increased the space for the job. But it did not work for me.
enrico-sorichetti
Global Moderator
Global Moderator
Posts: 826
Joined: Wed Sep 11, 2013 3:57 pm

Re: SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

Post by enrico-sorichetti »

space
???
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort 8-)
nicc
Global Moderator
Global Moderator
Posts: 691
Joined: Wed Apr 23, 2014 8:45 pm

Re: SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

Post by nicc »

What space? You do not have a space problem. You have not, obviously, read the entry for S106 in the System Codes manual.
Regards
Nic
User avatar
Robert Sample
Global Moderator
Global Moderator
Posts: 1895
Joined: Fri Jun 28, 2013 1:22 am
Location: Dubuque Iowa
United States of America

Re: SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

Post by Robert Sample »

I did search for it and increased the space for the job. But it did not work for me.
Are you even bothering to read the responses on this forum? For an S106 ABEND, you must increase the REGION parameter for your job -- either by changing the JOB REGION parameter or by adding it to your EXEC statement (and you may need to consult your site support group to know which to change). You can change all the DD SPACE parameters all you want and you will not change the S106 ABEND in any way.
Aarohi Saxena
Registered Member
Posts: 18
Joined: Sun Mar 02, 2014 1:11 am

Re: SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

Post by Aarohi Saxena »

Thanks Robert. Just after my previous reply I got to see a link which said about that it's about REGION. I was using REGION=4K in my job card, changed it to 1M and it worked for me.

Thank you so much everybody! :)
Aarohi Saxena
Registered Member
Posts: 18
Joined: Sun Mar 02, 2014 1:11 am

Re: SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

Post by Aarohi Saxena »

I confused storage with SPACE. :oops:
User avatar
Robert Sample
Global Moderator
Global Moderator
Posts: 1895
Joined: Fri Jun 28, 2013 1:22 am
Location: Dubuque Iowa
United States of America

Re: SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

Post by Robert Sample »

I confused storage with SPACE.
Terminology is CRITICAL in IT, where similar terms may mean very different things. If you confuse terms, you will definitely have problems resolving issues.
Aarohi Saxena
Registered Member
Posts: 18
Joined: Sun Mar 02, 2014 1:11 am

Re: SYSTEM COMPLETION CODE=106 REASON CODE=0000000C.

Post by Aarohi Saxena »

Yes, right Robert. Thanks! :)
Post Reply

Create an account or sign in to join the discussion

You need to be a member in order to post a reply

Create an account

Not a member? register to join our community
Members can start their own topics & subscribe to topics
It’s free and only takes a minute

Register

Sign in

Return to “JCL - Job Control Language.”