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

File does exist and it is showing SOC7 abend


IBM Mainframe Forums -> ABENDS & Debugging
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
saurabhkhandelwal

New User


Joined: 19 Mar 2008
Posts: 14
Location: noida

PostPosted: Wed Mar 19, 2008 11:04 am
Reply with quote

hi..
i am getting an error in which i am not able to open my input file which i am reading in the program and thats why i m not able to send the read data to the output file..i have checked the file status for my input file which is showing as 35,which means the file does not exist, but the file does exist and it is showing SOC7 abend wen i submit my job.
kindly tell me the solution of the above problem at the earliest.
thank you.
Back to top
View user's profile Send private message
radhakrishnan82

Active User


Joined: 31 Mar 2005
Posts: 435
Location: chennai, India

PostPosted: Wed Mar 19, 2008 11:40 am
Reply with quote

would like to know about your jcl. Is it possible for you to print the jcl here?
Back to top
View user's profile Send private message
saurabhkhandelwal

New User


Joined: 19 Mar 2008
Posts: 14
Location: noida

PostPosted: Wed Mar 19, 2008 11:46 am
Reply with quote

radhakrishnan82 wrote:
would like to know about your jcl. Is it possible for you to print the jcl here?


//PROMDATE JOB (UCC7,9999),'TEST FILE FORMAT',CLASS=D,MSGCLASS=8,
// NOTIFY=&SYSUID
//******************************************************************
//*
// SET CVNO=39
// SET DBNAME=LAPNAM1
// INCLUDE MEMBER=CV&CVNO.JOBL
//*
//******************************************************************
//*** THIS STEP WILL DELETE ALL DATASETS OF PREVIOUS RUN
//******************************************************************
//STEP01 EXEC PGM=L3388
//*
// INCLUDE MEMBER=CV&CVNO.STPL
// DD DSN=SYS1.SCEERUN,DISP=SHR
// INCLUDE MEMBER=CV&CVNO.SYSC
//*STEPLIB DD DSN=PB@OPERS.CMNSTG.LAP1.#005151.LOI,DISP=SHR
//SYSUDUMP DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//INFILE DD DSN=TB@CSSVC.PARTS.DI4PARTS.TEST,DISP=SHR
//INFILE DD DUMMY,DCB=(RECFM=F,LRECL=100)
//INVSAM1 DD DSN=LV.CSOSPROM.TEST,DISP=SHR
//OUTFILE DD DSN=TB@CSSVC.PHUDI.PROMDT.TEST9,
// UNIT=DISK,DISP=(NEW,CATLG,DELETE),
// DCB=(RECFM=FB,LRECL=100,BLKSIZE=1000),
// SPACE=(CYL,(10,5),RLSE)
//*
Back to top
View user's profile Send private message
sandy_venkat

New User


Joined: 16 May 2007
Posts: 35
Location: India

PostPosted: Wed Mar 19, 2008 12:00 pm
Reply with quote

Could you please elaborate a bit..

How and where does it show a S0C7 when the system is not able to find the file in the first place??

This is the description i found for the code 35.
-------------------------------------------
Description :

ATEEMPTING TO OPEN AN EMPTY FILE IN INPUT OR I/O MODE. DD NAME IS MISSING OR WRONGLY GIVEN.

Explanation :

An OPEN statement with the INPUT, I-O, or EXTEND phrase was attempted on a non-optional file that was not present.
--------------------------------------------

Chekc your DD statements etc...
Back to top
View user's profile Send private message
advith001

New User


Joined: 16 Mar 2005
Posts: 23

PostPosted: Wed Mar 19, 2008 12:01 pm
Reply with quote

//INFILE DD DSN=TB@CSSVC.PARTS.DI4PARTS.TEST,DISP=SHR
//INFILE DD DUMMY,DCB=(RECFM=F,LRECL=100)


This might be your problem!?

Anna.
Back to top
View user's profile Send private message
radhakrishnan82

Active User


