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
 
INCLUDE question

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL
Author Message
srj1957

Active User


Joined: 15 Dec 2005
Posts: 56
Location: RALEIGH NC, USA

PostPosted: Thu Dec 22, 2005 8:54 pm    Post subject: INCLUDE question
Reply with quote

I have a record that is 740 bytes long, the first 12 bytes always contains data, but the remaining 728 bytes may or may not contain data.
I'm trying to write an INCLUDE statement to say that "give me all the records that have 728 blank bytes starting from position 13, How do have enter 728 spaces in the EQ, C' ') comparison field ?

INCLUDE COND=(13,728,CH,EQ,C'? ')

Thanx in advance
Steve
Back to top
View user's profile Send private message
References
Frank Yaeger

DFSORT Moderator


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

PostPosted: Thu Dec 22, 2005 10:52 pm    Post subject:
Reply with quote

For an n-byte CH field, you can use C' ' (one blank) for n spaces in INCLUDE. DFSORT pad the constant out with blanks to the length of the field. However, the maximum length for a CH field used with INCLUDE is 256 bytes, so you have to use three CH fields to do what you want like this:

Code:

  INCLUDE FORMAT=CH,
    COND=(13,256,EQ,C' ',AND,
          269,256,EQ,C' ',AND,
          525,216,EQ,C' ')
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL All times are GMT + 6 Hours
Page 1 of 1