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
 
Sort Parameter to omit few records at a position

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL
Author Message
ajay_udl

New User


Joined: 10 Oct 2006
Posts: 24

PostPosted: Thu Jul 31, 2008 4:47 am    Post subject: Sort Parameter to omit few records at a position
Reply with quote

Hi All,

Could you help me in providing a sort parameter to remove few records.

The record to be removed based on a value at position 67 with 2 byte length and its a Binary field (comp variable) having value 22.

thanks
ajay.
Back to top
View user's profile Send private message
References
Frank Yaeger

DFSORT Moderator


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

PostPosted: Thu Jul 31, 2008 5:15 am    Post subject:
Reply with quote

Here's a DFSORT job that will do what you asked for. I assumed your input file has RECFM=FB.

Code:

//S1    EXEC  PGM=ICEMAN                 
//SYSOUT    DD  SYSOUT=*                 
//SORTIN DD DSN=...  input file (FB)     
//SORTOUT DD DSN=...  output file (FB)             
//SYSIN    DD    *                       
  OPTION COPY                             
  OMIT COND=(67,2,BI,EQ,+22)   
/*       
Back to top
View user's profile Send private message
ajay_udl

New User


Joined: 10 Oct 2006
Posts: 24

PostPosted: Thu Jul 31, 2008 10:15 am    Post subject:
Reply with quote

Thanks a lot Frank it worked.. icon_smile.gif
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL All times are GMT + 6 Hours
Page 1 of 1