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

To update the CARD.


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
krunalbafna
Warnings : 1

Active User


Joined: 18 Jan 2010
Posts: 143
Location: Pune

PostPosted: Wed Feb 22, 2012 11:54 am
Reply with quote

Even without SET i am unbale to use it SIR.
Back to top
View user's profile Send private message
gcicchet

Senior Member


Joined: 28 Jul 2006
Posts: 1702
Location: Australia

PostPosted: Thu Feb 23, 2012 2:57 am
Reply with quote

Hi,

I may not have been clear enough, SYNCSORT does not have the facility to accept symbols from a parm.



Gerry
Back to top
View user's profile Send private message
Garry Carroll

Senior Member


Joined: 08 May 2006
Posts: 1193
Location: Dublin, Ireland

PostPosted: Thu Feb 23, 2012 12:55 pm
Reply with quote

Garry Carroll wrote:
From what I understand, JP1 is a function supported by IBM's DFSORT, not SYNCSORT.

Garry.


Garry Carroll wrote:
You have WER* error messages which are from SYNCSORT not DFSORT so you either need to switch to DFSORT or use another method.


Nic Clouston wrote:
And that output is from SNCSORT as you can tell because it mentions SYNCSORT in various places and has SYNCSORT messages (WER*). I would suggest that you look at things more carefully before saying things like 'I tried with DFSORT and ICEMAN'.


gcicchet wrote:

Hi,

I'm pretty sure that SYNCSORT does not support SET symbols.

Gerry


gcicchet wrote:

Hi,

I may not have been clear enough, SYNCSORT does not have the facility to accept symbols from a parm.



Gerry


How many times does the OP need to be told before realising that SYNCSORT and DFSORT are not the same product and the the local na mes DFSORT and ICEMAN are pointing to SyncSort - which doesn't have the feature....?

Garry.
Back to top
View user's profile Send private message
elango_K

New User


Joined: 18 Aug 2011
Posts: 44
Location: India

PostPosted: Thu Feb 23, 2012 4:00 pm
Reply with quote

Quote:

Is there an working example for JPN function using INREC or OUTREC to include value that can be passed using parm.



A mere search could have got you many examples.

here is one:

ibmmainframes.com/viewtopic.php?t=57587[/url]
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Thu Feb 23, 2012 4:13 pm
Reply with quote

That is for DFSORT. TS has Syncsort, and continues to hope for a DFSORT solution. Please don't encourage them,
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: Thu Feb 23, 2012 11:49 pm
Reply with quote

Quote:
I tried with DFSORT


Here's a version of your job that WILL work with DFSORT providing you have the PTF for the JPn support.

Code:

//KRUN9050 EXEC PGM=SORT,
//       PARM='JP1"T.CA.Krunal.file"'
//SYSOUT   DD SYSOUT=*
//SORTIN DD DSN=...  input file (FB/219)
//SORTOUT DD DSN=&&O1,UNIT=SYSDA,SPACE=(CYL,(5,5)),DISP=(,PASS),
//             DCB=(RECFM=FB,LRECL=219,BLKSIZE=0)
//SYSIN    DD *
 OPTION COPY
 OUTFIL NODETAIL,REMOVECC,
    TRAILER1=('FILE NAME-',X,JP1)
/*


When I ran this job, SORTOUT had:

Code:

FILE NAME- T.CA.Krunal.file         


This works fine with DFSORT. However, as far as I know, Syncsort DOES NOT support the JPn function, so this will NOT work with Syncsort.
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 -> JCL & VSAM Goto page 1, 2  Next

 


Similar Topics
Topic Forum Replies
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Generate output lines (SYSIN card for... DFSORT/ICETOOL 4
No new posts Need suggestion on a sort card DFSORT/ICETOOL 10
No new posts Want to mask Middle 8 Digits of Debit... COBOL Programming 3
No new posts Read a flat file and update DB2 table JCL & VSAM 2
Search our Forums:

Back to Top