|
|
| Author |
Message |
maheshvamsi Warnings : 1 New User
Joined: 22 Mar 2008 Posts: 4 Location: bangalore
|
|
|
|
Please help me out on doing SORT using Include condition. I'm trying to copy the records which have 123 in the second field.
Here is the program i am using:
| Code: |
//SORT1 EXEC PGM=SORT
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=...,DISP=SHR
//SORTOUT DD SYSOUT=*
//SYSIN DD *
SORT FIELDS=COPY
INCLUDE COND=(4,3,CH,EQ,C'123')
/*
|
Here's the input:
| Code: |
125 456 354 01
156 789 435 02
456 123 456 03
459 123 194 99
555 789 123 22
785 456 756 01
895 456 876 08
964 123 492 01
125 456 354 01
156 789 435 02
456 123 456 03
459 123 194 99
555 789 123 22
785 456 756 01
|
Syntax/Usage error has been edited - Kevin. |
|
| Back to top |
|
 |
References
|
Posted: Sun Apr 27, 2008 8:07 pm Post subject: Re: SYNCSORT ERROR IN INCLUDE CONDITION WHILE SORTING |
 |
|
|
 |
Moved: Sun Apr 27, 2008 8:15 pm by superk From JCL to Off Topics |
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 1142 Location: At my desk
|
|
|
|
| Other than being a byte off (based on your input), what is the error? |
|
| Back to top |
|
 |
Moved: Mon Apr 28, 2008 7:11 am by superk From Off Topics to JCL |
|
|