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

OUTREC with IFTHEN Query...


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

Active User


Joined: 17 May 2006
Posts: 310

PostPosted: Wed Aug 26, 2015 5:17 pm
Reply with quote

Hi Team,

I have a VB file with LRECL of 1000. I would like to check whether the positions 16 and 234 contains $ or some other symbol and need to replace any character to $. I used the below code.
I see the output file getting replaced with $ at position 16 but not at position 234. May I know what is wrong with it ?

OPTION COPY
OUTREC IFTHEN=(WHEN=(16,1,CH,NE,C'$'),
OVERLAY=(16:C'$')),
IFTHEN=(WHEN=(234,1,CH,NE,C'$'),
OVERLAY=(234:C'$'))
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Wed Aug 26, 2015 5:26 pm
Reply with quote

Use the Code tags, please. I'm sure it has been mentioned before.

If you have two, or more, IFTHEN=(WHEN=(logicalexpression) which both/some/all may be true for the same record, you need HIT=NEXT on all but the final IFTHEN. Otherwise, like a COBOL EVALUATE, processing of the conditions stops for the record when any IFTHEN=(WHEN=(logicalexpression) without HIT=NEXT is true.
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 RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
No new posts Issue with EXEC CICS QUERY SECURITY c... CICS 6
Search our Forums:

Back to Top