Joined: 31 Mar 2005
Posts: 435
Location: chennai, India

PostPosted: Wed Mar 19, 2008 12:04 pm
Reply with quote

Code:
//SYSUDUMP DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
- should have given duplicate dd. i guess its a typo.
Back to top
View user's profile Send private message
radhakrishnan82

Active User


Joined: 31 Mar 2005
Posts: 435
Location: chennai, India

PostPosted: Wed Mar 19, 2008 12:05 pm
Reply with quote

Rather than searching for file status reason, if you know the displacement number can you go further according to s0c7 resolving procedure and let us know the update.
Back to top
View user's profile Send private message
sandy_venkat

New User


Joined: 16 May 2007
Posts: 35
Location: India

PostPosted: Wed Mar 19, 2008 12:06 pm
Reply with quote

Why does Infile show DUMMY as well??

It shows 'TB@CSSVC.PARTS.DI4PARTS.TEST' and in the next line it shows DD DUMMY as well?? Is that right?

And..is that the file that is not being able to be foind by the system??
Back to top
View user's profile Send private message
saurabhkhandelwal

New User


Joined: 19 Mar 2008
Posts: 14
Location: noida

PostPosted: Wed Mar 19, 2008 12:07 pm
Reply with quote

That is what we are not able to find.wen we submit the job it shows soc7 abend.we have even displayed a message in our cobol prog when we are opening the file. we have set the condition that if the status code is other then 00 then display error.that is why it is showing 35 error code.i know the meaning of it but not able as to how to proceed...
Back to top
View user's profile Send private message
sandy_venkat

New User


Joined: 16 May 2007
Posts: 35
Location: India

PostPosted: Wed Mar 19, 2008 12:28 pm
Reply with quote

then follow the normal method of solving the S0c7 by plugging in display statements in the area where the 0C7 is occuring...Check the offset as radhakrishnan told..

And could you also reply to .... Why does Infile show DUMMY as well??
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Wed Mar 19, 2008 12:39 pm
Reply with quote

sandy_venkat wrote:
Why does Infile show DUMMY as well??
Hi,

This will just show a warning in JCL-syntax check, second DD name will be discarded, so it can not be the reason behind S0C7.


saurabhkhandelwal,

Please post the SYSOUT, use "code" tag while posting. "code" tag is just below the subjet line, when you post a reply.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Mar 19, 2008 7:43 pm
Reply with quote

Hello,

It may be that the code is trying to process even though the 35 error was raised. Make sure the program presents a suitable error message and terminates when an error is detected.

If the vsam file is defined as input or i-o, it must not be empty. How many records are in the file?
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Thu Mar 20, 2008 2:10 am
Reply with quote

dick scherrer wrote:
may be that the code is trying to process even though the 35 error was raised.
Hi Dick,

Here, did You want to say that program might try to READ //DD DUMMY statement ?
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Thu Mar 20, 2008 2:35 am
Reply with quote

Hi Anuj,

No, i wasn't referrng to the DUMMY dd statement.

My guess was that the vsam file might be empty. A record count at the time of the failure might help determine the cause of the 35.
Back to top
View user's profile Send private message
saurabhkhandelwal

New User


Joined: 19 Mar 2008
Posts: 14
Location: noida

PostPosted: Thu Mar 20, 2008 11:54 am
Reply with quote

hi..i was getting soc7 error wen i am submitting my job.so i changed my cobol program to call a QUITD when reading the problematic file..now wen i m submitting i am geeting user abend as U1234.
and it is showing error as some offset X'BC6' in spool.
so how to proceed n how to rectify this abend.
Back to top
View user's profile Send private message
saurabhkhandelwal

New User


Joined: 19 Mar 2008
Posts: 14
Location: noida

PostPosted: Thu Mar 20, 2008 12:11 pm
Reply with quote

hi..
i am posting the required jcl..
please reply at the earliest as this is a crucial mattter.

