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

Need to replace the below card with Sort card


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

New User


Joined: 29 Aug 2007
Posts: 19
Location: Chennai

PostPosted: Mon Sep 15, 2008 2:30 pm
Reply with quote

Hi,

I need to replace the below card with Sort card:

$$DD01 COPYALL IF=(1,EQ,X'107C001C'),AND=(5,EQ,C'16540210'),
REPL=(5,C'12525V10'),
IF=(1,EQ,X'107C002C'),AND=(5,EQ,C'16540220'),
REPL=(5,C'12525V20')

Please help me.
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Mon Sep 15, 2008 2:52 pm
Reply with quote

Quote:
I need to replace the below card with Sort card:
Bhuvanakp,

Could you please explain what exactly you want to do using sort instead of letting others to make a guess out of the above card. Nobody but you knows exactly what your requirement is.

Please post the input/output file attributes and a few sample records if possible.

Thanks,
Arun
Back to top
View user's profile Send private message
gcicchet

Senior Member


Joined: 28 Jul 2006
Posts: 1702
Location: Australia

PostPosted: Mon Sep 15, 2008 4:26 pm
Reply with quote

Hi,
you can try this
Code:
  OPTION COPY                                                           
  INREC IFTHEN=(WHEN=(01,4,BI,EQ,X'107C001C',AND,                       
                      05,6,BI,EQ,C'16540210'),                         
                OVERLAY=(5:C'12525V10')),                               
        IFTHEN=(WHEN=(01,4,BI,EQ,X'107C002C',AND,                       
                      05,6,BI,EQ,C'16540220'),                         
                OVERLAY=(5:C'12525V20'))                               



Gerry
Back to top
View user's profile Send private message
Bhuvanakp

New User


Joined: 29 Aug 2007
Posts: 19
Location: Chennai

PostPosted: Fri Sep 19, 2008 1:50 pm
Reply with quote

Hi,

Held up with some other works..

Thanks for the reply.

I have replaced the same like below & it is working fine too.

Code:
 SORT FIELDS=COPY                                                 
 INREC IFTHEN=(WHEN=(1,2,PD,EQ,107,AND,3,2,PD,EQ,001,AND,         
                           5,8,CH,EQ,C'16540210'),                 
              OVERLAY=(5:C'12525V10')),                           
       IFTHEN=(WHEN=(1,2,PD,EQ,107,AND,3,2,PD,EQ,002,AND,         
                           5,8,CH,EQ,C'16540220'),                 
                OVERLAY=(5:C'12525V20'))   


Regards,
Bhuvana
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 How to split large record length file... DFSORT/ICETOOL 10
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
Search our Forums:

Back to Top