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

Sort on comp variable


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

New User


Joined: 25 Apr 2005
Posts: 67
Location: pune

PostPosted: Wed Jan 06, 2010 3:14 pm
Reply with quote

Hi,

One more query...

In PGM output file fields defined in pgm as follows... i need to sort on the output file XXX and on YYY..

XXX PIC S9(9) USAGE COMP.
YYY PIC S9(4) USAGE COMP.

Which sort card is correct ??

SORT FIELDS=(1,9,CH,A,10,13,CH,A)
or
SORT FIELDS=(1,4,CH,A,5,2,CH,A)
Back to top
View user's profile Send private message
guptae

Moderator


Joined: 14 Oct 2005
Posts: 1208
Location: Bangalore,India

PostPosted: Wed Jan 06, 2010 3:25 pm
Reply with quote

Hi Sprabhu,

Please use below sort card

Code:
SORT FIELDS=(1,4,BI,A,5,2,BI,A)
Back to top
View user's profile Send private message
ssprabhu

New User


Joined: 25 Apr 2005
Posts: 67
Location: pune

PostPosted: Wed Jan 06, 2010 3:36 pm
Reply with quote

Thanks Gupta...

But r u sure .....BI or CH ...i guess Even Ch also works...
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


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

PostPosted: Wed Jan 06, 2010 11:27 pm
Reply with quote

If a COMP field is signed, then FI is the correct format.

If a COMP field is unsigned, then BI is the correct format. CH can also be used as long as options that affect CH (like ALTSEQ or LOCALE) are not used. BI is safer.

For example:

If X'FFFF' represents -1, then the COMP field is signed and FI should be used.

If X'FFFF' represents 65535, then the COMP field is unsigned and BI should be used.
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 Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
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