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

Build a dynamic query file


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
hiravibk
Warnings : 1

Active User


Joined: 14 Dec 2008
Posts: 107
Location: India

PostPosted: Wed Feb 10, 2016 12:47 am
Reply with quote

Hi All,

I need to build part of a dynamic query, i was able build part of it but i am not sure how to proceed further. Please help.
Thanks in advance.

Input:
Code:

02092016AB            PUERTO RICO       JOHN

The location name can come up anywhere between 11 and 41 positions.

Output Required:
Code:

'PUERTO RICO%' AND


What i tried:
Code:

//STEP010  EXEC PGM=ICETOOL                       
//IN       DD *                                     
02092016AB            PUERTO RICO       JOHN
/*                                                 
//TEMP1 DD DSN=&&TEMP1
//TEMP2   DD DSN=&&TEMP2   
//TOOLIN   DD *                               
  SORT FROM(IN)   TO(TEMP1)   USING(CTL1)
  SORT FROM(TEMP1)   TO(TEMP2)  USING(CTL2) 
/*                                           
//CTL1CNTL DD *                                             
  OPTION COPY                                               
  INREC BUILD=(11,30,JFY=(SHIFT=RIGHT))         
/*                                                           
//CTL2CNTL DD *                                             
  OPTION COPY                                               
  INREC FINDREP=(INOUT=(X'4040',X'',X'00',X''))
/*                                                           


Output I am getting:
Code:
PUERTO RICO
Back to top
View user's profile Send private message
Musab Ahmed

New User


Joined: 10 Dec 2012
Posts: 37
Location: India

PostPosted: Wed Feb 10, 2016 3:08 pm
Reply with quote

Hi,

Try using LEAD and TRAIL within JFY. I have written a piece of code with DFSORT and not ICETOOL.

SORT FIELDS=COPY
INREC BUILD=(11,30,JFY=(SHIFT=LEFT,LEAD=C'''',TRAIL=C'%'' AND'))

Hope this helps.
Back to top
View user's profile Send private message
hiravibk
Warnings : 1

Active User


Joined: 14 Dec 2008
Posts: 107
Location: India

PostPosted: Thu Feb 11, 2016 2:07 am
Reply with quote

Musab Ahmed wrote:
Hi,

Try using LEAD and TRAIL within JFY. I have written a piece of code with DFSORT and not ICETOOL.

SORT FIELDS=COPY
INREC BUILD=(11,30,JFY=(SHIFT=LEFT,LEAD=C'''',TRAIL=C'%'' AND'))

Hope this helps.


Thank you Musab! it works fine.
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 -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts Access to non cataloged VSAM file JCL & VSAM 18
No new posts Need help for File Aid JCL to extract... Compuware & Other Tools 23
No new posts RC query -Time column CA Products 3
Search our Forums:

Back to Top