//PROMDATE JOB (UCC7,9999),'TEST FILE FORMAT',CLASS=D,MSGCLASS=8,
// NOTIFY=&SYSUID
//*******************************************************************
//*
// SET CVNO=39
// SET DBNAME=LAPNAM1
// INCLUDE MEMBER=CV&CVNO.JOBL
//*
//*******************************************************************
//*** THIS STEP WILL DELETE ALL DATASETS OF PREVIOUS RUN
//*******************************************************************
//STEP01 EXEC PGM=L3388
//*
// INCLUDE MEMBER=CV&CVNO.STPL
// DD DSN=SYS1.SCEERUN,DISP=SHR
// INCLUDE MEMBER=CV&CVNO.SYSC
//*STEPLIB DD DSN=PB@OPERS.CMNSTG.LAP1.#005151.LOI,DISP=SHR
//SYSUDUMP DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//INFILE DD DSN=TB@CSSVC.PARTS.DI4PARTS.TEST,DISP=SHR
//INVSAM DD DSN=LV.CSOSPROM.TEST,DISP=SHR
//OUTFILE DD DSN=TB@CSSVC.PHUDI.PROMDT.TEST9,
// UNIT=DISK,DISP=(NEW,CATLG,DELETE),
// DCB=(RECFM=FB,LRECL=109,BLKSIZE=1000),
// SPACE=(CYL,(10,5),RLSE)
//

thankyou.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Thu Mar 20, 2008 1:17 pm
Reply with quote

Quote:

so how to proceed n how to rectify this abend


you can check for a status not equal to 00 when you open your file and then 'STOP' you program at that point and resolve your file problem.

the soc7 has nothing to do with the file. poor logic - continuing to process after a bad file i/o - is the cause of your s0c7.
Back to top
View user's profile Send private message
saurabhkhandelwal

New User


Joined: 19 Mar 2008
Posts: 14
Location: noida

PostPosted: Thu Mar 20, 2008 1:59 pm
Reply with quote

i have already done that long back.it is displaying 35 as error code which means that the file does not exist but the file exist.
it is displaying some error at offsets like offset X'BC6'.
what does this mean?? and how to reolve it?
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Thu Mar 20, 2008 2:04 pm
Reply with quote

In such cases a good technique is to cause a known error
to start with this approach run a job without the culprit dd statement
and see what happens

if You have the same symptom .... icon_smile.gif
Back to top
View user's profile Send private message
saurabhkhandelwal

New User


Joined: 19 Mar 2008
Posts: 14
Location: noida

PostPosted: Thu Mar 20, 2008 2:13 pm
Reply with quote

i tried as u said. i commented the culprit dd statement and submitted the job,the abend is still the same.and even the offset is also the same.
now what to do??
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Thu Mar 20, 2008 2:17 pm
Reply with quote

it just means that You have to review Your assumptions and ...
You are looking in the wrong direction

or most probably You are using the wrong ddname,
trying to open
not a non existing dataset, but a non existing ddname
please post the job log with the relevant messages
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Thu Mar 20, 2008 4:23 pm
Reply with quote

Quote:
please reply at the earliest as this is a crucial mattter.


not so crucial, after all,
the O/P did not care to post what was requested ( the job log ) to debug his problem
Back to top
View user's profile Send private message
saurabhkhandelwal

New User


Joined: 19 Mar 2008
Posts: 14
Location: noida

PostPosted: Thu Mar 20, 2008 4:39 pm
Reply with quote

i m sending the job log...hope to get your reply soon.

