View previous topic :: View next topic
|
Author |
Message |
rikdeb
New User
Joined: 19 Jan 2009 Posts: 63 Location: hyderabad
|
|
|
|
Hi ..
I was just trying out to use symbolic paramter in syncsort in the below jcl
Code: |
// SET DT='A'
//PSTP0040 EXEC PGM=SORT,PARM='JP1"&D"'
//SYSOUT DD SYSOUT=*
..
//SYSIN DD *
SORT FIELDS=COPY
INCLUDE=(80,1,CH,EQ,JP1) |
but getting error
Code: |
INCLUDE=(80,1,CH,EQ,JP1)
*
WER131I PARM FIELD ERROR - JP1"&D"
WER268A OUTFIL STATEMENT : SYNTAX ERROR |
I am using SYNCSORT FOR Z/OS 1.4.0.1 , and i read in google that it supports the use of JP parameter. Could you please advice if the syntax is wrong or any other issue. |
|
Back to top |
|
|
Bill Woodger
Moderator Emeritus
Joined: 09 Mar 2011 Posts: 7309 Location: Inside the Matrix
|
|
|
|
Despite what you have found, I don't think SyncSort supports the resolution of PARM information to control cards. |
|
Back to top |
|
|
rikdeb
New User
Joined: 19 Jan 2009 Posts: 63 Location: hyderabad
|
|
Back to top |
|
|
Akatsukami
Global Moderator
Joined: 03 Oct 2009 Posts: 1787 Location: Bloomington, IL
|
|
|
|
Oughtn't you to SET D rather than DT, or alternatively use DT in the parameter? |
|
Back to top |
|
|
Nic Clouston
Global Moderator
Joined: 10 May 2007 Posts: 2454 Location: Hampshire, UK
|
|
|
|
I suggest that you re-read that item FULLY. You will then understand where you are going wrong. |
|
Back to top |
|
|
rikdeb
New User
Joined: 19 Jan 2009 Posts: 63 Location: hyderabad
|
|
|
|
Sorry for that.. My mistake. Got the below error now
Code: |
INCLUDE=(80,1,CH,EQ,JP1)
*
WER131I PARM FIELD ERROR - JP1"A"
WER268A OUTFIL STATEMENT : SYNTAX ERROR |
|
|
Back to top |
|
|
Bill Woodger
Moderator Emeritus
Joined: 09 Mar 2011 Posts: 7309 Location: Inside the Matrix
|
|
|
|
OK, the link looks good but as Nic said, re-read the item in the link, and review against what you've told us.
Might you have it? Include //SYMNOUT DD SYSOUT=* and post the full sysout from that and the step itself, please. |
|
Back to top |
|
|
Rohit Umarjikar
Global Moderator
Joined: 21 Sep 2010 Posts: 3076 Location: NYC,USA
|
|
|
|
Bill, I might be wrong but JPn is not supported by Syncsort as they way it does by DFSORT. |
|
Back to top |
|
|
Arun Raj
Moderator
Joined: 17 Oct 2006 Posts: 2481 Location: @my desk
|
|
|
|
rikdeb,
The link says JPn parm options are available with Syncsort MFX for z/OS Release 1.4.2.0 and you have Syncsort MFX for z/OS Release 1.4.0.1.
You may try the same test when your Syncsort gets upgraded to have this additional features. |
|
Back to top |
|
|
|