CICS START UP



Support for CICS/ESA, CICS/TS & Transaction Gateway, CICS Configuration Manager and CICS Performance Analyzer

CICS START UP

Postby pram48 » Sun Oct 14, 2012 10:48 am

While starting a cics job by issuing system commands in TSO,I get an error saying "IEE132I-START COMMAND DEVICE ALLOCATION ERROR..I looked at the user log..it is giving the following..


$HASP395 BPXAS ENDED
IEA989I SLIP TRAP ID=X33E MATCHED. JOBNAME=*UNAVAIL, ASID=0078.
$HASP250 BPXAS PURGED -- (JOB KEY WAS CA50CA91)
IKJ56245I DATA SET SYS1.DUMP.D120925.T113605.ZTT1.S05089 NOT ALLOCATED,
NOT ENOUGH SPACE ON VOLUMES+
IKJ56245I USE DELETE COMMAND TO DELETE UNUSED DATA SETS
IEA799I AUTOMATIC ALLOCATION OF SVC DUMP DATASET FAILED 559
DUMPID=004 REQUESTED BY JOB (ZCON001 )
DYNALLOC FAILED RETURN CODE=04 ERROR RSN CODE=4714 INFO RSN CODE=041D
SMS RSN CODE=0000
IKJ56245I DATA SET SYS1.DUMP.D120925.T082621.ZTT1.S05090 NOT ALLOCATED,
NOT ENOUGH SPACE ON VOLUMES+
IKJ56245I USE DELETE COMMAND TO DELETE UNUSED DATA SETS
IEA799I AUTOMATIC ALLOCATION OF SVC DUMP DATASET FAILED 562





***further it is pointing that "INVALID DATA HAS BEEN DETECTED FOR SIT OVERRIDE CICSSVC= "
Can you guys please help?I m beginner in mainframe & I'm supposed to perform some task..
pram48
 
Posts: 11
Joined: Sun Oct 14, 2012 10:06 am
Has thanked: 1 time
Been thanked: 0 time

Re: CICS START UP

Postby Robert Sample » Sun Oct 14, 2012 6:19 pm

First, this is NOT a beginner's question -- if you are a beginner and attempting to use CICS as a started task, then you are in WAY over your head already.

I suspect that this
"INVALID DATA HAS BEEN DETECTED FOR SIT OVERRIDE CICSSVC= "
means your started task specified an SVC number that does not match what the system has defined. The default type 3 SVC for CICS is 236, but that can be changed at your site and there is no way that anybody at this forum could possibly tell you what that value should be since we do not work at your site.

Bottom line: unless you talk to the site support group and get the correct SVC number to use in the override, you will not be able to resolve this issue.
Robert Sample
Global moderator
 
Posts: 3719
Joined: Sat Dec 19, 2009 8:32 pm
Location: Dubuque, Iowa, USA
Has thanked: 1 time
Been thanked: 279 times

Re: CICS START UP

Postby pram48 » Sun Oct 14, 2012 10:53 pm

Thanks & regards..yes,its not a beginners qs I agree..for learning systems programming,I have been given a task to create a cics region as an stc..Now,I am supposed to copy CICS start up members given a dataset & run them..after that I am told to issue the initial start system command.And thats when the log in the sdsf shows that thing..

----PAGING COUNTS---
-JOBNAME STEPNAME PROCSTEP RC EXCP CPU SRB CLOCK SERV PG
PAGE SWAP VIO SWAPS STEPNO
-ZCON306 ZCON306 CICS FLUSH 0 .00 .00 .00 0 0
0 0 0 0 1
IEF453I ZCON306 - JOB FAILED - JCL ERROR - TIME=17.10.37
-ZCON306 ENDED. NAME- TOTAL CPU TIME= .00 TOTAL
ELAPSED TIME= .00
-NOT_EXECUTED_STEP_TABLE BEGIN
-JOBNAME STEPNAME PROCSTEP STEPNO
-ZCON306 ZCON306 CICS 1
-NOT_EXECUTED_STEP_TABLE END
$HASP395 ZCON306 ENDED
IEE132I START COMMAND DEVICE ALLOCATION ERROR
IEA989I SLIP TRAP ID=X33E MATCHED. JOBNAME=*UNAVAIL, ASID=0077.
INVALID DATA HAS BEEN DETECTED FOR SIT OVERRIDE CICSSVC= . RESPEC

one of the members ,the system definition datasets is shown below:

//DFHCSD EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=A
//AMSDUMP DD SYSOUT=A
//SYSIN DD *
DEFINE CLUSTER (NAME(ZCON306.CICS660.DFHCSD) -
INDEXED -
VOLUMES(volid) -
CYL(2,1) -
KEYS(22 0) -
RECORDSIZE(200 2000) -
FREESPACE(5 5) -
SHAREOPTIONS(2) -
BWO(NO)
) -
INDEX (NAME(ZCON306.CICS660.DFHCSD.INDEX) -
) -
DATA (NAME(ZCON306.CICS660.DFHCSD.DATA) -
)
//*------------------------------------------------------------------
//* Initialise DFHCSD
//*------------------------------------------------------------------
//INITCSD EXEC PGM=DFHCSDUP,COND=(0,GT)
//STEPLIB DD DSN=CICSTS.CICS660.SDFHLOAD,DISP=SHR
// DD DSN=CICSTS.CICS660.SDFHWSLD,DISP=SHR
//DFHCSD DD DSN=ZCON306.CICS660.DFHCSD,DISP=SHR,
// AMP='BUFNI=10,BUFND=10'
//SYSUT1 DD UNIT=SYSDA,SPACE=(1024,(100,10))
//SYSPRINT DD SYSOUT=A
//SYSUDUMP DD SYSOUT=A
//SYSIN DD *
INITIALIZE
// DD DSN=CEE.SCEESAMP(CEECCSD),DISP=SHR
**************************** Bottom of Data ****************************

