Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
How to write Count only using Display statement

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL
Author Message
Hritam

New User


Joined: 27 Jun 2005
Posts: 32
Location: India

PostPosted: Mon Jun 27, 2005 6:34 pm    Post subject: How to write Count only using Display statement
Reply with quote

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
View user's profile Send private message
References
Frank Yaeger

DFSORT Moderator


Joined: 15 Feb 2005
Posts: 4675
Location: San Jose, CA

PostPosted: Tue Jun 28, 2005 2:41 am    Post subject:
Reply with quote

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
View user's profile Send private message
Hritam

New User


Joined: 27 Jun 2005
Posts: 32
Location: India

PostPosted: Tue Jun 28, 2005 9:47 am    Post subject:
Reply with quote

Thanks Frank!!!
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL All times are GMT + 6 Hours
Page 1 of 1