|
|
| Author |
Message |
Hritam
New User
Joined: 27 Jun 2005 Posts: 32 Location: India
|
|
|
|
Hi,
I want to write the count of some detail records(using some include statement) only by using Display statement of Icetool pgm. But i am not able to get the syntax to use both Count & Display.
Can anyone please help me out of these. |
|
| Back to top |
|
 |
References
|
|
 |
Frank Yaeger
DFSORT Moderator
Joined: 15 Feb 2005 Posts: 4675 Location: San Jose, CA
|
|
|
|
DISPLAY does NOT have a COUNT parameter.
However, you can just use a DFSORT job like this to get the count of the detail records using an INCLUDE statement:
| Code: |
//S1 EXEC PGM=ICEMAN
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=... input file
//SORTOUT DD SYSOUT=*
//SYSIN DD *
OPTION COPY
INCLUDE COND=(...)
OUTFIL REMOVECC,NODETAIL,TRAILER1=(COUNT,M11)
/*
|
You can do the same thing with DFSORT's ICETOOL using a COPY operator.
| Code: |
//S2 EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//IN DD DSN=... input file
//OUT DD SYSOUT=*
//TOOLIN DD *
COPY FROM(IN) USING(CTL1)
/*
//CTL1CNTL DD *
INCLUDE COND=(...)
OUTFIL FNAMES=OUT,
REMOVECC,NODETAIL,TRAILER1=(COUNT,M11)
/*
|
|
|
| Back to top |
|
 |
Hritam
New User
Joined: 27 Jun 2005 Posts: 32 Location: India
|
|
|
|
| Thanks Frank!!! |
|
| Back to top |
|
 |
|
|