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

Syncsort control card problem


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sudhamani

New User


Joined: 08 Nov 2007
Posts: 19
Location: india

PostPosted: Thu Jan 10, 2008 9:00 pm
Reply with quote

Code:

//SYSIN DD *                                                   
  SORT FIELDS=(13,9,CH,A,7,4,CH,A)                             
  OUTFIL INCLUDE=(13,7,CH,EQ,C'3256005'),AND,                 
                         (1,6,CH,EQ,C'111607'),AND,             
                         (7,4,CH,GE,C'1025'),AND,               
                         (7,4,CH,LE,C'1040'),AND,               
                         (112,1,CH,EQ,C'2'),OR,                 
                         (112,1,CH,EQ,C'4'),OR,                 
                         (112,1,CH,EQ,C'6'),FNAMES=SORTOF1     
  OUTFIL INCLUDE=(13,7,CH,EQ,C'3256005'),AND,                 
                         (1,6,CH,EQ,C'111607'),AND,             
                         (7,4,CH,GE,C'1025'),AND,               
                         (7,4,CH,LE,C'1040'),AND,               
                         (112,1,CH,NE,C'2'),OR,                 
                         (112,1,CH,NE,C'4'),OR,                 
                         (112,1,CH,NE,C'6'),FNAMES=SORTOF2     


Can anyone correct this control card using iceman
giving OUTFIL STATEMENT : SYNTAX ERROR
Back to top
View user's profile Send private message
Douglas Wilder

Active User


Joined: 28 Nov 2006
Posts: 305
Location: Deerfield IL

PostPosted: Thu Jan 10, 2008 9:38 pm
Reply with quote

You have unbalanced parentheses.
Code:
//SYSIN DD *                                                   
  SORT FIELDS=(13,9,CH,A,7,4,CH,A)                             
  OUTFIL INCLUDE=((13,7,CH,EQ,C'3256005'),AND,                 
                         (1,6,CH,EQ,C'111607'),AND,             
                         (7,4,CH,GE,C'1025'),AND,               
                         (7,4,CH,LE,C'1040'),AND,               
                         (112,1,CH,EQ,C'2'),OR,                 
                         (112,1,CH,EQ,C'4'),OR,                 
                         (112,1,CH,EQ,C'6')),FNAMES=SORTOF1     
  OUTFIL INCLUDE=((13,7,CH,EQ,C'3256005'),AND,                 
                         (1,6,CH,EQ,C'111607'),AND,             
                         (7,4,CH,GE,C'1025'),AND,               
                         (7,4,CH,LE,C'1040'),AND,               
                         (112,1,CH,NE,C'2'),OR,                 
                         (112,1,CH,NE,C'4'),OR,                 
                         (112,1,CH,NE,C'6')),FNAMES=SORTOF2   
This corrects the syntax but will it do what you mean it to? You must determine that, as you did not tell us what you intended it to do.
Back to top
View user's profile Send private message
Craq Giegerich

Senior Member


Joined: 19 May 2007
Posts: 1512
Location: Virginia, USA

PostPosted: Thu Jan 10, 2008 9:41 pm
Reply with quote

Douglas Wilder wrote:
You have unbalanced parentheses.
Code:
//SYSIN DD *                                                   
  SORT FIELDS=(13,9,CH,A,7,4,CH,A)                             
  OUTFIL INCLUDE=((13,7,CH,EQ,C'3256005'),AND,                 
                         (1,6,CH,EQ,C'111607'),AND,             
                         (7,4,CH,GE,C'1025'),AND,               
                         (7,4,CH,LE,C'1040'),AND,               
                         (112,1,CH,EQ,C'2'),OR,                 
                         (112,1,CH,EQ,C'4'),OR,                 
                         (112,1,CH,EQ,C'6')),FNAMES=SORTOF1     
  OUTFIL INCLUDE=((13,7,CH,EQ,C'3256005'),AND,                 
                         (1,6,CH,EQ,C'111607'),AND,             
                         (7,4,CH,GE,C'1025'),AND,               
                         (7,4,CH,LE,C'1040'),AND,               
                         (112,1,CH,NE,C'2'),OR,                 
                         (112,1,CH,NE,C'4'),OR,                 
                         (112,1,CH,NE,C'6')),FNAMES=SORTOF2   
This corrects the syntax but will it do what you mean it to? You must determine that, as you did not tell us what you intended it to do.


I don't think it will work properly with the mix of and's and or's with no parentheses to group them.
Back to top
View user's profile Send private message
krisprems

Active Member


Joined: 27 Nov 2006
Posts: 649
Location: India

PostPosted: Thu Jan 10, 2008 11:14 pm
Reply with quote

sudhamani
Explain the rules(INCLUDE conditions) that you are trying to code here. So that we could help you in building the SORT CARD.
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Map Vols and Problem Dataset All Other Mainframe Topics 2
No new posts Using Dynamic file handler in the Fil... COBOL Programming 2
No new posts z/vm installation problem All Other Mainframe Topics 0
Search our Forums:

Back to Top