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

Getting the WER244A error with SYNCSORT utility


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

New User


Joined: 28 Nov 2006
Posts: 3
Location: USA

PostPosted: Thu Nov 30, 2006 3:44 am
Reply with quote

Hi All,

Could you please help me why I am getting the WER244A error? I have been trying all the permitations and combinations. Here is my code. I am using SYNCSORT utility.
Code:

//SORTOUT  DD DSN=T11.ACBD0608.MASTER.DW6,           
//            UNIT=SYSDA,DISP=(NEW,CATLG,DELETE),     
//            SPACE=(CYL,(100,100),RLSE),             
//            DCB=(RECFM=VB,LRECL=23472,BLKSIZE=23476)
//SORTWK01 DD UNIT=SYSDA,                             
//         SPACE=(CYL,(100,100),RLSE)                 
//SYSIN    DD *                                       
   SORT FIELDS=(5,1,CH,A)                             
   INCLUDE COND=(5,3,CH,EQ,C'A01')                   
   OUTREC FIELDS=(1:1,4,5:312,20)
Back to top
View user's profile Send private message
guptae

Moderator


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

PostPosted: Thu Nov 30, 2006 9:26 am
Reply with quote

HI ddraj2015,

Code:
//SYSIN    DD *                                       
   SORT FIELDS=(5,1,CH,A)                             
   INCLUDE COND=(5,3,CH,EQ,C'A01')                   
   OUTREC FIELDS=(1,4,312,20,23472:X)


Please try this let us know the result
Back to top
View user's profile Send private message
ddraj2015

New User


Joined: 28 Nov 2006
Posts: 3
Location: USA

PostPosted: Thu Nov 30, 2006 9:03 pm
Reply with quote

Hi Ekta,

I am still getting the same error message.
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Thu Nov 30, 2006 10:22 pm
Reply with quote

WER244A [ddname] {INREC,OUTREC} SHORT RECORD

EXPLANATION: The ddname will be SORTOUT, SORTOFxx,
SORTOFx or the ddname provided by an OUTFIL FNAMES parameter.
A variable-length record was too short to contain all the fields specified
on the control statement. Program HISTOGRM may be used to determine
the length of the shortest record in the input file.
Back to top
View user's profile Send private message
cpuhawg

Active User


Joined: 14 Jun 2006
Posts: 331
Location: Jacksonville, FL

PostPosted: Thu Nov 30, 2006 10:46 pm
Reply with quote

You have defined the OUTREC out to position 24 of a VB 23472 record.

You must define the complete record, so try:
Code:

//SORTOUT  DD DSN=T11.ACBD0608.MASTER.DW6,           
//            UNIT=SYSDA,DISP=(NEW,CATLG,DELETE),     
//            SPACE=(CYL,(100,100),RLSE),             
//            DCB=(RECFM=VB,LRECL=23472,BLKSIZE=23476)
//SORTWK01 DD UNIT=SYSDA,                             
//         SPACE=(CYL,(100,100),RLSE)                 
//SYSIN    DD *                                       
   SORT FIELDS=(5,1,CH,A)                             
   INCLUDE COND=(5,3,CH,EQ,C'A01')                   
   OUTREC FIELDS=(1:1,4,5:312,20,25:4000C' ',
               4025:4000C' ',
               8025:4000C' ',
              12025:4000C' ',
              16025:4000C' ',
              20025:3448C' ')
 


This OUTREC parameter places blanks in positions 25-23472 of the output record and should allow the sort to execute. I did it in segments of 4000 because the maximum repetition factor is 4095.
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

 


Similar Topics
Topic Forum Replies
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
No new posts REASON 00D70014 in load utility DB2 6
Search our Forums:

Back to Top