The system dump dataset is shown below:

//DFHDUMP EXEC PGM=IEFBR14
//DFHDMPA DD DSN=ZCON306.CICS660.DFHDMPA,
// DISP=(NEW,CATLG,DELETE),
// BLKSIZE=4096,RECFM=F,LRECL=4096,
// SPACE=(CYL,(5,5))
//DFHDMPB DD DSN=ZCON306.CICS660.DFHDMPB,
// DISP=(NEW,CATLG,DELETE),
// BLKSIZE=4096,RECFM=F,LRECL=4096,
// SPACE=(CYL,(5,5))
//DFHAUXT DD DSN=ZCON306.CICS660.DFHAUXT,
// DISP=(NEW,CATLG,DELETE),
// BLKSIZE=4096,RECFM=F,LRECL=4096,
// SPACE=(CYL,(5,5))
//DFHBUXT DD DSN=ZCON306.CICS660.DFHBUXT,
// DISP=(NEW,CATLG,DELETE),
// BLKSIZE=4096,RECFM=F,LRECL=4096,
// SPACE=(CYL,(5,5))


I tried changing the cics svc no from 216 to 236..But it is still giving the same SIT error..would u please help me? regards..
I tried to provide the details..
pram48
 
Posts: 11
Joined: Sun Oct 14, 2012 10:06 am
Has thanked: 1 time
Been thanked: 0 time

Re: CICS START UP

Postby enrico-sorichetti » Sun Oct 14, 2012 11:20 pm

I tried changing the cics svc no from 216 to 236..But it is still giving the same SIT error..would u please help me? regards..
I tried to provide the details..


unfortunately the only people that can help are those from Your support group,
they know the overall setup of the CICS installation, WE DO NOT

anyway there is no reason to change the SVC number , unless You are told so by Your support !
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
enrico-sorichetti
Global moderator
 
Posts: 2994
Joined: Fri Apr 18, 2008 11:25 pm
Has thanked: 0 time
Been thanked: 164 times

Re: CICS START UP

Postby pram48 » Sun Oct 14, 2012 11:41 pm

This is part of a contest & they are not going to help me..I tried many ways to fix this..Really need yor help..If you please tell d regions from which errors may generate..
pram48
 
Posts: 11
Joined: Sun Oct 14, 2012 10:06 am
Has thanked: 1 time
Been thanked: 0 time

Re: CICS START UP

Postby Robert Sample » Sun Oct 14, 2012 11:54 pm

The JCL you have posted is useless. We did not ask to see how you defined the CSD file, nor how you have the dump data sets allocated, we asked to see the JCL you are starting to execute CICS, and the job output from the started task when it fails.

These users thanked the author Robert Sample for the post:
pram48 (Mon Oct 15, 2012 12:11 am)
Robert Sample
Global moderator
 
Posts: 3719
Joined: Sat Dec 19, 2009 8:32 pm
Location: Dubuque, Iowa, USA
Has thanked: 1 time
Been thanked: 279 times

Re: CICS START UP

Postby enrico-sorichetti » Mon Oct 15, 2012 12:24 am

This is part of a contest & they are not going to help me..

did You ever hear about fair play ?
looks like You are going to lose :mrgreen:
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
enrico-sorichetti
Global moderator
 
Posts: 2994
Joined: Fri Apr 18, 2008 11:25 pm
Has thanked: 0 time
Been thanked: 164 times

Re: CICS START UP

Postby pram48 » Mon Oct 15, 2012 12:33 am

I executed the start up for cics using system commands..the o/p of the system log is shown before..This is the system initialization table:
********************************************************************
GMTEXT='WELCOME TO CICS/TS 4.1'
SEC=YES,
CICSSVC=216,
EDSALIM=500M,
GRPLIST=(*FHLIST),
SRT=1$
FCT=NO
CSDRECOV=ALL
GMTRAN=CESN,
CSDBKUP=DYNAMIC
DUMPDS=AUTO
DFLTUSER=STC,
XUSER=NO,
USSHOME=/usr/lpp/cicsts/cicsts.v4r1
.END

I am defining some jobs in my cics region & running them..Afterwards,trying to start the cics region by issuing '/S MYID,START=INITIAL' ..o/p of the system commands is in system log which I posted before..Regards..
pram48
 
Posts: 11
Joined: Sun Oct 14, 2012 10:06 am
Has thanked: 1 time
Been thanked: 0 time

Re: CICS START UP

Postby pram48 » Mon Oct 15, 2012 12:36 am

As I told ,I am beginner & finding great interest in this computing system..learning from the mistakes will make the concepts clear,I guess..
pram48
 
Posts: 11
Joined: Sun Oct 14, 2012 10:06 am
Has thanked: 1 time
Been thanked: 0 time

Re: CICS START UP

Postby Robert Sample » Mon Oct 15, 2012 6:08 am

When you issue a START console command like S MYID,START=INITIAL (the S means START in your command) you are invoking a system routine named MYID, which resides in a JCL library defined to the system (such as SYS1.PROCLIB, SYSA.TEST.PROCLIB, or whatever. The message in your original post indicates that there is a problem with that JCL. What that problem is, and how to resolve it, cannot be said without further information which does not appear to be forthcoming.

And since it is a contest, I leave you to your own devices from this point forward. Good luck in figuring out your problem.
Robert Sample
Global moderator
 
Posts: 3719
Joined: Sat Dec 19, 2009 8:32 pm
Location: Dubuque, Iowa, USA
Has thanked: 1 time
Been thanked: 279 times

Next

Return to CICS

 


  • Related topics
    Replies
    Views
    Last post