06.47.30 JOB07125 ---- THURSDAY, 20 MAR 2008 ----
06.47.30 JOB07125 IRR010I USERID QQKHA3S IS ASSIGNED TO THIS JOB.
06.47.30 JOB07125 ICH70001I QQKHA3S LAST ACCESS AT 06:44:44 ON THURSDAY, MAR
06.47.30 JOB07125 $HASP373 PROMDATE STARTED - INIT 26 - CLASS 5 - SYS COR1
06.47.30 JOB07125 IEF403I PROMDATE - STARTED - TIME=06.47.30
06.48.03 JOB07125 $HASP375 PROMDATE ESTIMATED LINES EXCEEDED
06.48.11 JOB07125 IEE252I MEMBER IDICNF00 FOUND IN SYS1.PARMLIB.FAULTA
06.48.11 JOB07125 IEE252I MEMBER IDICNF00 FOUND IN SYS1.PARMLIB.FAULTA
06.48.14 JOB07125 +IDI0002I Module L3388, program L3388, offset X'E4A': Abend
06.48.15 JOB07125 +IDI0003I Fault ID F00047 assigned in history file SYSP.IDI
06.48.15 JOB07125 $HASP375 PROMDATE ESTIMATE EXCEEDED BY 10,000
06.48.15 JOB07125 IEA995I SYMPTOM DUMP OUTPUT 427
427 SYSTEM COMPLETION CODE=0C7 REASON CODE=00000000
427 TIME=06.48.08 SEQ=21437 CPU=0000 ASID=0068
427 PSW AT TIME OF ERROR 078D3000 80007E50 ILC 6 INTC 07
427 ACTIVE LOAD MODULE ADDRESS=00007000 OFFSET=000
427 NAME=L3388
427 DATA AT PSW 00007E4A - F83382C1 703145E0 9166F833
427 AR/GR 0: 80C1AC28/0000E6D0 1: 00000000/00007549
427 2: 00000000/000207FC 3: 00000000/000207FC
427 4: 00000000/0000E7D8 5: 00000000/80007DB2
427 6: 00000000/000ADC00 7: 00000000/00054710
427 8: 00000000/0000ED50 9: 00000000/0000E590
427 A: 00000000/00007114 B: 00000000/0000786E
427 C: 00000000/000070FC D: 00000000/00034018
427 E: 00000000/80007E4A F: 00000000/8BDDAAB0
427 END OF SYMPTOM DUMP
06.48.15 JOB07125 IEF450I PROMDATE STEP01 - ABEND=S0C7 U0000 REASON=00000000
431 TIME=06.48.15
06.48.16 JOB07125 -ACTRT --TIMINGS (
06.48.16 JOB07125 -ACTRT JOBNAME STEPNAME PROCSTEP RC EXCP TCB SR
06.48.16 JOB07125 -ACTRT PROMDATE STEP01 S0C7 25065 .07 .0
06.48.16 JOB07125 TECH450L PROMDATE JOB07125 ABEND S0C7
06.48.16 JOB07125 IEF404I PROMDATE - ENDED - TIME=06.48.16
06.48.16 JOB07125 TECH395L PROMDATE ENDED JOB07125 ABEND S0C7
06.48.16 JOB07125 $HASP395 PROMDATE ENDED
0------ JES2 JOB STATISTICS ------
- 20 MAR 2008 JOB EXECUTION DATE
- 26 CARDS READ
- 32,551 SYSOUT PRINT RECORDS
- 0 SYSOUT PUNCH RECORDS
- 1,881 SYSOUT SPOOL KBYTES
- 0.76 MINUTES EXECUTION TIME
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Thu Mar 20, 2008 4:46 pm
Reply with quote

I want to see the JESYSMSG for this job.
Back to top
View user's profile Send private message
saurabhkhandelwal

New User


Joined: 19 Mar 2008
Posts: 14
Location: noida

PostPosted: Thu Mar 20, 2008 5:07 pm
Reply with quote

this is the JESYSMSG that u asked for..

STMT NO. MESSAGE
4 IEFC002I INCLUDE GROUP CV39JOBL WAS EXPANDED USING SYSTEM LIBRARY SYSW
15 IEFC002I INCLUDE GROUP CV39STPL WAS EXPANDED USING SYSTEM LIBRARY SYSW
26 IEFC002I INCLUDE GROUP CV39SYSC WAS EXPANDED USING SYSTEM LIBRARY SYSW
33 IGD01007I DC1 UNIT = DISK
33 IGD01007I DC1 DATACLAS =
33 IGD01008I SC1 SYSNAME = COR1
ICH70001I QQKHA3S LAST ACCESS AT 07:12:48 ON THURSDAY, MARCH 20, 2008
IEF236I ALLOC. FOR PROMDATE STEP01
IEF237I A649 ALLOCATED TO JOBLIB
IEF237I A13E ALLOCATED TO
IGD103I SMS ALLOCATED TO DDNAME
IGD103I SMS ALLOCATED TO DDNAME
IGD103I SMS ALLOCATED TO DDNAME
IEF237I A649 ALLOCATED TO
IGD103I SMS ALLOCATED TO DDNAME
IGD103I SMS ALLOCATED TO DDNAME
IEF237I A44C ALLOCATED TO
IEF237I A649 ALLOCATED TO STEPLIB
IEF237I A13E ALLOCATED TO
IGD103I SMS ALLOCATED TO DDNAME
IGD103I SMS ALLOCATED TO DDNAME
IGD103I SMS ALLOCATED TO DDNAME
IEF237I A649 ALLOCATED TO
IGD103I SMS ALLOCATED TO DDNAME
IGD103I SMS ALLOCATED TO DDNAME
IEF237I A44C ALLOCATED TO
IEF237I A207 ALLOCATED TO
IEF237I A13E ALLOCATED TO SYSCTL
IGD103I SMS ALLOCATED TO DDNAME SYSIDMS
IEF237I JES2 ALLOCATED TO SYSUDUMP
IEF237I JES2 ALLOCATED TO SYSOUT
IGD103I SMS ALLOCATED TO DDNAME INFLAT
IGD103I SMS ALLOCATED TO DDNAME INVSAM
IGD17070I DATA SET TB@CSSVC.PHUDI.PROMDT.TEST9
ALLOCATED SUCCESSFULLY WITH 1 STRIPE(S).
IGD101I SMS ALLOCATED TO DDNAME (OUTFILE )
DSN (TB@CSSVC.PHUDI.PROMDT.TEST9 )
STORCLAS (SCSTAND) MGMTCLAS (MCSTND) DATACLAS (DCEXT)
VOL SER NOS= TGN017
IGD101I SMS ALLOCATED TO DDNAME (SYS00002)
DSN (SYS08080.T072624.RA000.PROMDATE.TEMP.H02 )
STORCLAS (SCNONVIO) MGMTCLAS ( ) DATACLAS ( )
VOL SER NOS= TMP002
IGD105I SYS08080.T072624.RA000.PROMDATE.TEMP.H02 DELETED, DDNAME=SYS00002
IEF237I DMY ALLOCATED TO IDITRACE
IGD101I SMS ALLOCATED TO DDNAME (SYS00004)
DSN (SYS08080.T072624.RA000.PROMDATE.IDITEMP.H02 )
STORCLAS (SCNONVIO) MGMTCLAS ( ) DATACLAS ( )
VOL SER NOS= TMP002
IGD105I SYS08080.T072624.RA000.PROMDATE.IDITEMP.H02 DELETED, DDNAME=SYS00004
IEF237I A405 ALLOCATED TO SYS00004
IEF237I A405 ALLOCATED TO EPHWPDD
IEF285I SYS1.PARMLIB.FAULTA KEPT
IEF285I VOL SER NOS= MVSC21.
IEF237I A405 ALLOCATED TO IDIEXEC
IEF237I A649 ALLOCATED TO SYS00005
IEF285I SYSP.IDI.HISTORY.COR1 KEPT
IEF285I VOL SER NOS= STGP31.
IEF237I A505 ALLOCATED TO SYS00006
IEF285I IDI.PROGRAM.LISTINGS KEPT
IEF285I VOL SER NOS= MVSC81.
IEF237I A649 ALLOCATED TO SYS00007
IEF285I SYSP.IDI.HISTORY.COR1 KEPT
IEF285I VOL SER NOS= STGP31.
IEF237I A649 ALLOCATED TO SYS00008
IEF285I SYSP.IDI.HISTORY.COR1 KEPT
IEF285I VOL SER NOS= STGP31.
IEF237I A649 ALLOCATED TO SYS00009
IEF285I SYSP.IDI.HISTORY.COR1 KEPT
IEF285I VOL SER NOS= STGP31.
IEF237I A649 ALLOCATED TO SYS00010
IEF285I SYSP.IDI.HISTORY.COR1 KEPT
IEF285I VOL SER NOS= STGP31.
IEF237I A649 ALLOCATED TO SYS00011
IEF285I SYSP.IDI.HISTORY.COR1 KEPT
IEF285I VOL SER NOS= STGP31.
IEF237I A649 ALLOCATED TO SYS00012
IEF285I SYSP.IDI.HISTORY.COR1 KEPT
IEF285I VOL SER NOS= STGP31.
IEF237I A649 ALLOCATED TO SYS00013
IEF285I SYSP.IDI.HISTORY.COR1 KEPT
IEF285I VOL SER NOS= STGP31.
IEF237I A649 ALLOCATED TO SYS00014
IEF285I SYSP.IDI.HISTORY.COR1 KEPT
IEF285I VOL SER NOS= STGP31.
IEF237I A649 ALLOCATED TO SYS00015
IEF237I JES2 ALLOCATED TO IDIREPRT
IDI0002I Module L3388, program L3388, offset X'E82': Abend S0C7-X'0' (Data Excep
IEF237I A207 ALLOCATED TO SYS00016
IEF237I A207 ALLOCATED TO SYS00017
IEF237I A207 ALLOCATED TO SYS00018
IEF237I A207 ALLOCATED TO SYS00019
IEF285I QQKHA3S.PROMDATE.JOB07893.D0000103.? SYSOUT
IEF285I SYSP.IDI.HISTORY.COR1 KEPT
IEF285I VOL SER NOS= STGP31.
IDI0003I Fault ID F00048 assigned in history file SYSP.IDI.HISTORY.COR1
IEF285I IDI.SIDIDOC1 KEPT
IEF285I VOL SER NOS= ZRES21.
IEF285I IDI.SIDIDOC1 KEPT
IEF285I VOL SER NOS= ZRES21.
IEF285I IDI.SIDIDOC1 KEPT
IEF285I VOL SER NOS= ZRES21.
IEF285I IDI.SIDIDOC1 KEPT
IEF285I VOL SER NOS= ZRES21.
IEF285I SYS1.IDI.WHPLREXX KEPT
IEF285I VOL SER NOS= MVSC21.
IEF285I SYS1.PARMLIB.FAULTA KEPT
IEF285I VOL SER NOS= MVSC21.
IEA995I SYMPTOM DUMP OUTPUT
SYSTEM COMPLETION CODE=0C7 REASON CODE=00000000
TIME=07.26.21 SEQ=21471 CPU=0000 ASID=005B
PSW AT TIME OF ERROR 078D3000 80007E88 ILC 6 INTC 07
ACTIVE LOAD MODULE ADDRESS=00007000 OFFSET=00000E88
NAME=L3388
DATA AT PSW 00007E82 - F83382C1 703145E0 9166F833
AR/GR 0: 80C1AC28/0000E740 1: 00000000/00007581
2: 00000000/000207FC 3: 00000000/000207FC
4: 00000000/0000E848 5: 00000000/80007DEA
6: 00000000/000ADC00 7: 00000000/00054710
8: 00000000/0000EDC0 9: 00000000/0000E600
A: 00000000/00007114 B: 00000000/000078A6
C: 00000000/000070FC D: 00000000/00034018
E: 00000000/80007E82 F: 00000000/8BDDAAB0
END OF SYMPTOM DUMP
IEF472I PROMDATE STEP01 - COMPLETION CODE - SYSTEM=0C7 USER=0000 REASON=00000000
IEF285I SYSI.IDMS39.TST.DBALOAD KEPT
IEF285I VOL SER NOS= STGP31.
IEF285I SYSI.IDMS.TST.LOADLIB KEPT
IEF285I VOL SER NOS= MVSLTB.
IGD104I PB@OPERS.NDVRTEST.LAP1.LOADLIB RETAINED, DDNAME=
IGD104I PB@OPERS.NDVRTEST.LOADLIB RETAINED, DDNAME=
IGD104I PB@OPERS.NDVRQA.LAP1.LOADLIB RETAINED, DDNAME=
IEF285I PB@OPERS.NDVRQA.LOADLIB KEPT
IEF285I VOL SER NOS= STGP31.
IGD104I PB@OPERS.NDVRPROD.LAP1.LOADLIB RETAINED, DDNAME=
IGD104I PB@OPERS.NDVRPROD.LOADLIB RETAINED, DDNAME=
IEF285I PI@Z3A32.IDMS12.TST.TEMPLOAD KEPT
IEF285I VOL SER NOS= DBAP5C.
IEF285I SYS1.SCEERUN KEPT
IEF285I VOL SER NOS= ZRES21.
IEF285I SYSI.IDMS39.TST.SYSCTL KEPT
IEF285I VOL SER NOS= MVSLTB.
IGD104I PB@Z3A32.TST.SYSIDMS RETAINED, DDNAME=SYSIDMS
IEF285I QQKHA3S.PROMDATE.JOB07893.D0000101.? SYSOUT
IEF285I QQKHA3S.PROMDATE.JOB07893.D0000102.? SYSOUT
IGD104I TB@CSSVC.PARTS.DI4PARTS.TEST1 RETAINED, DDNAME=INFLAT
IGD104I LV.CSOSPROM.TEST RETAINED, DDNAME=INVSAM
IGD105I TB@CSSVC.PHUDI.PROMDT.TEST9 DELETED, DDNAME=OUTFILE
------- PROMDATE STEP01 : CPU= .07; DISK I/O= 23535; TAPE I/O= 0
IEF373I STEP/STEP01 /START 2008080.0725
IEF374I STEP/STEP01 /STOP 2008080.0726 CPU 0MIN 04.51SEC SRB 0MIN 00.66S
IEF285I SYSI.IDMS39.TST.DBALOAD KEPT
IEF285I VOL SER NOS= STGP31.
IEF285I SYSI.IDMS.TST.LOADLIB KEPT
IEF285I VOL SER NOS= MVSLTB.
IGD104I PB@OPERS.NDVRTEST.LAP1.LOADLIB RETAINED, DDNAME=
IGD104I PB@OPERS.NDVRTEST.LOADLIB RETAINED, DDNAME=
IGD104I PB@OPERS.NDVRQA.LAP1.LOADLIB RETAINED, DDNAME=
IEF285I PB@OPERS.NDVRQA.LOADLIB KEPT
IEF285I VOL SER NOS= STGP31.
IGD104I PB@OPERS.NDVRPROD.LAP1.LOADLIB RETAINED, DDNAME=
IGD104I PB@OPERS.NDVRPROD.LOADLIB RETAINED, DDNAME=
IEF285I PI@Z3A32.IDMS12.TST.TEMPLOAD KEPT
IEF285I VOL SER NOS= DBAP5C.
------- PROMDATE ENDED. DESCRIP=TEST FILE FORMAT ; CPU TIME= .07 MINS;
IEF375I JOB/PROMDATE/START 2008080.0725
IEF376I JOB/PROMDATE/STOP 2008080.0726 CPU 0MIN 04.51SEC SRB 0MIN 00.66S
******************************** BOTTOM OF DATA ********************************
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 -> ABENDS & Debugging Goto page 1, 2  Next

 


Similar Topics
Topic Forum Replies
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
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top