View previous topic :: View next topic |
Author |
Message |
mfusermfuser Beginner
Joined: 02 May 2005 Posts: 2 Topics: 1
|
Posted: Mon May 02, 2005 1:58 pm Post subject: DFSERA10 Utility to select and print IMS log records |
|
|
Hai,
Can anyone help me about the usage of the utility DFSERA10 for the purpose below:
|
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
Bithead Advanced

Joined: 03 Jan 2003 Posts: 550 Topics: 23 Location: Michigan, USA
|
Posted: Mon May 02, 2005 2:49 pm Post subject: |
|
|
mfusermfuser,
If the document that kolusu gave you does not help, please post your control cards. |
|
Back to top |
|
 |
mfusermfuser Beginner
Joined: 02 May 2005 Posts: 2 Topics: 1
|
Posted: Mon May 02, 2005 3:35 pm Post subject: DFSERA10 Utility to select and print IMS log records |
|
|
Thanks Kolusu & Bithead,
I have tried out various examples 4.2.4.1,4.2.4.2,4.2.4.4,4.2.4.5 & 4.2.4.9 Example 9 also but i am not at all getting the records copied to the output dataset which i am giving the job is successful but no output is coming.None of the examples i am getting the desired records getting copied
My JCL looks like this:
Code: |
//STEP001 EXEC PGM=DFSERA10,REGION=1024K
//STEPLIB DD DSN=IMSVS.ID1H.IMS.RESLIB,DISP=SHR
//SYSPRINT DD SYSOUT=*
//LOGIN DD DSN=CLAS.IMSLOG.ADD,DISP=SHR
//SYSIN DD *
CONTROL CNTL DDNAME=LOGIN
OPTION PRINT O=17,T=X,V=CCFC,L=4,C=M
OPTION PRINT O=523,T=X,V=CCCCFFF4,L=8,C=E,E=DFSERA30
END
/*
|
// |
|
Back to top |
|
 |
Bithead Advanced

Joined: 03 Jan 2003 Posts: 550 Topics: 23 Location: Michigan, USA
|
Posted: Tue May 03, 2005 8:21 am Post subject: |
|
|
mfusermfuser,
T=X means that the value that you are searching for is hexadecimal so your length (L) should be 2 and 4 respectively or the type (T) should be character (C). |
|
Back to top |
|
 |
|
|