View previous topic :: View next topic |
Author |
Message |
tcurrier Intermediate
Joined: 10 Feb 2006 Posts: 188 Topics: 68
|
Posted: Tue Jun 23, 2009 7:57 am Post subject: continuing ICETOOL control card onto next line |
|
|
I need to add another sort key ('ON' parameter) to the control card below.... How would I continue on to the next line so the second line contains only 'FIRST DISCARD(SORTXSUM)' ?
Thanks.
Code: | //TOOLIN DD *
SELECT FROM(IN) TO(OUT) ON(4,10,CH) ON(112,8) FIRST DISCARD(SORTXSUM)
/* |
|
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Tue Jun 23, 2009 8:58 am Post subject: |
|
|
tcurrier,
A Hyphen can be used as a continuation character .
ex:
Code: |
//TOOLIN DD *
SELECT FROM(IN) TO(OUT) -
ON(004,10,CH) -
ON(112,08,CH) -
FIRST DISCARD(SORTXSUM)
/* |
Btw you are missing the format on the second ON condition _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
Ram Beginner

Joined: 12 Jan 2004 Posts: 53 Topics: 12
|
Posted: Tue Jun 23, 2009 9:01 am Post subject: |
|
|
Tcurrier,
End the statement with a hyphen '-' and continue typing on the next line.
E.g.
Code: | //TOOLIN DD *
SELECT FROM(IN) TO(OUT) ON(4,10,CH) ON(112,8,CH) ON(p,m,f) -
FIRST DISCARD(SORTXSUM)
/* |
|
|
Back to top |
|
 |
|
|